:root {
  --ink: #08090b;
  --ink-soft: #14161b;
  --steel: #aeb4bc;
  --steel-dark: #545a62;
  --paper: #f4f1eb;
  --paper-clean: #fffdf8;
  --red: #c6141d;
  --red-dark: #8f1018;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(8, 9, 11, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Bahnschrift, "Aptos", "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 76px;
  margin: 16px auto 0;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.68);
  color: white;
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, background 180ms ease, margin 180ms ease;
}

.header-home-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}

.site-header.is-scrolled {
  min-height: 64px;
  margin-top: 8px;
  background: rgba(8, 9, 11, 0.9);
}

.brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: clamp(270px, 24vw, 350px);
  pointer-events: none;
}

.brand-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: end;
  width: 100%;
  min-height: 52px;
  padding: 4px 0;
  overflow: hidden;
  background: transparent;
}

.brand-card-ga {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: "Arial Black", Bahnschrift, "Segoe UI", sans-serif;
  font-size: 3.48rem;
  line-height: 0.72;
  letter-spacing: -0.075em;
  font-style: italic;
  font-stretch: expanded;
}

.brand-card-ga span:first-child {
  display: inline-block;
  color: #f1f2f2;
  text-shadow: 0 1px 0 #9da1a6, 0 8px 18px rgba(255, 255, 255, 0.12);
  transform: scaleX(1.34) skewX(-4deg);
  transform-origin: left center;
}

.brand-card-ga span:last-child {
  display: inline-block;
  color: var(--red);
  text-shadow: 0 1px 0 #6b0d13, 0 8px 18px rgba(198, 20, 29, 0.28);
  margin-left: 0.08em;
  transform: scaleX(1.12) skewX(-4deg);
}

.brand-card-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-transform: uppercase;
  transform: translateY(-1px);
}

.brand-card-title {
  color: rgba(255, 255, 255, 0.94);
  font-family: Impact, Haettenschweiler, "Arial Black", Bahnschrift, "Segoe UI", sans-serif;
  font-size: clamp(1.78rem, 2.05vw, 2.42rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0.015em;
}

.desktop-nav {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 28px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: white;
}

.header-actions {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
}

.language-menu {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 78px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  cursor: pointer;
}

.language-trigger svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-menu.is-open .language-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  text-align: left;
}

.lang-button:hover {
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.lang-button.is-active {
  background: var(--red);
  color: white;
}

.lang-button small {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}

.lang-button.is-active small {
  color: white;
}

.flag {
  display: block;
  width: 25px;
  height: 17px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.flag-de {
  background: linear-gradient(#111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66%);
}

.flag-pl {
  background: linear-gradient(#fff 0 50%, #dc143c 50%);
}

.flag-ru {
  background: linear-gradient(#fff 0 33.33%, #1c57a7 33.33% 66.66%, #d52b1e 66.66%);
}

.flag-en {
  background:
    linear-gradient(90deg, transparent 0 42%, #cf142b 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 0 36%, #cf142b 36% 64%, transparent 64%),
    #fff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.mobile-panel {
  position: fixed;
  z-index: 25;
  inset: 92px 16px auto;
  display: none;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.96);
  color: white;
  box-shadow: var(--shadow);
}

.mobile-panel a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-transform: uppercase;
}

.mobile-panel a:last-child {
  border-bottom: 0;
}

.mobile-panel.is-open {
  display: block;
}

.section-dark {
  color: white;
  background: var(--ink);
}

.section-light {
  background: var(--paper-clean);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 136px max(24px, calc((100vw - 1180px) / 2)) 90px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0), rgba(8, 9, 11, 0.95)),
    radial-gradient(circle at 78% 66%, rgba(198, 20, 29, 0.18), transparent 28%);
  z-index: -1;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #08090b;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(1.04) contrast(1.14);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.7) 46%, rgba(8, 9, 11, 0.36) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 12px);
}

.hero-content {
  align-self: end;
  width: 100%;
  max-width: 880px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.b2b h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Arial Black", Bahnschrift, "Segoe UI", sans-serif;
  font-size: clamp(3rem, 7vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero h1 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(3rem, 6.15vw, 6.5rem);
}

.hero-copy {
  width: min(680px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-trust-line {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 18px 36px rgba(198, 20, 29, 0.3);
}

.button-primary:hover {
  background: #e01622;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: #050506;
}

.trust-strip div {
  min-height: 132px;
  padding: 30px 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    #101217;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: white;
  font-size: 1.08rem;
  max-width: 260px;
}

.trust-strip span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  max-width: 320px;
}

.section {
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  max-width: 100%;
  overflow-x: hidden;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
  gap: 46px;
  align-items: end;
  min-width: 0;
}

.section-heading h2,
.split-copy h2,
.b2b h2,
.contact-copy h2 {
  font-size: clamp(2.35rem, 4vw, 4.6rem);
}

.section-heading p,
.split-copy p,
.b2b p,
.contact-copy p {
  margin: 0;
  color: rgba(8, 9, 11, 0.66);
  font-size: 1.08rem;
}

.section-dark .split-copy p,
.section-dark .contact-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.service-card {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.28)),
    #f2eee6;
}

.service-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 800;
}

.service-card h3,
.steps h3,
.price-card h3 {
  margin: 0;
  font-size: 1.22rem;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.service-card p,
.steps p,
.price-card span {
  margin: 14px 0 0;
  color: rgba(8, 9, 11, 0.62);
  overflow-wrap: break-word;
}

.service-meta {
  display: block;
  margin-top: 18px;
  color: rgba(8, 9, 11, 0.66);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--red);
  color: var(--red-dark);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-safety-note {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(8, 9, 11, 0.62);
  font-weight: 800;
}

.seo-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.seo-service-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(8, 9, 11, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.seo-service-links a:hover {
  border-color: rgba(198, 20, 29, 0.45);
  color: var(--red);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: 56px;
  align-items: center;
}

.proof-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.proof-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    #111318;
  box-shadow: var(--shadow);
}

.proof-card-red {
  background:
    linear-gradient(135deg, rgba(198, 20, 29, 0.28), rgba(255, 255, 255, 0.02)),
    #121318;
}

.proof-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.proof-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-icon-good {
  color: #68e39a;
  box-shadow: inset 0 0 0 1px rgba(104, 227, 154, 0.28), 0 16px 40px rgba(104, 227, 154, 0.08);
}

.proof-icon-limit {
  color: #ff5964;
  box-shadow: inset 0 0 0 1px rgba(255, 89, 100, 0.3), 0 16px 40px rgba(198, 20, 29, 0.16);
}

.proof-tag {
  display: inline-flex;
  margin-bottom: 54px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-card h3 {
  margin: 0;
  color: white;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.proof-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.proof-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.68);
}

.proof-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 11px;
  height: 11px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #68e39a;
  box-shadow: 0 0 0 4px rgba(104, 227, 154, 0.12);
}

.proof-card-red li::before {
  background: #ff5964;
  box-shadow: 0 0 0 4px rgba(255, 89, 100, 0.14);
}

.trust-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(198, 20, 29, 0.08), transparent 28%),
    #f7f3eb;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}

.trust-layout > * {
  min-width: 0;
}

.trust-layout h2,
.gallery-section h2,
.faq-section h2,
.content-page h1,
.landing-hero h1 {
  margin: 0;
  font-family: "Arial Black", Bahnschrift, "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 4vw, 4.35rem);
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.trust-layout h2 {
  max-width: min(100%, 15ch);
  font-size: clamp(2rem, 3.05vw, 3.55rem);
  line-height: 1;
}

.trust-layout p {
  margin: 22px 0 0;
  color: rgba(8, 9, 11, 0.66);
  font-size: 1.08rem;
}

.trust-list,
.b2b-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li,
.b2b-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  color: rgba(8, 9, 11, 0.74);
  font-weight: 850;
}

.trust-list li::before,
.b2b-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(198, 20, 29, 0.12);
  transform: translateY(-50%);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 52px;
}

.process-heading {
  display: block;
}

.process-heading p {
  margin-top: 24px;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #f5f1e8;
}

.steps span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 800;
  grid-row: span 2;
}

.price-section {
  background:
    linear-gradient(135deg, rgba(198, 20, 29, 0.08), transparent 32%),
    #ece6db;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  min-width: 0;
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper-clean);
  overflow-wrap: break-word;
}

.price-card.is-featured {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-color: rgba(198, 20, 29, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(198, 20, 29, 0.1)),
    var(--ink);
  color: white;
}

.price-card.is-featured::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

.price-card.is-featured::after {
  content: "";
  position: absolute;
  right: 0;
  top: -48px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 20, 29, 0.35), transparent 68%);
  pointer-events: none;
}

.package-card > * {
  position: relative;
  z-index: 1;
}

.package-card-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  min-width: 0;
}

.package-card .package-discount-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(198, 20, 29, 0.96), rgba(142, 13, 20, 0.96));
  color: white;
  font-size: 1.85rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 18px 34px rgba(198, 20, 29, 0.24);
}

.package-badge {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.package-card h3 {
  max-width: 100%;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.04;
  overflow-wrap: normal;
  text-wrap: balance;
}

.package-answer {
  margin: 18px 0 0;
  color: white;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: break-word;
}

.package-copy {
  max-width: 100%;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.price {
  margin: 24px 0 0;
  color: var(--red);
  font-family: "Arial Black", Bahnschrift, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.85rem);
  line-height: 1.04;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.b2b-panel {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  max-width: 100%;
  padding: 40px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
    #f2eee6;
}

.b2b-panel p {
  max-width: 700px;
  margin-top: 18px;
}

.b2b-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 24px;
}

.b2b-list li {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(8, 9, 11, 0.04);
}

.gallery-section {
  background:
    linear-gradient(135deg, rgba(198, 20, 29, 0.07), transparent 40%),
    #f7f3eb;
}

.gallery-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.gallery-card,
.faq-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.3)),
    #f0ebe2;
}

.gallery-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 950;
}

.gallery-card h3,
.faq-grid h3 {
  margin: 0;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.gallery-card p,
.faq-grid p {
  margin: 14px 0 0;
  color: rgba(8, 9, 11, 0.64);
}

.faq-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-grid article {
  min-height: 210px;
  border-color: var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #111318;
}

.faq-grid h3 {
  color: white;
}

.faq-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: 58px;
  align-items: start;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(198, 20, 29, 0.28), transparent 34%),
    var(--ink);
}

.contact-copy,
.lead-form {
  min-width: 0;
}

.contact-copy p {
  margin-top: 24px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-methods a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.contact-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.contact-icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  color: white;
}

.contact-icon-link.is-disabled {
  opacity: 0.45;
}

.contact-icon-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-link[data-whatsapp-link] {
  color: #f3fff7;
  border-color: rgba(37, 211, 102, 0.38);
  background: rgba(37, 211, 102, 0.12);
}

.address-card {
  position: relative;
  display: block;
  max-width: 100%;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #111318;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.address-map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(198, 20, 29, 0.38), transparent 16%),
    linear-gradient(35deg, transparent 0 37%, rgba(255, 255, 255, 0.16) 37% 38.5%, transparent 38.5% 100%),
    linear-gradient(145deg, transparent 0 51%, rgba(255, 255, 255, 0.12) 51% 52.4%, transparent 52.4% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    #15171d;
  background-size:
    auto,
    auto,
    auto,
    46px 46px,
    46px 46px,
    auto;
  opacity: 0.96;
}

.address-map-bg::before,
.address-map-bg::after {
  content: "";
  position: absolute;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform-origin: center;
}

.address-map-bg::before {
  width: 70%;
  left: -10%;
  top: 42%;
  transform: rotate(-13deg);
}

.address-map-bg::after {
  width: 54%;
  right: -14%;
  bottom: 22%;
  transform: rotate(18deg);
}

.address-map-pin {
  position: absolute;
  right: 28px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--red), #8e0d14);
  color: white;
  box-shadow: 0 18px 38px rgba(198, 20, 29, 0.34);
  transition: transform 160ms ease;
}

.address-map-pin svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.address-map-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 22px 96px 22px 22px;
  background: linear-gradient(90deg, rgba(8, 9, 11, 0.9), rgba(8, 9, 11, 0.54) 60%, rgba(8, 9, 11, 0.24));
}

.address-map-content span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.address-card strong {
  max-width: 430px;
  color: white;
  font-size: clamp(1.04rem, 1.7vw, 1.34rem);
  line-height: 1.25;
}

.workshop-map-embed {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #111318;
  box-shadow: var(--shadow);
}

.workshop-map-embed iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  filter: grayscale(0.18) contrast(1.05);
}

.workshop-map-open {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(198, 20, 29, 0.48);
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.88);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.workshop-map-open::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(198, 20, 29, 0.2);
}

.lead-form {
  display: grid;
  gap: 14px;
  max-width: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  scroll-margin-top: 96px;
}

.form-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.form-tab {
  min-width: 0;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.form-tab:hover,
.form-tab:focus {
  color: white;
  outline: 0;
}

.form-tab.is-active {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 32px rgba(198, 20, 29, 0.28);
}

.form-panel {
  display: grid;
  gap: 14px;
}

.form-panel[hidden] {
  display: none;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 12px;
  outline: 0;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(198, 20, 29, 0.2);
}

.autocomplete-field {
  position: relative;
}

.vehicle-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, 0.42fr);
  gap: 12px;
}

.vehicle-detail-row.is-hidden {
  display: none;
}

.lead-form input:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.autocomplete-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  display: none;
  max-height: 230px;
  overflow: auto;
  padding: 6px;
  border: 1px solid rgba(198, 20, 29, 0.26);
  border-radius: var(--radius);
  background: #f6f3ec;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.autocomplete-panel.is-open {
  display: grid;
  gap: 4px;
}

.autocomplete-panel button {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.autocomplete-panel button:hover,
.autocomplete-panel button:focus {
  background: rgba(198, 20, 29, 0.12);
  color: #8e0d14;
  outline: 0;
}

.autocomplete-empty {
  padding: 12px;
  color: rgba(8, 9, 11, 0.58);
  font-size: 0.9rem;
}

.photo-upload {
  display: grid;
  gap: 10px;
}

.photo-upload-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.photo-upload-head small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.photo-dropzone {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(198, 20, 29, 0.14), rgba(255, 255, 255, 0.05));
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.photo-dropzone:hover {
  transform: translateY(-1px);
  border-color: rgba(198, 20, 29, 0.8);
  background:
    linear-gradient(135deg, rgba(198, 20, 29, 0.2), rgba(255, 255, 255, 0.07));
}

.photo-dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.photo-dropzone-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--red);
  color: white;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(198, 20, 29, 0.28);
}

.photo-dropzone-copy {
  display: grid;
  gap: 4px;
}

.photo-dropzone-copy strong,
.photo-dropzone-copy em {
  display: block;
}

.photo-dropzone-copy strong {
  color: white;
  font-size: 0.98rem;
}

.photo-dropzone-copy em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
  font-size: 0.86rem;
}

.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.photo-preview-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-remove-button {
  position: absolute;
  top: 5px;
  right: 5px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 9, 11, 0.82);
  color: white;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.photo-upload-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
  line-height: 1.4;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.form-privacy {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.privacy-consent {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px !important;
  align-items: start;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem !important;
  line-height: 1.45;
}

.privacy-consent input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.privacy-consent a {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  font-weight: 900;
}

.form-warning {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-submit-status {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 14px 16px 14px 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.4;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.form-submit-status[hidden] {
  display: none;
}

.form-submit-status::before {
  content: "i";
  position: absolute;
  left: 14px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-weight: 950;
  transform: translateY(-50%);
}

.form-submit-status[data-type="success"] {
  border-color: rgba(104, 227, 154, 0.42);
  background: rgba(104, 227, 154, 0.12);
  color: #a8f4bf;
}

.form-submit-status[data-type="success"]::before {
  content: "OK";
  background: #68e39a;
  color: #071008;
  font-size: 0.68rem;
}

.form-submit-status[data-type="error"] {
  border-color: rgba(255, 89, 100, 0.48);
  background: rgba(255, 89, 100, 0.12);
  color: #ffadb4;
}

.form-submit-status[data-type="error"]::before {
  content: "!";
  background: #ff5964;
  color: white;
}

.form-submit-status[data-type="sending"] {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.form-submit-status[data-type="sending"]::before {
  content: "...";
  color: white;
  font-size: 0.76rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  background: #050506;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer strong {
  color: white;
}

.footer-brand-block {
  display: grid;
  gap: 6px;
  max-width: 560px;
}

.footer-brand-block span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.content-page,
.landing-page {
  min-height: 100vh;
  background: var(--paper);
}

.simple-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 9, 11, 0.94);
  color: white;
}

.simple-header strong {
  font-family: "Arial Black", Bahnschrift, "Segoe UI", sans-serif;
  text-transform: uppercase;
}

.simple-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.landing-hero,
.legal-hero {
  padding: 118px max(20px, calc((100vw - 1180px) / 2)) 72px;
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(198, 20, 29, 0.34), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 40%),
    var(--ink);
}

.landing-hero p,
.legal-hero p {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.page-content {
  display: grid;
  gap: 42px;
  padding: 72px max(20px, calc((100vw - 1180px) / 2));
}

.page-section {
  display: grid;
  gap: 16px;
  max-width: 920px;
}

.page-section h2,
.page-section h3 {
  margin: 0;
  font-family: "Arial Black", Bahnschrift, "Segoe UI", sans-serif;
  text-transform: uppercase;
}

.page-section p,
.page-section li {
  color: rgba(8, 9, 11, 0.68);
  font-size: 1rem;
}

.page-section ul,
.page-section ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.cta-panel,
.legal-note {
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(198, 20, 29, 0.08), rgba(255, 255, 255, 0.62)),
    #f7f3eb;
}

.cta-panel h2,
.cta-panel p {
  margin: 0;
}

.cta-panel p {
  margin-top: 12px;
  color: rgba(8, 9, 11, 0.68);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header {
    width: calc(100vw - 24px);
    margin-top: 10px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 124px;
  }

  .service-grid,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .section-split,
  .process-layout,
  .contact-section,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .b2b-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid,
  .faq-grid,
  .b2b-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-left: 10px;
  }

  .brand {
    width: 186px;
  }

  .brand-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    min-height: 48px;
    padding: 4px 0;
  }

  .brand-card-ga {
    font-size: 2.05rem;
  }

  .brand-card-title {
    font-size: 1.08rem;
    line-height: 0.82;
  }

  .language-trigger {
    min-width: 52px;
    min-height: 38px;
    padding: 0 10px;
  }

  .language-trigger span {
    display: none;
  }

  .language-list {
    right: -50px;
    min-width: 178px;
  }

  .hero {
    min-height: auto;
    padding: 96px 16px 48px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 9.35vw, 2.42rem);
    overflow-wrap: break-word;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .price-grid,
  .gallery-grid,
  .faq-grid,
  .b2b-list {
    grid-template-columns: 1fr;
  }

  .vehicle-detail-row {
    grid-template-columns: 1fr;
  }

  .address-map-pin {
    right: 18px;
    top: 18px;
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .address-map-content {
    min-height: 138px;
    padding: 20px 76px 20px 18px;
  }

  .workshop-map-embed {
    min-height: 240px;
  }

  .workshop-map-embed iframe {
    height: 250px;
  }

  .workshop-map-open {
    left: 12px;
    right: 12px;
    justify-content: center;
  }

  .photo-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip {
    padding: 0;
  }

  .trust-strip div {
    min-height: auto;
    padding: 22px 16px;
  }

  .section {
    padding: 72px 16px;
  }

  .contact-section {
    width: 100%;
    max-width: 100vw;
  }

  .lead-form,
  .workshop-map-embed,
  .workshop-map-embed iframe {
    max-width: 100%;
  }

  .form-tab {
    font-size: clamp(0.7rem, 3.25vw, 0.82rem);
    letter-spacing: 0.015em;
    line-height: 1.12;
    padding: 0 8px;
  }

  .section-heading h2,
  .split-copy h2,
  .b2b h2,
  .contact-copy h2 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
    overflow-wrap: break-word;
  }

  .b2b h2 {
    font-size: clamp(1.75rem, 8.4vw, 2.45rem);
    line-height: 1.03;
  }

  .proof-panel {
    grid-template-columns: 1fr;
  }

  .proof-card {
    min-height: auto;
  }

  .steps article {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 18px;
  }

  .b2b-panel {
    padding: 24px;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .simple-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-hero,
  .legal-hero {
    padding: 104px 16px 56px;
  }

  .page-content {
    padding: 56px 16px;
  }

  .cta-actions .button {
    width: 100%;
  }
}
