/* ============================================================
   AUTOONE — Design System
   Restrained, editorial, automotive-premium.
   Single typeface (Inter — full Greek support), hairline rules
   instead of shadows, deep red used sparingly.
   ============================================================ */

:root {
  /* Neutrals — warm, not blue-grey */
  --ink:        #0A0A0A;
  --ink-2:      #16171A;
  --ink-3:      #2A2C30;
  --body:       #5C5E63;
  --muted:      #8E9096;
  --line:       #E4E2DE;
  --line-soft:  #EFEDE9;
  --line-dark:  rgba(255,255,255,.13);
  --bg:         #FFFFFF;
  --bg-soft:    #F6F4F1;
  --bg-dark:    #0A0A0A;

  /* Accent — deep, controlled red */
  --accent:     #9E1C20;
  --accent-2:   #7C1417;
  --accent-tint:#F7EDED;

  --container: 1280px;
  --gutter: 40px;

  --ease: cubic-bezier(.22,.61,.36,1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
          "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-feature-settings: "kern" 1, "liga" 1, "cv05" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--accent); color: #fff; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: 1560px; margin: 0 auto; padding: 0 var(--gutter); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.028em; line-height: 1.06; }

.display {
  font-size: clamp(2.6rem, 6.2vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 1.02;
}
h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3.05rem); }
h3 { font-size: 1.22rem; font-weight: 600; letter-spacing: -0.015em; line-height: 1.3; }

p { color: var(--body); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.6; color: var(--body); font-weight: 400; }

/* Micro label — the workhorse of the premium look */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.685rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  flex-shrink: 0;
}
.eyebrow.plain::before { display: none; }
.eyebrow.on-dark { color: rgba(255,255,255,.55); }

/* ============================================================
   SECTIONS
   ============================================================ */

.section { padding: clamp(72px, 9vw, 140px) 0; }
.section.soft { background: var(--bg-soft); }
.section.dark { background: var(--bg-dark); color: #fff; }
.section.dark p { color: rgba(255,255,255,.62); }
.section.tight { padding: clamp(56px, 6vw, 96px) 0; }

/* Editorial section header: label left, title + text right */
.sec-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding-bottom: 56px;
  align-items: start;
}
.sec-head .sec-title { max-width: 780px; }
.sec-head h2 { margin-bottom: 20px; }
.sec-head p { max-width: 620px; }
.sec-head.center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  padding-bottom: 0;
}
.sec-head.center p { margin-inline: auto; }
.sec-head.center .eyebrow { margin-bottom: 20px; }

/* ============================================================
   BUTTONS & LINKS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 34px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--accent); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-ghost-light { border-color: rgba(255,255,255,.34); color: #fff; }
.btn-ghost-light:hover { background: #fff; border-color: #fff; color: var(--ink); }
.btn-block { width: 100%; }

/* Understated arrow link */
.lnk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  transition: border-color .35s var(--ease), color .35s var(--ease);
}
.lnk .arw { transition: transform .35s var(--ease); }
.lnk:hover { color: var(--accent); border-color: var(--accent); }
.lnk:hover .arw { transform: translateX(5px); }
.lnk.light { color: #fff; border-color: rgba(255,255,255,.28); }
.lnk.light:hover { color: #fff; border-color: #fff; }

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 200;
  transition: width .1s linear;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 82px;
}
.logo {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.logo span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .38s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-phone {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.01em;
  transition: color .3s var(--ease);
}
.nav-phone:hover { color: var(--accent); }

.lang-switch { display: inline-flex; align-items: center; gap: 8px; }
.lang-switch button {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 4px 2px;
  transition: color .3s var(--ease);
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.active { color: var(--ink); }
.lang-switch .sep { color: var(--line); font-size: 0.7rem; }

.nav-cta .btn { padding: 14px 26px; font-size: 0.66rem; }

.burger {
  display: none;
  width: 34px; height: 34px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: min(88vh, 880px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-dark);
  color: #fff;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.4s var(--ease), transform 8s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,9,.92) 0%, rgba(8,8,9,.42) 42%, rgba(8,8,9,.12) 72%, rgba(8,8,9,.30) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-inner { padding: 0 0 clamp(56px, 7vw, 92px); max-width: 940px; }
.hero .eyebrow { margin-bottom: 26px; }
.hero .display { margin-bottom: 26px; max-width: 15ch; }
.hero .display em { font-style: normal; color: rgba(255,255,255,.5); }
.hero p {
  color: rgba(255,255,255,.72);
  max-width: 46ch;
  font-size: 1.02rem;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slide counter + progress ticks, bottom right */
.hero-nav {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(56px, 7vw, 92px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-count {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.6);
  font-variant-numeric: tabular-nums;
}
.hero-count b { color: #fff; font-weight: 600; }
.hero-ticks { display: flex; gap: 8px; }
.hero-ticks button {
  width: 30px; height: 2px;
  background: rgba(255,255,255,.26);
  position: relative;
  overflow: hidden;
  transition: background .3s var(--ease);
}
.hero-ticks button.active { background: rgba(255,255,255,.9); }

/* ============================================================
   STAT BAR
   ============================================================ */

.statbar { background: var(--bg-dark); color: #fff; }
.statbar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.statbar .stat {
  padding: 44px 32px;
  border-right: 1px solid var(--line-dark);
}
.statbar .stat:first-child { padding-left: 0; }
.statbar .stat:last-child { border-right: 0; padding-right: 0; }
.statbar .stat b {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.statbar .stat span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
  display: block;
}

/* ============================================================
   MANIFESTO / STATEMENT
   ============================================================ */

.statement { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.statement-body { max-width: 900px; }
.statement-body .big {
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  font-weight: 400;
  letter-spacing: -0.024em;
  line-height: 1.36;
  color: var(--ink);
  margin-bottom: 32px;
}
.statement-body .big b { font-weight: 600; }
.statement-body p { max-width: 62ch; }
.statement-body .lnk { margin-top: 36px; }

/* ============================================================
   INDEXED GRID  (replaces the old icon cards)
   ============================================================ */

.idx-grid { display: grid; gap: 0; }
.idx-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.idx-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.idx {
  border-top: 1px solid var(--line);
  padding: 32px 44px 8px 0;
  position: relative;
}
.idx-grid.cols-3 .idx + .idx,
.idx-grid.cols-4 .idx + .idx { padding-left: 44px; }
.idx-grid.cols-3 .idx + .idx::before,
.idx-grid.cols-4 .idx + .idx::before {
  content: "";
  position: absolute;
  left: 0; top: 32px; bottom: 8px;
  width: 1px;
  background: var(--line);
}
.idx-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 22px;
  font-variant-numeric: tabular-nums;
}
.idx h3 { margin-bottom: 14px; }
.idx p { font-size: 0.95rem; }
.idx .meta {
  display: block;
  margin-top: 20px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Dark variant */
.section.dark .idx { border-top-color: var(--line-dark); }
.section.dark .idx + .idx::before { background: var(--line-dark); }
.section.dark .idx h3 { color: #fff; }
.section.dark .idx .meta { color: rgba(255,255,255,.45); }

/* ============================================================
   FULL-BLEED FEATURE  (alternating image / text)
   ============================================================ */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
}
.feature.reverse .feature-media { order: 2; }
.feature-media { position: relative; overflow: hidden; background: var(--ink-2); }
.feature-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.feature:hover .feature-media img { transform: scale(1.04); }
.feature-media .tag {
  position: absolute;
  left: 28px; bottom: 26px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  line-height: 1.2;
}
.feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px);
  background: var(--bg);
}
.feature.on-soft .feature-body { background: var(--bg-soft); }
.feature-body .eyebrow { margin-bottom: 24px; }
.feature-body h2 { margin-bottom: 22px; }
.feature-body p { max-width: 52ch; }

.spec-list { margin-top: 34px; border-top: 1px solid var(--line); }
.spec-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--ink-3);
}
.spec-list li .n {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 22px;
  font-variant-numeric: tabular-nums;
}
.feature.on-soft .spec-list { border-color: rgba(0,0,0,.09); }
.feature.on-soft .spec-list li { border-color: rgba(0,0,0,.09); }

/* ============================================================
   VEHICLES  (flat editorial, no cards)
   ============================================================ */

.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 52px 36px; }

.vehicle { display: flex; flex-direction: column; }
.vehicle-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-2);
  margin-bottom: 22px;
}
.vehicle-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.vehicle:hover .vehicle-media img { transform: scale(1.045); }
.vehicle-tag {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 14px;
  line-height: 1;
}
.vehicle h3 { margin-bottom: 8px; }
.vehicle .specs {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.vehicle-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.vehicle-price {
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.vehicle-price small {
  display: block;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.vehicle-foot .lnk { border: 0; padding: 0; }

/* Filters — plain text, hairline underline */
.filters {
  display: flex;
  gap: 34px;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.filters button {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 8px;
  margin-bottom: -27px;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.filters button:hover { color: var(--ink); }
.filters button.active { color: var(--ink); border-bottom-color: var(--accent); }
.filters .count { margin-left: auto; font-size: 0.72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   FORMS
   ============================================================ */

.form-wrap { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.form-body { max-width: 780px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 32px; }
.form-grid .full { grid-column: 1 / -1; }

.field { position: relative; }
.field label {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 10px 0 13px;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color .35s var(--ease);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%238E9096' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 24px;
  cursor: pointer;
}
.field textarea { min-height: 108px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #B9BABE; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--accent); }

.consent {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--body);
  line-height: 1.55;
  cursor: pointer;
}
.consent input {
  appearance: none;
  width: 17px; height: 17px;
  border: 1px solid var(--line);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.consent input:checked { background: var(--accent); border-color: var(--accent); }
.consent input:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 1.5px;
  width: 4px; height: 9px;
  border: solid #fff;
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(43deg);
}
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 18px; line-height: 1.6; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  border-left: 2px solid var(--accent);
  background: var(--accent-tint);
  color: var(--ink);
  font-size: 0.9rem;
  padding: 16px 20px;
  margin-top: 26px;
}
.form-success.show { display: flex; }

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact-list { border-top: 1px solid var(--line); }
.contact-row { padding: 26px 0; border-bottom: 1px solid var(--line); }
.contact-row .k {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.contact-row .v { font-size: 1.02rem; color: var(--ink); display: block; transition: color .3s var(--ease); }
a.v:hover { color: var(--accent); }
.contact-row small { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 6px; }

.socials-row { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.social-lnk {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.social-lnk:hover { color: var(--ink); border-bottom-color: var(--accent); }
.site-footer .social-lnk { color: rgba(255,255,255,.55); }
.site-footer .social-lnk:hover { color: #fff; }

/* ============================================================
   APP SECTION
   ============================================================ */

.app-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.app-split h2 { margin: 22px 0; }
.store-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255,255,255,.25);
  padding: 13px 22px;
  color: #fff;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.store-badge:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.store-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge small { display: block; font-size: 0.6rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); line-height: 1.3; }
.store-badge b { display: block; font-size: 0.92rem; font-weight: 500; line-height: 1.3; }

.qr-panel { display: flex; align-items: center; gap: 26px; margin-top: 40px; }
.qr-panel .qr { background: #fff; padding: 12px; flex-shrink: 0; }
.qr-panel .qr img { width: 104px; height: 104px; }
.qr-panel small { font-size: 0.8rem; color: rgba(255,255,255,.55); max-width: 200px; line-height: 1.6; }

/* Phone mock — minimal */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: 272px;
  border: 1px solid rgba(255,255,255,.16);
  background: #101114;
  padding: 26px 20px;
}
.phone-top {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.phone-top span { color: var(--accent); }
.phone-row { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.phone-row:last-of-type { border-bottom: 0; }
.phone-row .pr-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.phone-row b { color: #fff; font-size: 0.86rem; font-weight: 500; }
.phone-row .p { color: #fff; font-size: 0.86rem; font-weight: 500; white-space: nowrap; }
.phone-row small { display: block; color: rgba(255,255,255,.42); font-size: 0.7rem; margin-top: 5px; }
.phone-cta {
  margin-top: 22px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: clamp(80px, 10vw, 148px) 0 clamp(64px, 8vw, 112px);
  position: relative;
}
.page-hero .eyebrow { margin-bottom: 26px; }
.page-hero h1 { margin-bottom: 24px; max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,.66); max-width: 56ch; }
.page-hero .display { max-width: 16ch; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer { background: var(--bg-dark); color: #fff; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr 1.1fr;
  gap: 48px;
  padding: clamp(56px, 7vw, 96px) 0 60px;
}
.footer-brand .logo { color: #fff; display: inline-block; margin-bottom: 24px; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: 0.9rem; max-width: 34ch; }
.footer-qr { display: flex; align-items: center; gap: 18px; margin-top: 34px; }
.footer-qr .qr { background: #fff; padding: 8px; flex-shrink: 0; }
.footer-qr .qr img { width: 72px; height: 72px; }
.footer-qr small { font-size: 0.74rem; color: rgba(255,255,255,.45); max-width: 150px; line-height: 1.6; }

.site-footer h4 {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 26px;
}
.footer-links { display: grid; gap: 14px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.72);
  transition: color .3s var(--ease);
  width: fit-content;
}
.footer-links a:hover { color: #fff; }

.newsletter p { color: rgba(255,255,255,.55); font-size: 0.86rem; margin-bottom: 22px; }
.newsletter-form { display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.24); }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  padding: 12px 0;
  font-size: 0.9rem;
  color: #fff;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.38); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 0 12px 18px;
  transition: color .3s var(--ease);
}
.newsletter-form button:hover { color: var(--accent); }
.newsletter .form-success {
  background: transparent;
  border-left-color: var(--accent);
  color: rgba(255,255,255,.8);
  font-size: 0.82rem;
  padding: 10px 16px;
  margin-top: 16px;
}
.newsletter .socials-row { margin-top: 30px; }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom .links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-bottom a { transition: color .3s var(--ease); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1180px) {
  :root { --gutter: 28px; }
  .nav-links { gap: 24px; }
  .nav-cta { gap: 16px; }
  .nav-phone { display: none; }
}

@media (max-width: 1024px) {
  .sec-head, .statement, .form-wrap { grid-template-columns: 1fr; gap: 24px; }
  .idx-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 44px; }
  .app-split, .contact-grid { grid-template-columns: 1fr; }
  .statbar .container { grid-template-columns: repeat(2, 1fr); }
  .statbar .stat { padding: 32px 24px; border-bottom: 1px solid var(--line-dark); }
  .statbar .stat:nth-child(1) { padding-left: 0; }
  .statbar .stat:nth-child(2) { border-right: 0; padding-right: 0; }
  .statbar .stat:nth-child(3) { padding-left: 0; border-right: 1px solid var(--line-dark); }
  .statbar .stat:nth-child(n+3) { border-bottom: 0; }
  .feature { grid-template-columns: 1fr; }
  .feature.reverse .feature-media { order: 0; }
  .feature-media { min-height: 380px; }
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 82px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 28px;
    border-bottom: 1px solid var(--line);
    display: none;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 17px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.95rem; }
  .nav-links a::after { display: none; }
  .burger { display: flex; }
  .nav-cta .btn { display: none; }
  .idx-grid.cols-3, .idx-grid.cols-4 { grid-template-columns: 1fr; }
  .idx-grid.cols-3 .idx + .idx,
  .idx-grid.cols-4 .idx + .idx { padding-left: 0; }
  .idx-grid.cols-3 .idx + .idx::before,
  .idx-grid.cols-4 .idx + .idx::before { display: none; }
  .idx { padding-right: 0; padding-bottom: 28px; }
  .form-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-nav { left: var(--gutter); right: auto; bottom: 26px; }
  .hero-inner { padding-bottom: 92px; }
}

@media (max-width: 600px) {
  .vehicle-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .statbar .container { grid-template-columns: 1fr; }
  .statbar .stat { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .statbar .stat:last-child { border-bottom: 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .filters { gap: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}
