:root {
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #1f2933;
  --heading: #111827;
  --muted: #667085;
  --line: #e1e5ea;
  --paper: #f7f8f7;
  --panel: #ffffff;
  --dark: #111827;
  --green: #1f6b4a;
  --gold: #caa15a;
  --blue: #24476a;
  --radius-sm: 8px;
  --radius-md: 10px;
  --shadow: 0 12px 36px rgba(17, 24, 39, .08);
  --shadow-card: 0 6px 22px rgba(17, 24, 39, .055);
  --shadow-card-hover: 0 10px 28px rgba(17, 24, 39, .09);
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--ink); font-size: 16px; font-weight: 400; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(188px, 1fr) auto minmax(188px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(217, 222, 228, .8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex: 0 0 188px;
  align-items: center;
  width: 188px;
  min-width: 0;
}
.topbar > .brand { grid-column: 1; justify-self: start; }
.brand-wordmark { display: block; width: 100%; min-width: 0; line-height: 0; }
.brand-wordmark img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 39px;
  object-fit: contain;
  object-position: left center;
}
.nav { display: flex; gap: clamp(12px, 2vw, 28px); color: #2a3138; font-size: 14px; font-weight: 500; }
.topbar > .nav { grid-column: 2; justify-self: center; }
.nav a:hover, .text-link:hover { color: var(--green); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--dark);
  cursor: pointer;
}
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after { display: block; width: 20px; height: 2px; border-radius: 2px; background: currentColor; content: ""; transition: transform .18s ease, opacity .18s ease; }
.nav-toggle-lines { position: relative; }
.nav-toggle-lines::before { position: absolute; transform: translateY(-6px); }
.nav-toggle-lines::after { position: absolute; transform: translateY(6px); }
.nav-open .nav-toggle-lines { background: transparent; }
.nav-open .nav-toggle-lines::before { transform: rotate(45deg); }
.nav-open .nav-toggle-lines::after { transform: rotate(-45deg); }
.top-action {
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg, .hero-video, .hero-shade, .hero-overlay { position: absolute; inset: 0; }
.hero-bg {
  background:
    linear-gradient(90deg, rgba(10, 15, 18, .92) 0%, rgba(10, 15, 18, .62) 38%, rgba(10, 15, 18, .18) 100%),
    url("/assets/site/hero-atlant-auto.jpg") center 58% / cover;
  transform: scale(1.02);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.02);
}
.hero-shade, .hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 15, 18, .92) 0%, rgba(10, 15, 18, .62) 38%, rgba(10, 15, 18, .18) 100%),
    linear-gradient(0deg, rgba(17, 24, 32, .92), rgba(17, 24, 32, 0) 42%);
}
.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0 42px;
  color: white;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 840px;
  margin: 0;
  color: inherit;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.025em;
}
h2 { margin: 0; color: var(--heading); font-size: clamp(34px, 4vw, 46px); font-weight: 600; line-height: 1.15; letter-spacing: -.02em; }
h3 { margin: 0; color: var(--heading); font-size: 22px; font-weight: 600; line-height: 1.3; letter-spacing: -.01em; }
.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
}
.primary { background: var(--green); color: white; }
.primary:hover { background: #18573c; }
.ghost { border: 1px solid rgba(255,255,255,.42); color: white; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 56px 0 0;
}
.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}
.hero-stats dt { font-size: 30px; font-weight: 700; line-height: 1.2; }
.hero-stats dd { margin: 4px 0 0; color: rgba(255,255,255,.74); }

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}
.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  transform: translateY(-28px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.trust-band div { padding: 24px; background: var(--panel); }
.trust-band strong, .trust-band span { display: block; }
.trust-band span { margin-top: 7px; color: var(--muted); line-height: 1.45; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.filters { display: flex; gap: 8px; padding: 4px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.filter {
  min-height: 38px;
  padding: 8px 13px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
}
.filter.active { background: var(--dark); color: white; }
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.car-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.car-card[hidden] { display: none; }
.car-card:hover { transform: translateY(-2px); border-color: #d5dbe2; box-shadow: var(--shadow-card-hover); }
.car-card[data-status="sold"] { border-color: #d7dbde; background: #f1f3f3; box-shadow: none; }
.car-card[data-status="sold"]:hover { transform: none; border-color: #cbd0d3; box-shadow: 0 5px 16px rgba(17,24,39,.045); }
.car-card[data-status="sold"] .car-media { background: #6d7479; }
.car-card[data-status="sold"] .car-media img { filter: grayscale(1) saturate(0) brightness(.8) contrast(.88); opacity: .72; transition: filter .2s ease, opacity .2s ease; }
.car-card[data-status="sold"]:hover .car-media img { filter: grayscale(.9) saturate(.12) brightness(.84) contrast(.9); opacity: .78; }
.car-card[data-status="sold"] .car-body { color: #70777d; opacity: .76; }
.car-card[data-status="sold"] .car-body h3,
.car-card[data-status="sold"] .price { color: #596168; }
.car-card[data-status="sold"] .small-button { border-color: #cfd4d7; background: #eceeee; color: #6b7379; }
.car-card-link {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.car-card-link:focus-visible { outline: 3px solid var(--green); outline-offset: -3px; }
.car-media { position: relative; aspect-ratio: 4 / 3; background: #d8dde3; overflow: hidden; }
.car-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.car-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  max-width: calc(100% - 24px);
  flex-wrap: wrap;
  gap: 6px;
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(17, 24, 32, .88);
  color: white;
  font-size: 13px;
  font-weight: 600;
}
.car-badges .badge { position: static; }
.badge.sold { background: rgba(68, 72, 76, .92); }
.badge.source-text {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .93);
  color: #26313d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
}
.car-body { display: flex; flex: 1; min-width: 0; flex-direction: column; padding: 20px; }
.car-body h3 { min-height: 55px; font-size: 21px; font-weight: 600; line-height: 1.3; }
.specs { display: grid; gap: 7px; margin: 14px 0; color: var(--muted); font-size: 14px; }
.compact-specs {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 47px;
  margin: 14px 0;
  color: #4f5d6b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.compact-specs div { display: flex; flex-wrap: wrap; gap: 0; }
.compact-specs span { white-space: nowrap; }
.compact-specs span + span::before { content: " · "; white-space: pre; }
.price-row {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}
.price { max-width: 100%; color: var(--heading); font-size: clamp(21px, 2vw, 26px); font-weight: 700; white-space: nowrap; }
.price-block { display: grid; gap: 3px; }
.price-note { color: var(--muted); font-size: 12px; font-weight: 500; line-height: 1.35; }
.detail-price-note { max-width: 58ch; margin-top: -10px; font-size: 14px; }
.car-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 11px;
  border: 1px solid var(--green);
  border-radius: 9px;
  background: var(--green);
  color: white;
  box-shadow: 0 8px 18px rgba(29, 122, 82, .18);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.car-cta-arrow { font-size: 19px; line-height: 1; transition: transform .18s ease; }
.car-card-link:hover .car-cta {
  border-color: #146b47;
  background: #146b47;
  box-shadow: 0 10px 22px rgba(20, 107, 71, .24);
  transform: translateY(-1px);
}
.car-card-link:hover .car-cta-arrow { transform: translateX(3px); }
.car-card-link:focus-visible .car-cta { outline: 3px solid rgba(29, 122, 82, .28); outline-offset: 3px; }
.small-button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.small-button:hover { border-color: #cbd3dc; background: #f7f8f9; }

.car-page-main {
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
  padding: 34px 0 80px;
}
.back-link { display: inline-block; margin-bottom: 24px; color: var(--muted); font-weight: 600; }
.breadcrumbs {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 24px;
}
.breadcrumbs > * { min-width: 0; overflow-wrap: anywhere; }
.car-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(340px, .75fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}
.car-hero > *, .detail-grid > *, .equipment-grid > * { min-width: 0; }
.car-gallery { overflow: hidden; border-radius: 10px; background: #d8dde3; }
.car-gallery-main { display: block; width: 100%; max-height: 620px; aspect-ratio: 4 / 3; object-fit: cover; }
.car-thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); gap: 7px; padding: 7px; background: white; }
.car-thumbs button { padding: 0; border: 2px solid transparent; border-radius: 7px; background: none; cursor: pointer; overflow: hidden; }
.car-thumbs button:focus { border-color: var(--green); }
.car-thumbs img { display: block; width: 100%; height: 78px; object-fit: cover; }
.car-summary {
  position: sticky;
  top: 92px;
  min-width: 0;
  container-type: inline-size;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}
.car-summary h1 {
  max-width: 100%;
  margin: 18px 0;
  font-size: 36px;
  font-size: clamp(30px, 10cqw, 40px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.car-summary > p:not(.eyebrow, .detail-price) { line-height: 1.65; }
.badge.static { position: static; display: inline-block; }
.detail-price {
  margin: 20px 0;
  color: var(--heading);
  font-size: 27px;
  font-size: clamp(24px, 7cqw, 30px);
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.condition-disclaimer {
  margin: 20px 0;
  padding: 14px 16px;
  border-left: 3px solid var(--green);
  border-radius: 6px;
  background: #f5f7f6;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.car-section { margin-top: 30px; padding: 28px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.car-section h2 { margin-bottom: 22px; }
.car-description { max-width: 900px; margin: 0; color: var(--text); font-size: 17px; line-height: 1.75; }
.detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 8px; background: var(--line); }
.detail-grid div { padding: 15px; background: white; }
.detail-grid dt { color: var(--muted); font-size: 13px; line-height: 1.4; }
.detail-grid dd { margin: 5px 0 0; font-weight: 600; overflow-wrap: anywhere; }
.equipment-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.equipment-grid h3 { font-size: 17px; }
.equipment-grid ul { padding-left: 20px; color: var(--muted); line-height: 1.7; }
.timeline { display: grid; gap: 18px; padding-left: 24px; }
.timeline li { padding-left: 8px; }
.timeline span { margin-left: 12px; color: var(--muted); }
.timeline p { margin-bottom: 0; }
.document-list { display: grid; gap: 12px; }
.document-card, .document-card > div { display: flex; align-items: center; gap: 10px; }
.document-card { min-width: 0; flex-wrap: wrap; justify-content: space-between; }
.document-card strong, .document-card span { min-width: 0; overflow-wrap: anywhere; }
.document-card + .document-card { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.document-card > div:first-child { display: grid; }
.document-card small { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}
.section-text { color: var(--muted); font-size: 17px; line-height: 1.65; }
.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.steps span { color: var(--gold); font-weight: 700; }
.steps strong { font-size: 18px; font-weight: 600; }
.steps p { grid-column: 2; margin: 4px 0 0; color: var(--muted); line-height: 1.5; }
.process-showcase { padding-top: 92px; }
.process-intro {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: 64px;
}
.process-intro .section-text { max-width: 680px; margin: 0 0 12px; }
.process-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 44px 0 0;
  list-style: none;
}
.process-roadmap::before {
  position: absolute;
  top: 12px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c7d0c9 8%, #c7d0c9 92%, transparent);
  content: "";
}
.process-roadmap > li { position: relative; display: flex; min-width: 0; }
.process-marker {
  position: absolute;
  top: -44px;
  left: 22px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 5px solid var(--paper);
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(17,24,39,.16);
}
.process-card {
  display: flex;
  width: 100%;
  min-height: 310px;
  flex-direction: column;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow-card);
}
.process-card small {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e8f4ed;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}
.process-card h3 { margin: 22px 0 10px; font-size: 20px; }
.process-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.62; }
.process-roadmap > li.featured { transform: translateY(-18px); }
.process-roadmap > li.featured .process-marker { background: var(--green); color: white; }
.process-roadmap > li.featured .process-card { border-color: var(--dark); border-top-color: var(--green); background: var(--dark); }
.process-roadmap > li.featured .process-card h3 { color: white; }
.process-roadmap > li.featured .process-card p { color: rgba(255,255,255,.7); }
.process-roadmap > li.featured .process-card small { background: rgba(255,255,255,.1); color: #d7eadf; }
.numbers-section { padding: 38px 0 50px; }
.numbers-head {
  margin-bottom: 24px;
}
.numbers-head h2 { white-space: nowrap; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 15px;
  border: 1px solid #2b3541;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), transparent 16%),
    linear-gradient(145deg, #151d27, #090e14);
  box-shadow:
    0 22px 50px rgba(11,18,27,.22),
    inset 0 1px rgba(255,255,255,.09),
    inset 0 -1px rgba(0,0,0,.7);
}
.number-card {
  --gauge-progress: 42%;
  position: relative;
  display: grid;
  min-height: 190px;
  padding: 28px 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 24%, rgba(202,161,90,.09), transparent 28%),
    linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
  box-shadow: inset 0 1px rgba(255,255,255,.06), inset 0 -24px 35px rgba(0,0,0,.08);
}
.number-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 16px;
  left: 22px;
  height: 1px;
  opacity: .55;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
}
.number-card:nth-child(1) { --gauge-progress: 31%; }
.number-card:nth-child(2) { --gauge-progress: 43%; }
.number-card:nth-child(3) { --gauge-progress: 57%; }
.number-card:nth-child(4) { --gauge-progress: 69%; }
.number-gauge {
  position: absolute;
  top: 18px;
  right: 17px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #121a24 0 59%, transparent 60%),
    conic-gradient(from 225deg, var(--gold) 0 var(--gauge-progress), rgba(255,255,255,.1) var(--gauge-progress) 75%, transparent 75% 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 0 18px rgba(0,0,0,.72),
    0 7px 18px rgba(0,0,0,.28);
}
.number-gauge::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: 1;
  border-radius: 50%;
  background: repeating-conic-gradient(from 225deg, rgba(255,255,255,.56) 0 1.2deg, transparent 1.2deg 10deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 5px), #000 0);
}
.number-gauge::after {
  content: "GAUGE";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  z-index: 3;
  color: rgba(255,255,255,.42);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1;
  text-align: center;
}
.number-gauge i {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: 2px;
  height: 34px;
  border-radius: 3px;
  background: linear-gradient(#fff8e8, var(--gold));
  box-shadow: 0 0 8px rgba(202,161,90,.78);
  transform: translate(-50%, -100%) rotate(var(--gauge-angle));
  transform-origin: 50% 100%;
}
.number-gauge i::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  border: 2px solid #d9b66f;
  border-radius: 50%;
  background: #101720;
  box-shadow: 0 0 0 3px rgba(0,0,0,.28);
  transform: translateX(50%);
}
.number-card:nth-child(1) .number-gauge::after { content: "STOCK"; }
.number-card:nth-child(2) .number-gauge::after { content: "ROUTE"; }
.number-card:nth-child(3) .number-gauge::after { content: "CLIENT"; }
.number-card:nth-child(4) .number-gauge::after { content: "YEAR"; }
.number-card strong {
  position: relative;
  z-index: 1;
  align-self: end;
  color: white;
  font-size: clamp(46px, 5vw, 64px);
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  line-height: .95;
  letter-spacing: -.055em;
  text-shadow: 0 0 20px rgba(255,255,255,.08);
}
.number-card .number-label {
  position: relative;
  z-index: 1;
  display: block;
  align-self: end;
  max-width: 220px;
  margin-top: 20px;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.platforms-section {
  padding: 86px 0 92px;
  background:
    linear-gradient(rgba(238,242,243,.88), rgba(238,242,243,.94)),
    url("/assets/site/lot-crossovers.jpg") center 42% / cover;
}
.platforms-inner { width: min(1380px, calc(100% - 36px)); margin: 0 auto; }
.platforms-head { display: grid; grid-template-columns: minmax(0, .82fr) minmax(380px, 1fr); gap: 24px 72px; align-items: end; margin-bottom: 34px; }
.platforms-head h2 { max-width: 620px; }
.platforms-head > p { max-width: 650px; margin: 0 0 4px; color: var(--muted); font-size: 18px; line-height: 1.6; }
.platforms-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.platform-card { display: flex; min-width: 0; min-height: 222px; padding: 24px 18px 18px; border: 1px solid #d9e0e4; border-radius: 12px; background: white; box-shadow: 0 5px 18px rgba(17,24,39,.04); flex-direction: column; align-items: center; justify-content: space-between; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.platform-card:hover { border-color: #b9c7c0; box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.platform-card:focus-visible { outline: 3px solid rgba(31,107,74,.26); outline-offset: 3px; }
.platform-logo { display: grid; place-items: center; width: 100%; height: 92px; padding-inline: 4px; overflow: hidden; }
.platform-logo img { display: block; max-width: min(156px, 100%); max-height: 62px; width: auto; height: auto; object-fit: contain; }
.platform-logo.square img { max-width: 118px; max-height: 76px; }
.platform-logo.arval-platform-logo img { transform: scale(2.3); }
.platform-type { padding: 7px 11px; border-radius: 999px; background: #edf1f2; color: #596973; font-size: 11px; font-weight: 800; letter-spacing: .05em; line-height: 1.2; text-align: center; text-transform: uppercase; }
.platform-type.direct { background: #e6f3eb; color: var(--green); }
.platform-link { margin-top: 12px; color: var(--muted); font-size: 12px; font-weight: 600; text-align: center; }
.platform-card:hover .platform-link { color: var(--green); }
.platforms-note { max-width: 820px; margin: 18px 0 0; color: #77838d; font-size: 12px; line-height: 1.5; }
.advantages-section {
  margin-top: 0;
  padding: 92px 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(202,161,90,.13), transparent 30%),
    linear-gradient(145deg, #111827, #173247);
  color: white;
}
.advantages-inner { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.advantages-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr); gap: 14px 60px; align-items: end; margin-bottom: 38px; }
.advantages-head .eyebrow { grid-column: 1 / -1; }
.advantages-head h2 { color: white; }
.advantages-head > p:last-child { margin: 0; color: rgba(255,255,255,.68); line-height: 1.65; }
.advantages-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.advantage-card {
  position: relative;
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: #fdfefd;
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(4,12,20,.2);
}
.advantage-card::after {
  position: absolute;
  right: -28px;
  bottom: -54px;
  width: 130px;
  height: 130px;
  border: 24px solid rgba(31,107,74,.06);
  border-radius: 50%;
  content: "";
}
.advantage-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 9px;
  background: var(--gold);
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  box-shadow: 0 10px 24px rgba(202,161,90,.28);
}
.advantage-card h3 { max-width: 320px; margin: 24px 0 10px; }
.advantage-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); line-height: 1.65; }
.advantage-card:nth-child(2), .advantage-card:nth-child(5) { background: #f3f7f4; }
.pricing-section { padding-top: 92px; }
.pricing-head { max-width: 780px; margin: 0 auto 42px; text-align: center; }
.pricing-head .eyebrow { justify-content: center; }
.pricing-head > p:last-child { margin: 18px auto 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.pricing-card {
  display: flex;
  min-width: 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 12px;
  background: white;
  box-shadow: var(--shadow-card);
  flex-direction: column;
}
.pricing-card.featured { border-top-color: var(--green); background: linear-gradient(180deg, #f8fcfa, #fff 30%); }
.pricing-label { align-self: flex-start; padding: 7px 11px; border-radius: 999px; background: #f7eddb; color: #775b29; font-size: 12px; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; }
.pricing-card.featured .pricing-label { background: #e7f3ec; color: var(--green); }
.pricing-card h3 { margin: 22px 0 8px; font-size: clamp(24px, 3vw, 30px); }
.service-price { color: var(--gold); font-size: clamp(44px, 6vw, 62px); line-height: 1; letter-spacing: -.045em; }
.pricing-description { min-height: 58px; margin: 18px 0 10px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.pricing-card ul { display: grid; gap: 13px; margin: 18px 0 26px; padding: 0; list-style: none; }
.pricing-card li { position: relative; padding-left: 30px; color: #3d4855; line-height: 1.5; }
.pricing-card li::before { position: absolute; top: .08em; left: 0; display: grid; place-items: center; width: 20px; height: 20px; border: 2px solid var(--green); border-radius: 50%; color: var(--green); content: "✓"; font-size: 12px; font-weight: 800; }
.pricing-note { margin: auto 0 22px; padding: 18px; border: 1px solid var(--line); border-radius: 9px; background: #f6f8f7; color: var(--muted); font-size: 13px; line-height: 1.55; }
.pricing-card.featured .pricing-note { border-color: #cfe3d8; background: #eef7f2; }
.pricing-card .button { align-self: flex-start; }
.button.secondary { border: 1px solid var(--dark); background: transparent; color: var(--dark); }
.button.secondary:hover { background: var(--dark); color: white; }
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reviews-widget {
  min-height: 180px;
  overflow: hidden;
}
blockquote {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: #303943;
  line-height: 1.58;
}
cite { display: block; margin-top: 16px; color: var(--muted); font-style: normal; font-weight: 600; }
.text-link { color: var(--green); font-weight: 600; }
.faq { display: grid; gap: 10px; }
.faq-page {
  width: min(100% - 36px, 920px);
  padding-top: 18px;
}
.faq-page details { overflow: hidden; box-shadow: 0 8px 24px rgba(16, 20, 24, .04); }
.faq-page summary { padding: 22px 24px; font-size: 18px; line-height: 1.4; }
.faq-page details p { max-width: 78ch; padding: 0 24px 24px; font-size: 16px; }
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
}
details p { margin: 0; padding: 0 20px 20px; color: var(--muted); line-height: 1.55; }
.calc-page-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 34px;
}
.calc-page-hero h1 {
  max-width: 840px;
  color: var(--dark);
}
.calc-page-hero .lead {
  max-width: 720px;
  color: var(--muted);
}
.calc-caption {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.calc-layout {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}
.calc-form, .calc-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 36px rgba(16, 20, 24, .06);
}
.calc-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}
.calc-form select {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  color: var(--ink);
  background: #fbfcfd;
}
.calc-form select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(31, 107, 74, .12); }
.calc-fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.calc-fieldset legend { padding: 0 6px; color: var(--muted); font-size: 13px; font-weight: 600; }
.calc-fieldset label, .calc-check { display: flex; align-items: center; gap: 8px; color: #2d363f; font-size: 14px; }
.calc-fieldset input, .calc-check input { width: auto; margin: 0; }
.calc-check { grid-column: 1 / -1; padding: 4px 0; font-weight: 600; }
.calc-form .button { grid-column: 1 / -1; }
.calc-mode, .calc-advanced-toggle, .calc-advanced { grid-column: 1 / -1; }
.calc-advanced {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}
.calc-advanced[hidden] { display: none; }
.calc-result { padding: 24px; }
.calc-total {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-radius: 8px;
  background: var(--dark);
  color: white;
}
.calc-total span { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 600; text-transform: uppercase; }
.calc-total strong { font-size: clamp(34px, 5vw, 50px); font-weight: 700; line-height: 1.1; }
.calc-total small { color: rgba(255,255,255,.72); }
.calc-total-warning { background: #6e1f1f; }
.calc-lines { display: grid; gap: 9px; margin-top: 18px; }
.calc-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.calc-line span { color: var(--muted); }
.calc-line strong { text-align: right; white-space: nowrap; }
.calc-note { margin: 18px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.calc-sources {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}
.calc-sources li {
  display: grid;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.calc-sources a { color: var(--green); font-weight: 600; }
.calc-sources span { color: var(--muted); }
.request {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}
label { color: var(--muted); font-size: 13px; font-weight: 600; }
label.wide { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  color: var(--ink);
  background: #fbfcfd;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(31, 107, 74, .12); }
textarea { resize: vertical; line-height: 1.5; }
.request-form .button { grid-column: 1 / -1; }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--green); font-weight: 600; }
.route-section {
  padding: 86px 0;
  background:
    linear-gradient(145deg, rgba(17,24,39,.94), rgba(23,50,71,.84)),
    url("/assets/site/vehicle-transport.jpg") center 48% / cover;
  color: white;
}
.route-inner { display: grid; width: min(1180px, calc(100% - 36px)); margin: 0 auto; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: 34px; align-items: stretch; }
.route-copy { display: flex; padding: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.055); flex-direction: column; align-items: flex-start; }
.route-copy h2 { color: white; }
.route-copy > p:not(.eyebrow) { margin: 18px 0; color: rgba(255,255,255,.72); line-height: 1.65; }
.route-copy address { margin: 0 0 26px; color: white; font-size: 18px; font-style: normal; font-weight: 700; line-height: 1.5; }
.route-copy .button { margin-top: auto; }
.route-map { min-height: 420px; overflow: hidden; border-radius: 12px; background: #d8dde3; box-shadow: 0 22px 52px rgba(0,0,0,.2); }
.route-map iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; }
.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  gap: 24px;
  padding: 46px clamp(18px, 4vw, 56px);
  background: var(--dark);
  color: white;
}
.footer p { max-width: 520px; color: rgba(255,255,255,.68); line-height: 1.55; }
address { display: grid; gap: 9px; color: rgba(255,255,255,.78); font-style: normal; }
address a:hover { color: white; }
.footer .brand {
  width: 180px;
  flex-basis: 180px;
  padding: 7px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .94);
}
.footer-languages { justify-content: flex-start; margin-bottom: 8px; }
.footer-languages a { color: rgba(255,255,255,.72); }
.footer-languages a[aria-current="page"] { color: var(--dark); background: white; }

.language-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.topbar > .language-nav { grid-column: 3; justify-self: end; }
.language-nav a {
  padding: 7px 8px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.language-nav a[aria-current="page"] {
  color: white;
  background: var(--dark);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 34px;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumbs a { color: var(--green); font-weight: 600; }
.content-page {
  --content-hero-image: url("/assets/site/lot-lineup.jpg");
  --content-hero-position: center 54%;
  background: #f6f7f8;
}
.content-hero {
  position: relative;
  z-index: 0;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 42px;
  color: white;
  isolation: isolate;
}
.content-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background:
    linear-gradient(90deg, rgba(11,18,24,.92), rgba(11,18,24,.67) 56%, rgba(11,18,24,.45)),
    var(--content-hero-image) var(--content-hero-position) / cover;
  box-shadow: inset 0 -1px rgba(255,255,255,.08);
  content: "";
}
.content-hero h1 {
  max-width: 920px;
  color: white;
}
.content-hero .lead {
  max-width: 820px;
  color: rgba(255,255,255,.78);
}
.content-hero .button.ghost.dark { border-color: rgba(255,255,255,.6); color: white; }
.content-hero .button.ghost.dark:hover { border-color: white; background: rgba(255,255,255,.09); }
.content-hero-home { padding-top: 92px; }
.page-europe {
  --content-hero-image: url("/assets/site/dealership-selection.jpg");
  --content-hero-position: center 52%;
}
.page-auction {
  --content-hero-image: url("/assets/site/dealership-auction-stock.jpg");
  --content-hero-position: center 48%;
}
.page-cars {
  --content-hero-image: url("/assets/site/dealership-range.jpg");
  --content-hero-position: center 54%;
}
.page-process {
  --content-hero-image: url("/assets/site/dealership-delivery.jpg");
  --content-hero-position: center 58%;
}
.page-about,
.page-contact {
  --content-hero-image: url("/assets/site/dealership-lot-wide.jpg");
  --content-hero-position: center 51%;
}
.page-cases,
.page-faq {
  --content-hero-image: url("/assets/site/dealership-lineup.jpg");
  --content-hero-position: center 54%;
}
.button.ghost.dark {
  border-color: var(--dark);
  color: var(--dark);
}
.content-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 64px;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.topic-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}
.topic-card > span {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}
.topic-card h2 { margin: 14px 0 10px; font-size: 22px; }
.topic-card p, .seo-copy p {
  color: var(--muted);
  line-height: 1.6;
}
.seo-copy {
  max-width: 860px;
  margin-bottom: 36px;
  padding: 36px;
  border-radius: 8px;
  background: white;
}
.seo-copy h2 { font-size: clamp(28px, 4vw, 38px); }
.seo-callout {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 30px;
  padding: 20px;
  border-left: 4px solid var(--green);
  background: white;
  color: var(--muted);
  line-height: 1.6;
}
.company-details { display: grid; gap: 52px; }
.official-panel {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 28px 48px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 10px;
  background: var(--dark);
  color: white;
}
.official-panel h2 { color: white; }
#official-company-heading {
  white-space: nowrap;
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: -.04em;
}
.official-panel p { max-width: 620px; color: rgba(255,255,255,.7); }
.official-panel > .text-link { grid-column: 2; color: #d8b87c; }
.official-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.16);
}
.official-data div { padding: 17px; background: rgba(255,255,255,.07); }
.official-data dt { color: rgba(255,255,255,.6); font-size: 12px; }
.official-data dd { margin: 5px 0 0; font-weight: 600; overflow-wrap: anywhere; }
.locations-heading { max-width: 760px; }
.locations-heading > p:last-child { color: var(--muted); }
.location-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.location-card { padding: 30px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.location-label { color: var(--gold); font-size: 13px; font-weight: 700; }
.location-card h3 { margin-top: 14px; }
.location-card address { margin: 14px 0 0; color: var(--heading); font-size: 18px; font-weight: 600; }
.location-card p { min-height: 50px; color: var(--muted); }
.company-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .65fr);
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: white;
}
.company-contact h2 { font-size: clamp(26px, 4vw, 36px); }
.company-contact p { margin-bottom: 0; color: var(--muted); }
.company-contact > div:last-child { display: grid; gap: 8px; font-weight: 600; }
.company-contact a { color: var(--green); overflow-wrap: anywhere; }
.catalogue-page { padding-top: 52px; }
.catalogue-page .section-head { align-items: end; }
.catalogue-page .section-text { max-width: 680px; margin-bottom: 0; }
.process-page-section { padding-top: 58px; }
.process-roadmap-page { padding-top: 30px; }
.process-roadmap-page .process-card h2 { margin: 22px 0 10px; font-size: 20px; }
.contract-section { display: grid; gap: 28px; padding: 46px 0 70px; }
.contract-section > header { max-width: 760px; }
.contract-section > header p:last-child { color: var(--muted); }
.contract-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contract-grid article { padding: 24px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.contract-grid article > span { color: var(--green); font-size: 13px; font-weight: 700; }
.contract-grid h3 { margin: 12px 0 8px; }
.contract-grid p { margin: 0; color: var(--muted); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr); gap: 30px; padding-top: 58px; }
.contact-direct { padding: 30px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.contact-direct > p { color: var(--muted); }
.contact-actions, .car-summary-actions, .car-contact-cta > div:last-child, .content-cta > div:last-child { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.contact-addresses { display: grid; gap: 14px; margin-top: 28px; }
.contact-addresses article { padding-top: 18px; border-top: 1px solid var(--line); }
.contact-addresses h3 { margin: 0 0 8px; }
.contact-addresses address { color: var(--heading); font-weight: 600; }
.contact-addresses p { margin: 8px 0; color: var(--muted); }
.contact-map { width: min(1180px, calc(100% - 36px)); height: 380px; margin: 0 auto 70px; overflow: hidden; border-radius: 10px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.content-cta, .car-contact-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; width: min(1180px, calc(100% - 36px)); margin: 0 auto 70px; padding: 30px; border-left: 4px solid var(--green); border-radius: 10px; background: white; box-shadow: var(--shadow-card); }
.content-cta h2, .car-contact-cta h2 { margin-bottom: 6px; font-size: clamp(25px, 3vw, 34px); }
.content-cta p, .car-contact-cta p { margin: 0; color: var(--muted); }
.car-contact-cta { width: 100%; margin: 30px 0 0; }
.car-summary-actions { align-items: stretch; }
.car-summary-actions .button { flex: 1 1 180px; text-align: center; }
.transparency-grid dd { font-weight: 600; }
.mobile-call-bar { display: none; }
.cookie-banner {
  position: fixed;
  z-index: 30;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  box-shadow: 0 18px 54px rgba(17, 24, 39, .18);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { color: var(--heading); }
.cookie-banner p { max-width: 680px; margin: 6px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; min-width: max-content; }

@media (max-width: 960px) {
  .topbar { position: sticky; grid-template-columns: minmax(0, 1fr) auto auto; gap: 10px; }
  .nav-toggle { display: inline-flex; grid-column: 2; }
  .topbar > .language-nav { grid-column: 3; }
  .topbar > .nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
  }
  .topbar.nav-open > .nav { display: flex; }
  .topbar > .nav a { padding: 13px 12px; border-radius: 7px; }
  .topbar > .nav a:hover { background: #f2f5f3; }
  .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cars-grid, .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .request, .calc-layout, .official-panel { grid-template-columns: 1fr; }
  .official-panel > .text-link { grid-column: auto; }
  .car-hero { grid-template-columns: 1fr; }
  .car-summary { position: static; }
  .detail-grid, .equipment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-intro { grid-template-columns: 1fr; margin-bottom: 34px; }
  .process-roadmap { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-top: 0; }
  .process-roadmap::before { display: none; }
  .process-roadmap > li.featured { transform: none; }
  .process-marker { top: 18px; left: 18px; border-color: white; }
  .process-card { min-height: 280px; padding-top: 68px; }
  .numbers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platforms-head { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .advantages-head { grid-template-columns: 1fr; }
  .advantages-head .eyebrow { grid-column: auto; }
  .advantages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-description { min-height: 0; }
  .route-inner { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .content-cta, .car-contact-cta { grid-template-columns: 1fr; }
  h1 { font-size: clamp(38px, 7vw, 56px); }
  h2 { font-size: clamp(32px, 5vw, 40px); }
}

@media (max-width: 1180px) and (min-width: 681px) {
  .platforms-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  body { padding-bottom: 64px; }
  .topbar { grid-template-columns: minmax(0, 1fr) auto auto; min-height: 64px; padding-inline: 14px; }
  .top-action { padding: 10px 12px; font-size: 13px; }
  .brand { width: 148px; flex-basis: 148px; }
  .brand-wordmark img { max-height: 31px; }
  .hero { min-height: 760px; }
  .hero-content { width: min(100% - 28px, 1180px); padding-bottom: 28px; }
  .lead { font-size: 16px; }
  h1 { font-size: clamp(32px, 9vw, 36px); line-height: 1.12; letter-spacing: -.02em; }
  h2 { font-size: clamp(28px, 8vw, 34px); line-height: 1.18; }
  h3 { font-size: 20px; }
  .hero-stats, .trust-band, .cars-grid, .audience, .reviews, .footer, .request-form {
    grid-template-columns: 1fr;
  }
  .topic-grid { grid-template-columns: 1fr; }
  .contract-grid { grid-template-columns: 1fr; }
  .contact-layout { padding-top: 34px; }
  .contact-direct, .content-cta, .car-contact-cta { padding: 22px; }
  .contact-actions .button, .content-cta .button, .car-contact-cta .button { width: 100%; justify-content: center; text-align: center; }
  .mobile-call-bar { position: fixed; z-index: 25; right: 10px; bottom: 10px; left: 10px; display: flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; border-radius: 9px; background: var(--green); color: white; box-shadow: 0 12px 30px rgba(17,24,39,.28); font-weight: 700; }
  .location-grid, .company-contact, .official-data { grid-template-columns: 1fr; }
  .process-roadmap { grid-template-columns: 1fr; }
  .process-card { min-height: 0; }
  .numbers-grid { grid-template-columns: 1fr; }
  .numbers-head h2 { white-space: normal; }
  .number-card { min-height: 0; }
  .platforms-section { padding: 64px 0; }
  .platforms-inner { width: min(100% - 28px, 1380px); }
  .platforms-head { margin-bottom: 26px; }
  .platforms-head > p { font-size: 16px; }
  .platforms-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-card { min-height: 198px; padding-inline: 14px; }
  .advantages-section { padding: 64px 0; }
  .advantages-inner { width: min(100% - 28px, 1180px); }
  .advantages-grid { grid-template-columns: 1fr; }
  .advantage-card { min-height: 0; }
  .pricing-section { padding-top: 64px; }
  .route-section { padding: 64px 0; }
  .route-inner { width: min(100% - 28px, 1180px); }
  .route-copy { padding: 26px; }
  .route-map, .route-map iframe { min-height: 340px; }
  .location-card p { min-height: 0; }
  .content-hero { padding: 44px 0 28px; }
  .content-section { padding-bottom: 44px; }
  .seo-copy { padding: 24px; }
  .cookie-banner { align-items: stretch; flex-direction: column; right: 12px; bottom: 12px; left: 12px; }
  .cookie-actions { min-width: 0; }
  .hero-stats { margin-top: 34px; }
  .section { width: min(100% - 28px, 1180px); padding: 54px 0; }
  .trust-band { transform: translateY(-18px); padding: 0; }
  .section-head { display: grid; align-items: start; }
  .filters { overflow-x: auto; width: 100%; }
  .car-body h3 { min-height: 52px; font-size: 19px; }
  .steps li { grid-template-columns: 44px 1fr; padding: 18px; }
  .steps p { grid-column: 1 / -1; }
  .calc-form, .calc-advanced { grid-template-columns: 1fr; }
  .calc-check, .calc-mode, .calc-advanced-toggle, .calc-advanced, .calc-form .button, label.wide, .request-form .button, .form-note { grid-column: auto; }
  .compact-specs { min-height: 48px; font-size: 15px; }
  .price { font-size: 24px; }
  .car-page-main { width: min(100% - 28px, 1180px); padding-top: 24px; }
  .detail-grid, .equipment-grid { grid-template-columns: 1fr; }
  .car-section, .car-summary { padding: 20px; }
  .document-card { align-items: flex-start; flex-direction: column; }
}
