/* ============================================================
   MAXUS KENYA — Global Stylesheet
   Brand: Black/White core, Blue #1E5FC8 accent
   Font: Barlow Condensed (display) + Barlow (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800;900&family=Fraunces:opsz,wght@9..144,400..600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:      #0D0D0D;
  --white:      #FFFFFF;
  --off-white:  #F6F6F4;
  --blue:       #0EA5E9;
  --blue-dark:  #0C4A6E;
  --blue-mid:   #38BDF8;
  --orange:     #FF7852;
  --gray-100:   #F2F2F0;
  --gray-200:   #E0E0DC;
  --gray-300:   #C9C9C2;
  --gray-400:   #999990;
  --gray-600:   #555550;
  --gray-800:   #202020;
  --gray-900:   #141414;
  --wa-green:   #25D366;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --nav-h: 80px;
  --section-pad: clamp(64px, 8vw, 120px);
  --container: 1280px;
  --radius: 4px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.t-hero {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.t-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.t-subheadline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.t-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.t-body { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.7; }
.t-body-sm { font-size: 14px; line-height: 1.6; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--gray { background: var(--gray-100); }
.section--blue { background: var(--blue); color: var(--white); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,165,233,0.4);
}
.btn--wa {
  background: var(--wa-green);
  color: var(--white);
  border: 2px solid var(--wa-green);
}
.btn--wa:hover {
  background: #1ebe5c;
  border-color: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn--outline-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.1);
}
.nav > .container { height: 100%; }
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s var(--ease-out);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__wa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.nav__wa:hover { background: #1ebe5c; transform: translateY(-1px); }
.nav__wa svg { width: 16px; height: 16px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(16px);
  padding: 24px clamp(20px,4vw,60px) 40px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--blue); }
.nav__mobile .mobile-wa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 16px;
  margin-top: 24px;
  justify-content: center;
}
.nav__mobile .mobile-wa svg { width: 20px; height: 20px; }

/* ── CREDIBILITY BAR ─────────────────────────────────────── */
.cred-bar {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 0;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cred-bar__track {
  display: flex;
  gap: 0;
  animation: marquee 55s linear infinite;
  white-space: nowrap;
}
.cred-bar__track:hover { animation-play-state: paused; }
.cred-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.cred-bar__sep {
  color: rgba(14,165,233,0.6);
  font-size: 12px;
}
@media (prefers-reduced-motion: reduce) {
  .cred-bar__track { animation: none; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vh, 100px);
  overflow: hidden;
  background: var(--black);
}
.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  width: 100%; height: 100%;
  opacity: 0.55;
  transition: opacity 0.8s ease;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.2) 0%,
    rgba(13,13,13,0.1) 40%,
    rgba(13,13,13,0.75) 75%,
    rgba(13,13,13,0.95) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  margin-bottom: 20px;
}
.hero__eyebrow span { width: 32px; height: 2px; background: var(--blue); display: block; }
.hero__title {
  color: var(--white);
  max-width: 900px;
  margin-bottom: 28px;
}
.hero__title em,
.t-headline em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--blue);
}
.hero__subtitle {
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 40px;
  font-size: clamp(15px,1.3vw,18px);
  line-height: 1.65;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: clamp(20px,4vw,60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-header { margin-bottom: clamp(40px, 5vw, 72px); }
.section-header--center { text-align: center; }
.section-header .t-label { color: var(--blue); margin-bottom: 12px; }
.section-header .t-label--white { color: rgba(255,255,255,0.5); }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 560px;
  color: var(--gray-600);
  font-size: clamp(15px,1.2vw,17px);
}
.section-header--center p { margin: 0 auto; }
.section--dark .section-header p { color: rgba(255,255,255,0.6); }

/* ── VEHICLE CARDS ───────────────────────────────────────── */
.vehicles { padding: var(--section-pad) 0; background: var(--black); }
.vehicles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.vehicle-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
}
.vehicle-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.vehicle-card:hover .vehicle-card__img { transform: scale(1.04); }
.vehicle-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.2) 50%, transparent 100%);
  transition: background 0.4s;
}
.vehicle-card:hover .vehicle-card__overlay {
  background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.35) 60%, rgba(14,165,233,0.1) 100%);
}
.vehicle-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px clamp(24px,3vw,48px);
}
.vehicle-card__tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 4px 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 12px;
}
.vehicle-card__name {
  font-family: var(--font-display);
  font-size: clamp(36px,4vw,56px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 8px;
}
.vehicle-card__desc {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  margin-bottom: 20px;
  max-width: 280px;
}
.vehicle-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.vehicle-card__cta svg { width: 16px; height: 16px; transition: transform 0.2s; }
.vehicle-card:hover .vehicle-card__cta { gap: 14px; }
.vehicle-card:hover .vehicle-card__cta svg { transform: translateX(4px); }

/* ── TRUST SECTION ───────────────────────────────────────── */
.trust { background: var(--off-white); }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 56px;
}
.trust__stat {
  background: var(--white);
  padding: clamp(28px,3vw,44px) clamp(20px,2.5vw,36px);
}
.trust__stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px,4vw,60px);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.trust__stat-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.trust__stat-note { font-size: 13px; color: var(--gray-400); }
.trust__components {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.trust__component {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.trust__component::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--blue);
}
.trust__component-brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.trust__component-desc { font-size: 14px; color: var(--gray-600); line-height: 1.5; }
.trust__component-desc strong { color: var(--black); }

/* ── SPEC GRID ───────────────────────────────────────────── */
.specs { background: var(--black); }
.specs__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,80px);
  align-items: center;
}
.specs__visual { position: relative; }
.specs__img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}
.specs__badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  text-align: center;
}
.specs__badge-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.specs__badge-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}
.specs__list { display: flex; flex-direction: column; gap: 0; }
.specs__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.specs__item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.specs__key {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.specs__val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-align: right;
}

/* ── HIGHLIGHT BAND ──────────────────────────────────────── */
.highlight-band {
  background: var(--blue);
  padding: clamp(60px,7vh,100px) 0;
}
.highlight-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,80px);
  align-items: center;
}
.highlight-band__img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 16/9;
}
.highlight-band__content .t-label { color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.highlight-band__content h2 { color: var(--white); margin-bottom: 16px; }
.highlight-band__content p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: clamp(15px,1.2vw,17px); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--off-white); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--gray-200);
}
.faq__item:first-child { border-top: 1px solid var(--gray-200); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(16px,1.5vw,20px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--black);
  background: none;
  cursor: pointer;
}
.faq__icon {
  width: 28px; height: 28px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--blue);
}
.faq__item.open .faq__icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq__a {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  padding-bottom: 24px;
  display: none;
}
.faq__item.open .faq__a { display: block; }

/* ── CONTACT / FORM ──────────────────────────────────────── */
.contact-form { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; justify-content: center; }
}
.form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.form__input, .form__select, .form__textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__select { appearance: none; cursor: pointer; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(32px,4vw,60px);
  margin-bottom: 48px;
}
.footer__brand .nav__logo-text { font-size: 20px; margin-bottom: 16px; }
.footer__brand p { font-size: 14px; line-height: 1.7; max-width: 280px; margin-top: 12px; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 14px;
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 14px; }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 14px; transition: color 0.2s; }
.footer__bottom-links a:hover { color: var(--white); }

/* ── STICKY WA ───────────────────────────────────────────── */
.wa-sticky {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
}
.wa-sticky:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.wa-sticky svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-sticky__text { display: none; }
@media (min-width: 640px) {
  .wa-sticky { padding: 14px 24px; }
  .wa-sticky__text { display: block; }
}
/* ── ICON CHIP — fine-line SVG icons (replaces emoji) ────── */
.icon-chip {
  width: 46px; height: 46px;
  border: 1px solid rgba(14,165,233,0.35);
  border-radius: 10px;
  background: rgba(14,165,233,0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-chip svg {
  width: 22px; height: 22px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── ACCESSIBILITY — visible focus ───────────────────────── */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ── CARDS ROW ───────────────────────────────────────────── */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: clamp(24px,2.5vw,40px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(14,165,233,0.1);
}
.card__icon {
  width: 48px; height: 48px;
  background: rgba(14,165,233,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.card p { font-size: 15px; color: var(--gray-400); line-height: 1.65; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 85svh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  padding-bottom: clamp(60px,8vh,100px);
  background: var(--black);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: 0.5;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.4) 60%, rgba(13,13,13,0.7) 100%);
}
.page-hero__content { position: relative; z-index: 2; width: 100%; }

/* ── PROOF BAR ───────────────────────────────────────────── */
.proof-bar {
  background: var(--blue-dark);
  padding: 20px 0;
}
.proof-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.proof-bar__item {
  padding: 0 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.proof-bar__item:last-child { border-right: none; }
.proof-bar__num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.proof-bar__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery__grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: opacity 0.3s;
}
.gallery__grid img:hover { opacity: 0.85; }
.gallery__grid .gallery__feat {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
}

/* ── SAFETY BADGES ───────────────────────────────────────── */
.safety-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.safety-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 20px;
}
.safety-badge__star { color: #FFB800; font-size: 18px; letter-spacing: 1px; }
.safety-badge__info {}
.safety-badge__body {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.safety-badge__sub { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── FEATURE LIST ────────────────────────────────────────── */
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.feature-item__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 6px;
  flex-shrink: 0;
}
.feature-item__text { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.5; }
.feature-item__text strong { color: var(--white); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .specs__layout { grid-template-columns: 1fr; }
  .specs__visual { order: -1; }
  .cards-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .vehicles__grid { grid-template-columns: 1fr; }
  .vehicle-card { aspect-ratio: 3/2; }
  .trust__components { grid-template-columns: 1fr; }
  .highlight-band__inner { grid-template-columns: 1fr; }
  .cards-row { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .feature-list { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid .gallery__feat { grid-column: 1 / 3; }
  .proof-bar__item { padding: 8px 20px; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .proof-bar__inner { justify-content: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM DESIGN UPGRADE
   Hero brightness · Editorial vehicle cards · Trust anchor
   Model-split sections · Line-reveal motion
   ═══════════════════════════════════════════════════════════ */

/* ── FIX: Hero image was at 0.55 — car barely visible ────── */
.hero__bg { opacity: 0.88; }
.page-hero__bg { opacity: 0.82; }

/* ── FIX: Overlay — bottom-only, left vignette for text ──── */
.hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.0)  0%,
    rgba(13,13,13,0.0) 28%,
    rgba(13,13,13,0.55) 62%,
    rgba(13,13,13,0.97) 100%
  );
}
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0) 55%);
  pointer-events: none;
}
.page-hero__overlay {
  background: linear-gradient(115deg, rgba(13,13,13,0.82) 0%, rgba(13,13,13,0.28) 55%, rgba(13,13,13,0.6) 100%);
}

/* ── HERO: Line-reveal — text slides up from clip ────────── */
.hero-line { display: block; overflow: hidden; }
.hero-line-inner {
  display: block;
  transform: translateY(110%);
  animation: heroLine 1s var(--ease-out) forwards;
}
.hero__title .hero-line:nth-child(1) .hero-line-inner { animation-delay: 0.0s; }
.hero__title .hero-line:nth-child(2) .hero-line-inner { animation-delay: 0.14s; }
.hero__title .hero-line:nth-child(3) .hero-line-inner { animation-delay: 0.28s; }
.hero__title .hero-line:nth-child(4) .hero-line-inner { animation-delay: 0.42s; }
@keyframes heroLine { to { transform: translateY(0); } }

/* ── HERO: Stats bar — editorial feel ────────────────────── */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 14px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease-out) 0.65s forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.hero__stat-item {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding-right: 18px;
  margin-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.18);
  line-height: 1.6;
}
.hero__stat-item:last-child { border-right: none; }
@media (max-width: 480px) {
  .hero__stat-item { font-size: 11px; padding-right: 11px; margin-right: 11px; }
}

/* ── VEHICLE CARDS: Editorial — giant name straddles image ─ */
.vehicle-card--editorial {
  overflow: visible;
  aspect-ratio: auto;
  background: var(--black);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.vehicle-card--editorial .vc-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  flex-shrink: 0;
}
.vehicle-card--editorial .vc-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.vehicle-card--editorial:hover .vc-img { transform: scale(1.04); }
.vc-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(13,13,13,0.6) 75%, var(--black) 100%);
  pointer-events: none;
}
.vehicle-card--editorial .vc-body {
  background: var(--black);
  padding: 0 clamp(20px,3vw,44px) 48px;
  margin-top: -52px;
  position: relative;
  z-index: 2;
}
.vc-name {
  font-family: var(--font-display);
  font-size: clamp(88px, 11vw, 140px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.9;
  margin-bottom: 14px;
}
.vc-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 4px 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 10px;
}
.vc-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}
.vc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s, gap 0.2s;
}
.vc-cta svg { width: 14px; height: 14px; transition: transform 0.2s; }
.vehicle-card--editorial:hover .vc-cta { color: var(--white); gap: 14px; }
.vehicle-card--editorial:hover .vc-cta svg { transform: translateX(4px); }
.vehicles__grid .vehicle-card--editorial:first-child {
  border-right: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 768px) {
  .vehicles__grid .vehicle-card--editorial:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ── TRUST ANCHOR — the 2,000,000+ moment ────────────────── */
.trust-anchor {
  background: var(--black);
  padding: clamp(80px,10vh,140px) 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.trust-anchor__inner {
  display: flex;
  align-items: center;
  gap: clamp(28px,5vw,80px);
}
.trust-anchor__num {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.015em;
  flex-shrink: 0;
}
.trust-anchor__divider {
  width: 1px;
  height: 90px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.trust-anchor__label {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  max-width: 360px;
  line-height: 1.25;
}
.trust-anchor__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-anchor__pill {
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 640px) {
  .trust-anchor__inner { flex-direction: column; align-items: flex-start; }
  .trust-anchor__divider { width: 40px; height: 1px; }
}

/* ── MODEL SPLIT — D90 / T60 full-height dramatic layout ─── */
.model-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(560px, 75vh, 800px);
}
.model-split__visual {
  position: relative;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.model-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease-out);
  padding: 0;
}
.model-split:hover .model-split__visual img { transform: scale(1.03); }
.model-split__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px,6vw,96px) clamp(32px,5vw,72px);
}
.model-split__panel--dark { background: var(--black); }
.model-split__panel--navy { background: var(--blue-dark); }
.model-split__model-name {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin-bottom: 24px;
}
.model-split__model-name em {
  display: block;
  font-style: normal;
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--blue);
  line-height: 2.2;
  text-transform: uppercase;
}
.model-split__panel--navy .model-split__model-name em { color: rgba(255,255,255,0.4); }
.model-split__desc {
  color: rgba(255,255,255,0.6);
  font-size: clamp(14px,1.1vw,16px);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}
.t60-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.t60-stat__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}
.t60-stat__unit {
  font-size: 0.42em;
  font-weight: 600;
  vertical-align: super;
  letter-spacing: 0;
}
.t60-stat__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
@media (max-width: 768px) {
  .model-split { grid-template-columns: 1fr; }
  .model-split__visual { aspect-ratio: 16/9; position: relative; min-height: auto; }
  .model-split__visual img { position: absolute; }
}

/* ── IMPROVED SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ── UTILITIES ───────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   FEATURE ADDITIONS: Calculator · Trade-in · Compare · Service
   ═══════════════════════════════════════════════════════════ */

/* ── FINANCING CALCULATOR ────────────────────────────────── */
.calc-section { background: var(--off-white); }
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(48px,6vw,96px);
  align-items: start;
}
.calc-intro .t-label { color: var(--blue); margin-bottom: 12px; }
.calc-intro h2 { margin-bottom: 16px; }
.calc-intro p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.calc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.calc-fields {
  padding: clamp(24px,3vw,40px);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.calc-field {}
.calc-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  display: block;
  margin-bottom: 10px;
}
.calc-value-display {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
}
.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--gray-200);
  outline: none;
  cursor: pointer;
  margin-top: 8px;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(14,165,233,0.3);
}
.calc-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.calc-tab {
  padding: 8px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.calc-tab.active, .calc-tab:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.calc-result {
  padding: clamp(24px,3vw,40px);
  background: var(--black);
}
.calc-monthly { margin-bottom: 24px; }
.calc-monthly-num {
  font-family: var(--font-display);
  font-size: clamp(36px,4vw,56px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.calc-monthly-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.calc-breakdown {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-b-item {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.calc-b-item span:first-child { color: rgba(255,255,255,0.45); text-transform: uppercase; font-size: 13px; letter-spacing: 0.08em; }
.calc-b-item span:last-child { color: var(--white); }
.calc-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .calc-layout { grid-template-columns: 1fr; }
}

/* ── TRADE-IN SECTION ────────────────────────────────────── */
.tradein-section { background: var(--white); }
.tradein-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px,6vw,96px);
  align-items: start;
}
.tradein-layout .t-label { color: var(--blue); margin-bottom: 12px; }
.tradein-layout h2 { margin-bottom: 16px; }
.tradein-layout > div > p { font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.tradein-form { display: flex; flex-direction: column; gap: 16px; }
@media (max-width: 768px) {
  .tradein-layout { grid-template-columns: 1fr; }
}

/* ── AFTERSALES / SERVICE ────────────────────────────────── */
.aftersales-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.aftersales-card {
  background: rgba(255,255,255,0.04);
  padding: clamp(28px,3vw,44px) clamp(20px,2.5vw,32px);
  transition: background 0.2s;
}
.aftersales-card:hover { background: rgba(14,165,233,0.1); }
.aftersales-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.aftersales-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}
.aftersales-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 16px; }
.aftersales-card a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  transition: color 0.2s;
}
.aftersales-card a:hover { color: var(--white); }
@media (max-width: 768px) {
  .aftersales-grid { grid-template-columns: 1fr; }
}

/* ── COMPARISON TABLE ────────────────────────────────────── */
.compare-section { background: var(--white); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}
.compare-table th, .compare-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-family: var(--font-display);
}
.compare-table thead th {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 24px;
}
.compare-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.compare-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.compare-table thead th.col-maxus {
  background: var(--blue);
  color: var(--white);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td.col-key {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  background: var(--gray-100);
  width: 200px;
}
.compare-table td.col-maxus {
  background: rgba(14,165,233,0.05);
  color: var(--black);
  font-weight: 700;
  font-size: 17px;
}
.compare-table td.col-comp {
  color: var(--gray-600);
  font-size: 17px;
}
.compare-win {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 800;
}
.compare-win::before {
  content: '✓';
  font-size: 14px;
  background: var(--blue);
  color: var(--white);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.compare-disclaimer {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 16px;
  line-height: 1.6;
}
.compare-tabs {
  display: flex;
  gap: 4px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 32px;
}
.compare-tab {
  padding: 10px 24px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.compare-tab.active {
  background: var(--black);
  color: var(--white);
}
.compare-panel { display: none; }
.compare-panel.active { display: block; }
@media (max-width: 768px) {
  .compare-table { font-size: 14px; display: block; overflow-x: auto; }
  .compare-table td.col-key { min-width: 120px; }
}

/* ── BROCHURE DOWNLOAD ───────────────────────────────────── */
.brochure-section {
  background: var(--blue-dark);
  padding: clamp(64px,8vh,100px) 0;
}
.brochure-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px,6vw,96px);
  align-items: center;
}
.brochure-inner h2 { color: var(--white); margin-bottom: 16px; }
.brochure-inner p { color: rgba(255,255,255,0.65); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.brochure-form { display: flex; flex-direction: column; gap: 14px; }
.brochure-form .form__input, .brochure-form .form__select {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.brochure-form .form__input::placeholder { color: rgba(255,255,255,0.35); }
.brochure-form .form__label { color: rgba(255,255,255,0.55); }
.brochure-form .form__select option { background: var(--black); color: var(--white); }
@media (max-width: 768px) {
  .brochure-inner { grid-template-columns: 1fr; }
}

/* ── NAV CTA — bordered Enquire button (desktop) ─────────── */
@media (max-width: 640px) {
  .nav__cta { display: none; }
}

/* ── GRAIN TEXTURE OVERLAY — premium feel ────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── 3D CARD DEPTH — interactive, not paper ──────────────── */
.vehicle-card--editorial,
.aftersales-card,
.use-case,
.why-point,
.calc-card {
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s cubic-bezier(0.23,1,0.32,1) !important;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Button depth on hover */
.btn {
  transition: transform 0.25s cubic-bezier(0.23,1,0.32,1), background 0.2s, box-shadow 0.25s !important;
  will-change: transform;
}
.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}
.btn--wa:hover {
  box-shadow: 0 12px 32px rgba(37,211,102,0.25);
}

/* Credibility bar shimmer */
.cred-bar__item {
  transition: color 0.3s;
}
.cred-bar__item:hover { color: var(--white); }

/* Spec items */
.specs__item {
  transition: background 0.2s, padding 0.2s;
  border-radius: 4px;
}
.specs__item:hover {
  background: rgba(255,255,255,0.04);
  padding-left: 10px;
}

/* ── WARRANTY STICKY BADGE — OLD (hidden, replaced by toast) */
.warranty-badge {
  position: fixed;
  right: 0;
  top: 42%;
  transform: translateY(-50%);
  z-index: 88;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 14px 16px 14px 18px;
  width: 56px;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  box-shadow: -4px 0 20px rgba(0,0,0,0.35);
  cursor: default;
  white-space: nowrap;
}
.warranty-badge:hover {
  width: 220px;
  box-shadow: -6px 0 32px rgba(0,0,0,0.5);
}
.warranty-badge__icon {
  font-size: 22px;
  display: block;
  line-height: 1;
  margin-bottom: 0;
  flex-shrink: 0;
}
.warranty-badge__inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.warranty-badge__details {
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s 0.1s, transform 0.25s 0.1s;
  min-width: 140px;
}
.warranty-badge:hover .warranty-badge__details {
  opacity: 1;
  transform: translateX(0);
}
.warranty-badge__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.warranty-badge__sub {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  line-height: 1.5;
}
.warranty-badge__sub span {
  display: block;
  color: var(--blue);
}
@media (max-width: 768px) {
  .warranty-badge { display: none; }
}

/* ── WARRANTY TOAST — scroll-triggered popup ─────────────── */
.warranty-toast {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 950;
  width: 380px;
  background: var(--black);
  border: 1px solid rgba(14,165,233,0.3);
  border-radius: 16px;
  padding: 28px 28px 24px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(14,165,233,0.1);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
  pointer-events: none;
}
.warranty-toast.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.warranty-toast__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.warranty-toast__close:hover { color: var(--white); }
.warranty-toast__icon {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.warranty-toast__body { flex: 1; }
.warranty-toast__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}
.warranty-toast__sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gray-300);
  margin-bottom: 20px;
  line-height: 1.4;
}
.warranty-toast__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(14,165,233,0.15);
  border: 1px solid rgba(14,165,233,0.3);
  border-radius: 8px;
  padding: 12px 20px;
  transition: background 0.2s, border-color 0.2s;
}
.warranty-toast__cta:hover {
  background: rgba(14,165,233,0.25);
  border-color: var(--blue);
}
@media (max-width: 768px) {
  .warranty-toast {
    bottom: 80px;
    right: 12px;
    left: 12px;
    width: auto;
  }
}

/* ── INTERACTIVE MAP ─────────────────────────────────────── */
.map-section {
  background: var(--black);
  position: relative;
}
.map-section__header {
  padding: clamp(40px,5vh,64px) 0 0;
  text-align: center;
}
.map-ui {
  display: grid;
  grid-template-columns: 340px 1fr;
  height: clamp(500px, 70vh, 700px);
  margin-top: 32px;
}
.map-sidebar {
  background: rgba(255,255,255,0.03);
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.map-sidebar__header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.map-sidebar__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.map-sidebar__sub {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.map-station-list {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.map-station-list::-webkit-scrollbar { width: 4px; }
.map-station-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
.map-station-item {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.map-station-item:hover, .map-station-item.active {
  background: rgba(14,165,233,0.08);
}
.map-station-item.active { border-left: 2px solid var(--blue); }
.map-station-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 5px;
}
.map-station-dot--main { background: var(--white); width: 10px; height: 10px; }
.map-station-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.map-station-city {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}
.map-station-type {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 4px;
}
.map-canvas {
  position: relative;
  z-index: 1;
}
/* Leaflet overrides for dark theme */
.leaflet-container {
  background: #0a0a0f !important;
  font-family: var(--font-display) !important;
}
.leaflet-popup-content-wrapper {
  background: var(--black) !important;
  border: 1px solid rgba(14,165,233,0.25) !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6) !important;
  color: var(--white) !important;
}
.leaflet-popup-tip { background: var(--black) !important; }
.leaflet-popup-content { color: var(--white) !important; }
.leaflet-bar a {
  background: var(--black) !important;
  border-color: rgba(255,255,255,0.1) !important;
  color: var(--white) !important;
}
.leaflet-bar a:hover { background: rgba(14,165,233,0.15) !important; }
.map-gap-note {
  text-align: center;
  padding: 12px 24px;
  font-size: 13px;
  color: rgba(255,184,0,0.7);
  background: rgba(255,184,0,0.05);
  border-top: 1px solid rgba(255,184,0,0.15);
}
@media (max-width: 768px) {
  .map-ui { grid-template-columns: 1fr; grid-template-rows: 280px 1fr; }
  .map-sidebar { order: 2; border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .map-canvas { order: 1; }
}

/* ── GRAND OPENING BANNER ────────────────────────────────── */
.grand-opening {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.grand-opening__img {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
}
.grand-opening__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.7) 0%, rgba(13,13,13,0.2) 60%, rgba(13,13,13,0) 100%);
  display: flex;
  align-items: center;
}
.grand-opening__content {
  padding: clamp(32px,5vw,80px);
  max-width: 520px;
}
.grand-opening__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.grand-opening__label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--blue);
}
.grand-opening__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-bottom: 16px;
}
.grand-opening__date {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.grand-opening__venue {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .grand-opening__img { max-height: 320px; }
  .grand-opening__overlay { background: rgba(13,13,13,0.65); }
}

.text-blue { color: var(--blue); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-400); }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.gap-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,184,0,0.12);
  border: 1px solid rgba(255,184,0,0.3);
  color: #FFB800;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

/* ── QUICK-ACTION PANEL — creative fixed right sidebar ───────
   Inspired by Isuzu but dark glass / electric blue aesthetic.
   Collapses to a slim tab, expands on hover/click.
────────────────────────────────────────────────────────────── */
.qap {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.qap.qap--visible {
  opacity: 1;
  pointer-events: all;
}

/* Vertical trigger tab */
.qap__tab {
  width: 36px;
  background: rgba(14,165,233,0.9);
  backdrop-filter: blur(8px);
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  gap: 0;
  padding: 18px 0;
  transition: background 0.2s, width 0.2s;
  user-select: none;
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.qap__tab:hover { background: var(--blue); }
.qap__tab svg {
  width: 16px; height: 16px;
  margin-bottom: 8px;
  transform: rotate(90deg);
  flex-shrink: 0;
}

/* Expandable panel */
.qap__panel {
  width: 0;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(14,165,233,0.2);
  border-left: none;
  border-radius: 0 12px 12px 0;
  box-shadow: 8px 0 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(14,165,233,0.08) inset;
}
.qap.qap--open .qap__panel { width: 270px; }

.qap__panel-inner {
  width: 270px;
  padding: 20px 0 8px;
}

/* Panel header */
.qap__header {
  padding: 0 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qap__header-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.qap__close {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  transition: color 0.2s, background 0.2s;
  border: none;
}
.qap__close:hover { color: var(--white); background: rgba(255,255,255,0.12); }

/* Action items */
.qap__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 22px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  position: relative;
  overflow: hidden;
}
.qap__item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--blue);
  transform: scaleY(0);
  transition: transform 0.2s var(--ease-out);
}
.qap__item:hover { background: rgba(14,165,233,0.08); }
.qap__item:hover::before { transform: scaleY(1); }

.qap__item-icon {
  width: 40px; height: 40px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.qap__item:hover .qap__item-icon {
  background: rgba(14,165,233,0.2);
  border-color: rgba(14,165,233,0.4);
}
.qap__item-icon svg { width: 20px; height: 20px; stroke: var(--blue); }

.qap__item-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  white-space: nowrap;
}
.qap__item:hover .qap__item-text { color: var(--white); }

.qap__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 4px 20px;
}

/* WA item special */
.qap__item--wa .qap__item-icon {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.25);
}
.qap__item--wa:hover .qap__item-icon {
  background: rgba(37,211,102,0.2);
  border-color: rgba(37,211,102,0.4);
}
.qap__item--wa .qap__item-icon svg { stroke: var(--wa-green); }
.qap__item--wa:hover .qap__item-text { color: var(--wa-green); }

/* ── HEADER: serif wordmark + bordered enquire (all pages) ── */
.nav__logo svg { display: none; }
.nav__logotype {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #fff;
}
.nav__logotype b { font-weight: 600; color: var(--blue); }
.nav__links a { position: relative; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width 0.4s cubic-bezier(0.2,1,0.3,1);
}
.nav__links a:hover::after { width: 100%; }
.nav__enquire {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: transparent;
  border: 1px solid var(--blue);
  padding: 11px 24px;
  border-radius: 2px;
  transition: background 0.35s, color 0.35s;
}
.nav__enquire svg { display: none; }
.nav__enquire:hover { background: var(--blue); color: #fff; }


/* ═══════════════════════════════════════════════════════════
   LUXURY PASS — showroom-light gradients, champagne metallics,
   sheen micro-motion, depth on every dark surface
   ═══════════════════════════════════════════════════════════ */

:root {
  --champagne:     #C9C0AE;
  --champagne-dim: rgba(201, 192, 174, 0.55);
  --ink-1: #0B0B0D;
  --ink-2: #101014;
  --ink-3: #0A0A0C;
}

/* ── DARK SURFACES: showroom lighting instead of flat black ── */
.section--dark,
.vehicles,
.trust-anchor,
.fleet-teaser,
.specs {
  background:
    radial-gradient(1100px 520px at 50% -8%, rgba(14,165,233,0.075), transparent 62%),
    radial-gradient(800px 460px at 88% 108%, rgba(14,165,233,0.045), transparent 60%),
    linear-gradient(180deg, var(--ink-1) 0%, var(--ink-2) 48%, var(--ink-3) 100%);
}
.model-split__panel--dark {
  background:
    radial-gradient(720px 420px at 18% 0%, rgba(14,165,233,0.08), transparent 60%),
    linear-gradient(165deg, var(--ink-2) 0%, var(--ink-1) 60%, var(--ink-3) 100%);
}
.model-split__panel--navy,
.brochure-section {
  background:
    radial-gradient(880px 500px at 18% -5%, rgba(56,189,248,0.14), transparent 58%),
    radial-gradient(600px 400px at 100% 110%, rgba(3,20,32,0.8), transparent 70%),
    linear-gradient(160deg, #0E5680 0%, #0C4A6E 48%, #08334D 100%);
}
.fleet-block--content {
  background:
    radial-gradient(560px 360px at 20% 0%, rgba(255,255,255,0.14), transparent 58%),
    linear-gradient(150deg, #0EA5E9 0%, #0B7BC0 55%, #095E93 100%);
}
.footer {
  background: linear-gradient(180deg, var(--ink-3) 0%, #08080A 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cred-bar { background: var(--ink-1); }

/* ── HAIRLINES: gradient edges instead of hard borders ─────── */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent 5%, rgba(14,165,233,0.55) 50%, transparent 95%);
}
.trust-anchor {
  border-top: none;
  border-bottom: none;
  position: relative;
}
.trust-anchor::before,
.trust-anchor::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}
.trust-anchor::before { top: 0; }
.trust-anchor::after { bottom: 0; }

/* ── CHAMPAGNE METALLIC ACCENTS ────────────────────────────── */
.trust-anchor__pill {
  border-color: rgba(201,192,174,0.22);
  color: rgba(201,192,174,0.78);
  background: rgba(201,192,174,0.04);
}
.hero__eyebrow { color: var(--champagne); }
.hero__eyebrow span { background: var(--champagne); }
.opening-strip__label { color: var(--champagne); }
.opening-strip__divider { background: rgba(201,192,174,0.35); }
.specs__key { color: var(--champagne-dim); }
.t60-stat__label { color: var(--champagne-dim); }
.hero__stat-item { color: rgba(201,192,174,0.6); border-right-color: rgba(255,255,255,0.14); }

/* ── BUTTONS: 1px precision + light-sweep sheen ────────────── */
.btn {
  border-width: 1px !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -80%;
  width: 55%;
  z-index: -1;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  transform: skewX(-18deg);
  transition: left 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
}
.btn--wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.22); }
.btn--primary:hover { box-shadow: 0 8px 24px rgba(14,165,233,0.28); }
.btn--outline { border-color: rgba(255,255,255,0.28); }
.btn--outline:hover { border-color: rgba(201,192,174,0.65); background: rgba(255,255,255,0.05); }
.wa-sticky { box-shadow: 0 10px 28px rgba(0,0,0,0.4); }

/* ── CARDS: depth, lift, cursor spotlight ──────────────────── */
.why-card, .aftersales-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.23,1,0.32,1),
              border-color 0.35s ease,
              box-shadow 0.45s cubic-bezier(0.23,1,0.32,1);
}
.why-card {
  background: linear-gradient(170deg, #141418 0%, #0F0F12 100%) !important;
}
.why-card:hover, .aftersales-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14,165,233,0.35) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.has-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.065), transparent 65%);
}
.has-spotlight:hover::before { opacity: 1; }
.has-spotlight > * { position: relative; z-index: 1; }
.icon-chip {
  background: linear-gradient(160deg, rgba(14,165,233,0.14), rgba(14,165,233,0.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ── MICRO-MOTION: blur-to-sharp reveals, FAQ ease ─────────── */
.reveal {
  filter: blur(7px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
}
.reveal.in-view { filter: blur(0); }
.fade-up {
  filter: blur(7px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out), filter 0.75s var(--ease-out);
}
.fade-up.visible { filter: blur(0); }
.faq__item.open .faq__a { animation: faqReveal 0.4s var(--ease-out); }
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.nav { backdrop-filter: blur(12px) saturate(150%); -webkit-backdrop-filter: blur(12px) saturate(150%); }

/* ── FINISH: selection, scrollbar, breathing room ──────────── */
::selection { background: rgba(14,165,233,0.35); color: #fff; }
html { scrollbar-color: #26262C var(--ink-1); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink-1); }
::-webkit-scrollbar-thumb { background: #26262C; border-radius: 8px; border: 2px solid var(--ink-1); }
::-webkit-scrollbar-thumb:hover { background: #34343C; }
:root { --section-pad: clamp(72px, 9vw, 140px); }

@media (prefers-reduced-motion: reduce) {
  .btn::after { display: none; }
  .has-spotlight::before { display: none; }
  .reveal, .fade-up { filter: none; transition-duration: 0.01s; }
  .why-card:hover, .aftersales-card:hover { transform: none; }
}

/* ── LIQUID GLASS HEADER — content flows beneath on scroll ── */
.nav {
  background: linear-gradient(180deg, rgba(16,16,20,0.78), rgba(10,10,13,0.62));
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 1px 0 rgba(0,0,0,0.25);
  transition: background 0.45s ease, box-shadow 0.45s ease;
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.045) 46%, rgba(255,255,255,0.02) 55%, transparent 68%),
    radial-gradient(120% 200% at 50% -80%, rgba(255,255,255,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.nav.scrolled {
  background: linear-gradient(180deg, rgba(20,20,26,0.55), rgba(10,10,14,0.38));
  backdrop-filter: blur(28px) saturate(200%) brightness(1.07);
  -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 14px 44px rgba(0,0,0,0.38);
}
.nav.scrolled::before { opacity: 1; }
.nav__mobile {
  background: rgba(12,12,16,0.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
}

/* ── SIDE RAIL — quick actions, liquid glass (Isuzu answer) ── */
.side-rail {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  z-index: 890;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(18,18,24,0.72), rgba(10,10,14,0.6));
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: 14px 0 0 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), -12px 0 44px rgba(0,0,0,0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.side-rail.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(-50%) translateX(0);
}
.side-rail__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: rgba(255,255,255,0.72);
  transition: color 0.25s ease, background 0.25s ease;
}
.side-rail__item + .side-rail__item::before {
  content: '';
  position: absolute;
  top: 0; left: 12px; right: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,192,174,0.22), transparent);
}
.side-rail__item svg {
  width: 21px; height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.side-rail__item:hover {
  color: var(--champagne);
  background: rgba(255,255,255,0.05);
}
.side-rail__item:first-child { border-radius: 13px 0 0 0; }
.side-rail__item:last-child { border-radius: 0 0 0 13px; }
.side-rail__item--wa:hover { color: var(--wa-green); }

/* flyout label */
.side-rail__label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  background: linear-gradient(180deg, rgba(18,18,24,0.92), rgba(10,10,14,0.88));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,192,174,0.25);
  border-radius: 8px;
  padding: 9px 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
}
.side-rail__item:hover .side-rail__label,
.side-rail__item:focus-visible .side-rail__label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 768px) {
  .side-rail { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .side-rail { transition: opacity 0.2s ease; transform: translateY(-50%); }
  .side-rail.is-visible { transform: translateY(-50%); }
}

/* ── HEADER: soft faded bottom edge + metallic badge ───────── */
.nav, .nav.scrolled {
  box-shadow: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
}
.nav__badge {
  height: 34px !important;
  width: auto;
  filter: none !important;
  display: block;
}
@media (max-width: 640px) {
  .nav__badge { height: 28px !important; }
}

/* nav enquire on liquid glass */
.nav__enquire { border-color: rgba(14,165,233,0.8) !important; }
.nav__enquire:hover { background: var(--blue) !important; border-color: var(--blue) !important; color: #fff !important; }
