/* ==========================================================================
   Drivver — mydrivver.com — Design tokens
   ========================================================================== */
:root {
  --cyan-500: #00AEEF;
  --cyan-600: #0090C7;
  --cyan-700: #00729D;
  --cyan-050: #EAF6FC;
  --navy-900: #0A1F3D;
  --navy-800: #12294D;
  --ink-900: #14213A;
  --ink-600: #4A5670;
  --ink-400: #7C879C;
  --line-200: #DCE6EF;
  --line-100: #EEF3F8;
  --white: #FFFFFF;
  --amber-500: #F2A93B;
  --success-600: #1E9E6B;

  --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --font-urdu: 'Noto Nastaliq Urdu', serif;

  --max-content: 1200px;
  --max-reading: 720px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --header-h: 76px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  letter-spacing: -.01em;
}
html[dir="rtl"] body { font-family: var(--font-urdu); line-height: 2; letter-spacing: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--navy-900); font-weight: 800; letter-spacing: -.02em; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 { font-family: var(--font-urdu); letter-spacing: 0; font-weight: 700; }
p { margin: 0; }

.container { max-width: var(--max-content); margin-inline: auto; padding-inline: 20px; }
.container--reading { max-width: var(--max-reading); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-900); color: var(--white); padding: 12px 20px;
  z-index: 1000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
html[dir="rtl"] .skip-link { left: auto; right: -9999px; border-radius: 0 0 0 8px; }
html[dir="rtl"] .skip-link:focus { right: 0; }
:focus-visible { outline: 3px solid var(--cyan-600); outline-offset: 2px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  border: 2px solid transparent; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  min-height: 44px; white-space: nowrap; font-family: var(--font-display);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--cyan-500); color: var(--navy-900); }
.btn--primary:hover { background: var(--cyan-600); box-shadow: 0 10px 24px -8px rgba(0,174,239,.55); }
.btn--ghost { background: transparent; color: var(--navy-900); border-color: var(--line-200); }
.btn--ghost:hover { border-color: var(--cyan-500); }
.btn--dark { background: var(--navy-900); color: var(--white); }
.btn--dark:hover { background: var(--navy-800); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: .85rem; min-height: 38px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--cyan-700);
  font-weight: 700; margin-block-end: 14px;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--cyan-500); border-radius: 2px; }
html[dir="rtl"] .eyebrow { font-family: var(--font-urdu); letter-spacing: 0; }

/* Announcement bar */
.announce { background: var(--navy-900); color: var(--white); font-size: .85rem; text-align: center; padding: 10px 44px 10px 16px; position: relative; }
html[dir="rtl"] .announce { padding: 10px 16px 10px 44px; }
.announce a { text-decoration: underline; text-underline-offset: 3px; color: var(--cyan-500); font-weight: 700; }
.announce__close { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: transparent; border: none; color: var(--white); width: 32px; height: 32px; border-radius: 50%; font-size: 1.1rem; line-height: 1; }
.announce__close:hover { background: rgba(255,255,255,.12); }
.announce.is-hidden { display: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-100); height: var(--header-h); display: flex; align-items: center; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; }
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--navy-900); flex-shrink: 0; }
.logo img { height: 34px; width: auto; display: block; flex-shrink: 0; }
.logo svg { height: 30px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions > .btn--ghost { display: none; }
@media (min-width: 1024px) { .header-actions > .btn--ghost { display: inline-flex; } }
.lang-switch { display: flex; border: 1px solid var(--line-200); border-radius: 999px; padding: 3px; gap: 2px; }
.lang-switch button { border: none; background: transparent; padding: 6px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700; color: var(--ink-600); }
.lang-switch button[aria-pressed="true"] { background: var(--navy-900); color: var(--white); }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--line-200); border-radius: var(--radius-sm); background: var(--white); }
.nav-toggle svg { width: 20px; height: 20px; }
.mobile-nav { position: fixed; top: 0; right: 0; bottom: 0; left: 0; top: 0; background: var(--white); z-index: 200; padding: 20px; transform: translateX(100%); transition: transform .28s var(--ease); overflow-y: auto; }
html[dir="rtl"] .mobile-nav { transform: translateX(-100%); }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-block-end: 24px; }
.mobile-nav__close { width: 44px; height: 44px; border-radius: var(--radius-sm); border: 1px solid var(--line-200); background: var(--white); }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a { display: block; padding: 16px 4px; font-size: 1.1rem; font-weight: 700; border-bottom: 1px solid var(--line-100); }
.mobile-nav .header-actions { margin-block-start: 24px; flex-direction: column; align-items: stretch; }
.mobile-nav .lang-switch { align-self: flex-start; margin-block-end: 16px; }

.mobile-nav__accordion { list-style: none; }
.mobile-nav__accordion > li { border-bottom: 1px solid var(--line-100); }
.mobile-nav__group-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; font-size: 1.1rem; font-weight: 700; background: none; border: none; color: var(--navy-900); text-align: start; font-family: inherit; }
.mobile-nav__group-toggle::after { content: ""; width: 10px; height: 10px; border-right: 2px solid var(--ink-400); border-bottom: 2px solid var(--ink-400); transform: rotate(45deg); transition: transform .2s var(--ease); flex-shrink: 0; }
.mobile-nav__group-toggle[aria-expanded="true"]::after { transform: rotate(-135deg); }
.mobile-nav__group { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s var(--ease); }
.mobile-nav__group__inner { overflow: hidden; }
.mobile-nav__group-toggle[aria-expanded="true"] + .mobile-nav__group { grid-template-rows: 1fr; }
.mobile-nav__group a { display: block; padding: 11px 4px 11px 14px; font-size: .96rem; font-weight: 500; border-bottom: none; color: var(--ink-600); }
.mobile-nav__group a:hover { color: var(--cyan-700); }
.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { padding: 10px 14px; display: inline-flex; align-items: center; gap: 5px; border-radius: var(--radius-sm); font-weight: 600; font-size: .92rem; color: var(--navy-900); white-space: nowrap; }
.main-nav > ul > li > a:hover, .main-nav > ul > li:focus-within > a { background: var(--cyan-050); color: var(--cyan-700); }
.main-nav > ul > li > a svg { width: 14px; height: 14px; transition: transform .15s var(--ease); }
.main-nav > ul > li:hover > a svg, .main-nav > ul > li:focus-within > a svg { transform: rotate(180deg); }
.nav-dropdown { position: absolute; top: 100%; left: 0; min-width: 280px; background: var(--white); border: 1px solid var(--line-100); border-radius: var(--radius-lg); box-shadow: 0 28px 56px -20px rgba(10,31,61,.24); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s var(--ease), transform .15s var(--ease), visibility .15s; z-index: 200; }
.main-nav > ul > li:hover .nav-dropdown, .main-nav > ul > li:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: flex; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 10px; font-size: .87rem; color: var(--ink-600); font-weight: 500; }
.nav-dropdown a:hover, .nav-dropdown a:focus-visible { background: var(--cyan-050); color: var(--navy-900); }
.nav-dropdown__icon { width: 30px; height: 30px; border-radius: 9px; background: var(--cyan-050); color: var(--cyan-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s var(--ease), color .15s var(--ease); }
.nav-dropdown__icon svg { width: 16px; height: 16px; }
.nav-dropdown a:hover .nav-dropdown__icon, .nav-dropdown a:focus-visible .nav-dropdown__icon { background: var(--navy-900); color: var(--cyan-500); }
.nav-dropdown__divider { height: 1px; background: var(--line-100); margin: 6px 8px; }
@media (min-width: 1024px) { .main-nav { display: block; } .nav-toggle { display: none; } }

/* Mobile header — everything shrinks to fit narrow screens without overflowing.
   Desktop (≥1024px, where .main-nav takes over) is completely untouched. */
@media (max-width: 1023px) {
  .site-header .container { gap: 8px; }
  .logo img { height: 26px; max-width: 104px; }
  .header-actions { gap: 8px; }
  .lang-switch { padding: 2px; }
  .lang-switch button { padding: 5px 8px; font-size: .68rem; }
  /* The header's inline "Get the app" button is hidden on mobile — the identical
     button already lives inside the hamburger menu, and removing this one here
     guarantees the hamburger button always has room, in every language (a long
     Urdu label was previously squeezing it out of its clickable area). */
  .header-actions .btn--primary { display: none; }
  .nav-toggle { width: 42px; height: 42px; flex-shrink: 0; }
  .nav-toggle svg { width: 20px; height: 20px; }
}

/* ==========================================================================
   Hero slider
   ========================================================================== */
.hero-slider { position: relative; overflow: hidden; min-height: 320px; color: var(--white); background: var(--navy-900); }
.hero-slide {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 0; visibility: hidden;
  transition: opacity .9s var(--ease), visibility 0s linear .9s;
  display: flex; align-items: flex-end;
}
.hero-slide.is-active { opacity: 1; visibility: visible; transition: opacity .9s var(--ease), visibility 0s linear 0s; z-index: 2; }
.hero-slide__bg { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0; }
.hero-slide__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; transform: scale(1); transition: transform 7s linear; }
.hero-slide.is-active .hero-slide__bg img { transform: scale(1.07); }
.hero-slide__scrim { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(90deg, rgba(10,31,61,.72) 0%, rgba(10,31,61,.38) 48%, rgba(10,31,61,.08) 75%); z-index: 1; }
.hero-slide .container { position: relative; z-index: 2; padding-block: 90px 64px; width: 100%; }
.hero-slide__copy { max-width: 640px; }
.hero-slide__copy .eyebrow { color: var(--cyan-500); }
.hero-slide__copy .eyebrow::before { background: var(--cyan-500); }
.hero-slide h1, .hero-slide h2 {
  color: var(--white); font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.06; letter-spacing: -.03em;
  margin-block-end: 18px; opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease) .15s, transform .7s var(--ease) .15s;
}
.hero-slide.is-active h1, .hero-slide.is-active h2 { opacity: 1; transform: translateY(0); }
.hero-slide__body { font-size: 1.08rem; color: #DCE6F5; max-width: 46ch; margin-block-end: 26px; opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease) .28s, transform .7s var(--ease) .28s; }
.hero-slide.is-active .hero-slide__body { opacity: 1; transform: translateY(0); }
.hero-slide__ctas { display: flex; flex-wrap: wrap; gap: 12px; opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease) .4s, transform .7s var(--ease) .4s; }
.hero-slide.is-active .hero-slide__ctas { opacity: 1; transform: translateY(0); }
.hero-slider .btn--ghost { border-color: rgba(255,255,255,.4); color: var(--white); }
.hero-slider .btn--ghost:hover { border-color: var(--cyan-500); background: rgba(255,255,255,.08); }
@media (prefers-reduced-motion: reduce) {
  .hero-slide__bg img { transition: none !important; transform: none !important; }
  .hero-slide h1, .hero-slide h2, .hero-slide__body, .hero-slide__ctas { transition: none !important; transform: none !important; opacity: 1 !important; }
}

.hero-dots { position: absolute; z-index: 3; bottom: 22px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; width: 100%; }
.hero-dots button { width: 30px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.35); border: none; padding: 0; transition: background .2s var(--ease); }
.hero-dots button.is-active { background: var(--cyan-500); }
.hero-arrow { position: absolute; z-index: 3; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: var(--white); display: none; align-items: center; justify-content: center; }
.hero-arrow:hover { background: rgba(255,255,255,.22); }
.hero-arrow svg { width: 18px; height: 18px; }
.hero-arrow--prev { left: 20px; }
html[dir="rtl"] .hero-arrow--prev { left: auto; right: 20px; }
.hero-arrow--next { right: 20px; }
html[dir="rtl"] .hero-arrow--next { right: auto; left: 20px; }
@media (min-width: 540px) {
  .hero-slider { min-height: 420px; }
}
@media (min-width: 900px) {
  .hero-slider { min-height: 560px; }
  .hero-slide .container { padding-block: 130px 80px; }
  .hero-arrow { display: flex; }
}

/* Mobile-only hero tightening — shorter text/buttons so nothing overflows the
   shorter mobile hero box, and the photo stays fully visible. Desktop is untouched. */
@media (max-width: 539px) {
  .hero-slider { min-height: 460px; }
  .hero-slide .container { padding-block: 20px 22px; }
  .hero-slide__copy .eyebrow { font-size: .68rem; margin-block-end: 8px; }
  .hero-slide h1, .hero-slide h2 { font-size: 1.5rem; line-height: 1.15; margin-block-end: 10px; }
  .hero-slide__body { font-size: .88rem; margin-block-end: 16px; max-width: 34ch; }
  .hero-slide__ctas { gap: 8px; }
  .hero-slide__ctas .btn { padding: 10px 16px; font-size: .82rem; min-height: 40px; }
  .hero-dots { bottom: 12px; }
}

/* Section basics */
.section { padding-block: 52px; }
.section--tint { background: var(--cyan-050); }
.section--dark { background: var(--navy-900); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section__head { max-width: 640px; margin-block-end: 32px; }
.section__head h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); line-height: 1.14; }
.section__intro { color: var(--ink-600); margin-block-start: 12px; font-size: 1.02rem; }
.section--dark .section__intro { color: #B9C6DC; }

/* Service class cards (vehicle categories) — inspired by Yango's Service Classes */
.vehicle-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.vehicle-card { background: var(--white); border: 1px solid var(--line-200); border-radius: var(--radius-md); overflow: hidden; transition: box-shadow .25s var(--ease), transform .25s var(--ease); display: flex; flex-direction: column; }
.vehicle-card:hover { box-shadow: 0 26px 52px -26px rgba(10,31,61,.32); transform: translateY(-5px); }
.vehicle-card__photo { position: relative; height: 190px; overflow: hidden; background: linear-gradient(180deg, var(--cyan-050), #F6FBFE); display: flex; align-items: center; justify-content: center; }
.vehicle-card__photo img { width: auto; height: auto; max-width: 78%; max-height: 72%; object-fit: contain; transition: transform .35s var(--ease); filter: drop-shadow(0 14px 18px rgba(10,31,61,.16)); }
.vehicle-card:hover .vehicle-card__photo img { transform: scale(1.08) translateY(-4px); }
.vehicle-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.vehicle-card__tag { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--cyan-700); font-weight: 700; margin-block-end: 8px; }
html[dir="rtl"] .vehicle-card__tag { font-family: var(--font-urdu); letter-spacing: 0; text-transform: none; }
.vehicle-card h3 { font-size: 1.25rem; margin-block-end: 10px; }
.vehicle-card__models { color: var(--ink-400); font-size: .85rem; margin-block-end: 16px; }
.vehicle-card__features { border-top: 1px solid var(--line-100); margin-block-start: auto; }
.vehicle-card__features summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding-block: 14px; font-weight: 700; font-size: .88rem; color: var(--navy-900); }
.vehicle-card__features summary::-webkit-details-marker { display: none; }
.vehicle-card__features summary svg { width: 16px; height: 16px; transition: transform .2s var(--ease); color: var(--ink-400); }
.vehicle-card__features[open] summary svg { transform: rotate(180deg); }
.vehicle-card__features ul { padding-block-end: 14px; }
.vehicle-card__features li { display: flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--ink-600); padding-block: 5px; }
.vehicle-card__features li svg { width: 14px; height: 14px; color: var(--cyan-600); flex-shrink: 0; }
.vehicle-card__ctas { display: flex; flex-direction: column; gap: 8px; margin-block-start: 6px; }
@media (min-width: 720px) { .vehicle-grid { grid-template-columns: repeat(3, 1fr); } }

/* Feature icon grid ("Why Drivver") */
.feature-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.feature-card { background: var(--white); border: 1px solid var(--line-200); border-radius: var(--radius-md); padding: 26px 22px; transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.feature-card:hover { box-shadow: 0 20px 40px -26px rgba(10,31,61,.28); transform: translateY(-4px); }
.feature-card__icon { width: 48px; height: 48px; border-radius: 13px; background: var(--cyan-050); color: var(--cyan-700); display: flex; align-items: center; justify-content: center; margin-block-end: 16px; }
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.05rem; margin-block-end: 8px; }
.feature-card p { color: var(--ink-600); font-size: .92rem; }
@media (min-width: 720px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }

/* How it works */
.steps { display: grid; gap: 18px; grid-template-columns: 1fr; }
.step { border: 1px solid var(--line-200); border-radius: var(--radius-md); padding: 26px 22px; position: relative; background: var(--white); transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.step:hover { box-shadow: 0 20px 40px -26px rgba(10,31,61,.28); transform: translateY(-4px); }
.step__top { display: flex; align-items: center; gap: 12px; margin-block-end: 14px; }
.step__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--navy-900); color: var(--cyan-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step__icon svg { width: 22px; height: 22px; }
.step__index { font-family: var(--font-mono); font-size: .78rem; color: var(--ink-400); font-weight: 700; }
.step p { color: var(--ink-600); font-size: .95rem; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* Feature manifesto list ("Why Drivver") — editorial numbered rows */
.manifesto { border-top: 1px solid var(--line-200); }
.manifesto__row {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  padding-block: 28px; border-bottom: 1px solid var(--line-200);
  transition: background .2s var(--ease);
}
.manifesto__row:hover { background: var(--cyan-050); }
.manifesto__num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--line-200); line-height: 1; transition: color .2s var(--ease); }
.manifesto__row:hover .manifesto__num { color: var(--cyan-500); }
.manifesto__main { display: flex; align-items: flex-start; gap: 16px; }
.manifesto__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--navy-900); color: var(--cyan-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.manifesto__icon svg { width: 22px; height: 22px; }
.manifesto__text h3 { font-size: 1.12rem; margin-block-end: 6px; }
.manifesto__text p { color: var(--ink-600); font-size: .95rem; max-width: 62ch; }
@media (min-width: 720px) {
  .manifesto__row { grid-template-columns: 90px 1fr; align-items: center; }
}

/* How it works — connected path */
.path-steps { position: relative; display: grid; gap: 22px; grid-template-columns: 1fr; }
.path-step { position: relative; display: flex; gap: 16px; align-items: flex-start; }
.path-step__node { position: relative; flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; background: var(--navy-900); color: var(--cyan-500); display: flex; align-items: center; justify-content: center; z-index: 1; }
.path-step__node svg { width: 24px; height: 24px; }
.path-step__connector { position: absolute; left: 26px; top: 52px; width: 2px; height: calc(100% + 22px - 52px); background: repeating-linear-gradient(180deg, var(--line-200) 0 8px, transparent 8px 14px); }
.path-step:last-child .path-step__connector { display: none; }
.path-step__body { padding-block-start: 6px; }
.path-step__tag { font-family: var(--font-mono); font-size: .68rem; color: var(--cyan-700); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-block-end: 4px; }
.path-step__body h3 { font-size: 1.05rem; margin-block-end: 6px; }
.path-step__body p { color: var(--ink-600); font-size: .93rem; }
@media (min-width: 900px) {
  .path-steps { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .path-step { flex-direction: column; text-align: center; align-items: center; padding-inline: 14px; }
  .path-step__connector { left: calc(50% + 26px); top: 26px; width: calc(100% - 52px); height: 2px; background: repeating-linear-gradient(90deg, var(--line-200) 0 8px, transparent 8px 14px); }
  .path-step__body { padding-block-start: 16px; }
}

/* Driver section — sticky pinned reveal (desktop only) */
.driver-sticky-outer { position: relative; }
@media (min-width: 900px) {
  .driver-sticky-outer { height: 145vh; }
  .driver-sticky-inner { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
  .driver-sticky-inner .split-panel { width: 100%; }
}

.split-panel { display: grid; gap: 0; grid-template-columns: 1fr; border-radius: var(--radius-lg); overflow: hidden; }
.split-panel__media { position: relative; min-height: 260px; }
.split-panel__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
.split-panel__content { background: var(--navy-900); color: var(--white); padding: 40px 30px; display: flex; flex-direction: column; justify-content: center; }
.split-panel__content .eyebrow { color: var(--cyan-500); }
.split-panel__content h2 { color: var(--white); font-size: clamp(1.6rem, 3.2vw, 2.1rem); margin-block-end: 16px; }
.split-panel__content p { color: #C7D3E6; font-size: .98rem; margin-block-end: 14px; max-width: 56ch; }
.split-panel__hook { border-inline-start: 3px solid var(--amber-500); padding-inline-start: 16px; margin-block: 16px 22px; color: var(--white) !important; font-size: .95rem !important; }
html[dir="rtl"] .split-panel__hook { border-inline-start: none; border-inline-end: 3px solid var(--amber-500); padding-inline-start: 0; padding-inline-end: 16px; }
@media (min-width: 860px) {
  .split-panel { grid-template-columns: 0.9fr 1.1fr; min-height: 420px; }
  .split-panel--reverse { grid-template-columns: 1.1fr 0.9fr; }
  .split-panel--reverse .split-panel__media { order: 2; }
}

/* Jazz + business light cards */
.dual-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.module-card { border: 1px solid var(--line-200); border-radius: var(--radius-lg); padding: 32px 26px; background: var(--white); }
.module-card--jazz { background-color: var(--navy-900); background-image: linear-gradient(155deg, var(--navy-900), var(--navy-800)); color: var(--white); border: none; position: relative; overflow: hidden; }
.module-card--jazz::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: radial-gradient(circle at 90% 10%, rgba(0,174,239,.25), transparent 55%); pointer-events: none; }
.module-card--jazz h3 { color: var(--white); }
.module-card--jazz p { color: #C7D3E6; }
.partner-marks { display: flex; gap: 10px; margin-block-end: 18px; position: relative; z-index: 1; }
.partner-mark { font-family: var(--font-mono); font-size: .72rem; font-weight: 700; letter-spacing: .06em; padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: var(--white); }
.module-card h3 { font-size: 1.3rem; margin-block-end: 12px; }
.module-card p { color: var(--ink-600); margin-block-end: 20px; }
@media (min-width: 860px) { .dual-grid { grid-template-columns: 1fr 1fr; } }

/* Safety icon grid */
.safety-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin-block-start: 36px; }
.safety-card { background: var(--white); border: 1px solid var(--line-200); border-radius: var(--radius-md); padding: 24px 20px; text-align: center; transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.safety-card:hover { box-shadow: 0 20px 40px -26px rgba(10,31,61,.28); transform: translateY(-4px); }
.safety-card__icon { width: 52px; height: 52px; border-radius: 50%; background: var(--cyan-050); color: var(--cyan-700); display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-block-end: 16px; }
.safety-card__icon svg { width: 26px; height: 26px; }
.safety-card h3 { font-size: 1rem; margin-block-end: 8px; }
.safety-card p { font-size: .88rem; color: var(--ink-600); }
@media (min-width: 720px) { .safety-grid { grid-template-columns: repeat(4, 1fr); } }

/* Cities */
.city-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin-block-start: 32px; }
.city-card { position: relative; border-radius: var(--radius-md); overflow: hidden; min-height: 190px; display: flex; flex-direction: column; color: var(--white); background: var(--navy-900); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.city-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px -24px rgba(10,31,61,.4); }
.city-card__bg { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background-color: var(--navy-900); background-image: linear-gradient(155deg, var(--navy-800), var(--navy-900)); }
.city-card__icon { position: relative; z-index: 1; width: 56px; height: 56px; margin: 22px 20px 0; border-radius: 50%; background: rgba(0, 174, 239, 0.16); border: 1px solid rgba(0, 174, 239, 0.35); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.city-card__icon svg { width: 30px; height: 30px; color: var(--cyan-500); }
.city-card__body { position: relative; z-index: 1; padding: 16px 20px 20px; margin-block-start: auto; }
.city-card__name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-block-end: 8px; }
.status-pill { font-family: var(--font-mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .06em; padding: 5px 12px; border-radius: 999px; font-weight: 700; display: inline-block; }
.status-pill--announced { background: #FFF1DA; color: #9C6414; }
.status-pill--driver { background: #E4F3FF; color: var(--cyan-700); }
.status-pill--rider { background: #EAF6FC; color: var(--cyan-700); }
.status-pill--soon { background: rgba(255,255,255,.16); color: var(--white); }
.city-empty { margin-block-start: 22px; padding: 20px; border: 1px dashed var(--line-200); border-radius: var(--radius-sm); color: var(--ink-600); font-size: .92rem; text-align: center; }
@media (min-width: 640px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .city-grid { grid-template-columns: repeat(5, 1fr); } }

/* Launch form — split panel with audience-driven image swap */
.launch-split { display: grid; gap: 24px; grid-template-columns: 1fr; align-items: stretch; }
.launch-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 280px; background: var(--navy-900); }
.launch-visual__slide { position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 0; transition: opacity .5s var(--ease); }
.launch-visual__slide.is-active { opacity: 1; }
.launch-visual__slide img { width: 100%; height: 100%; object-fit: cover; }
.launch-visual__scrim { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(0deg, rgba(10,31,61,.85) 0%, rgba(10,31,61,.15) 55%); z-index: 1; }
.launch-visual__caption { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 24px; color: var(--white); }
.launch-visual__caption h3 { color: var(--white); font-size: 1.3rem; margin-block-end: 6px; }
.launch-visual__caption p { color: #DCE6F5; font-size: .9rem; }
.launch-form { background: var(--white); border: 1px solid var(--line-200); border-radius: var(--radius-lg); padding: 32px 26px; box-shadow: 0 30px 70px -40px rgba(10,31,61,.3); }
.form-row { margin-block-end: 18px; }
.form-row label { display: block; font-size: .85rem; font-weight: 700; margin-block-end: 6px; color: var(--navy-900); }
.form-row input[type="text"], .form-row input[type="tel"], .form-row input[type="email"], .form-row input[type="number"], .form-row select, .form-row textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line-200); border-radius: var(--radius-sm); font-size: .95rem; font-family: inherit; background: var(--white); box-sizing: border-box;
}
.form-row textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--cyan-500); outline: none; }
.choice-group { display: flex; flex-wrap: wrap; gap: 10px; }
.choice-chip { position: relative; }
.choice-chip input { position: absolute; opacity: 0; }
.choice-chip span { display: inline-flex; padding: 10px 16px; border: 1px solid var(--line-200); border-radius: 999px; font-size: .85rem; font-weight: 700; color: var(--ink-600); transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease); }
.choice-chip input:checked + span { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.choice-chip input:focus-visible + span { outline: 3px solid var(--cyan-600); outline-offset: 2px; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--ink-600); margin-block-end: 14px; }
.consent-row input { margin-top: 4px; flex-shrink: 0; }
.form-note { font-size: .78rem; color: var(--ink-400); margin-block-start: 10px; }
.hp-field { position: absolute; left: -9999px; }
.form-success { display: none; text-align: center; padding: 20px 6px; }
.form-success.is-visible { display: block; }
.launch-form.is-submitted .launch-form__fields { display: none; }
.form-success__icon { width: 56px; height: 56px; border-radius: 50%; background: #E4F8EE; color: var(--success-600); display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-block-end: 16px; }
.form-success__icon svg { width: 28px; height: 28px; }
.form-success h3 { margin-block-end: 8px; }
.form-success p { color: var(--ink-600); }
.form-error { color: #B3261E; font-size: .8rem; margin-block-start: 4px; display: none; }
.form-row.has-error input, .form-row.has-error select { border-color: #B3261E; }
.form-row.has-error .form-error { display: block; }
@media (min-width: 900px) { .launch-split { grid-template-columns: 1fr 1fr; } .launch-visual { min-height: 100%; } }

/* FAQ */
.faq-list { max-width: var(--max-reading); margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line-200); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 4px; background: transparent; border: none; text-align: start; font-size: 1.02rem; font-weight: 700; color: var(--navy-900); }
.faq-item__q svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform .2s var(--ease); color: var(--cyan-600); }
.faq-item[data-open="true"] .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .28s var(--ease); color: var(--ink-600); font-size: .95rem; }
.faq-item__a-inner { padding: 0 4px 20px; }
.faq-item[data-open="true"] .faq-item__a { max-height: 320px; }

/* ==========================================================================
   Footer — minimal, symmetric, includes app CTA
   ========================================================================== */
.footer-cta { background: var(--cyan-050); padding-block: 40px; }
.footer-cta .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.footer-cta__text h2 { font-size: 1.4rem; margin-block-end: 6px; }
.footer-cta__text p { color: var(--ink-600); font-size: .95rem; }
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; background: #000000; border: 1px solid rgba(255,255,255,.25); color: var(--white); padding: 10px 18px; border-radius: var(--radius-sm); font-size: .85rem; font-weight: 700; transition: background .15s var(--ease); }
.store-badge:hover { background: #1a1a1a; }
.store-badge svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-badge__text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.store-badge__text small { font-size: .62rem; font-weight: 500; text-transform: none; opacity: .85; }
.store-badge__text span { font-size: .92rem; font-weight: 700; }

.site-footer { background: var(--navy-900); color: #B9C6DC; padding-block: 0 0; }
.footer-top {
  display: flex; flex-direction: column; gap: 20px;
  padding-block: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand-block .logo { color: var(--white); margin-block-end: 12px; }
.footer-brand-block p { color: #8FA0BE; font-size: .88rem; max-width: 46ch; }
.footer-help-block h4 { color: var(--white); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-mono); margin-block-end: 10px; font-weight: 700; }
html[dir="rtl"] .footer-help-block h4 { font-family: var(--font-urdu); letter-spacing: 0; text-transform: none; }
.footer-help-block a.footer-phone { display: block; color: var(--white); font-weight: 700; font-size: 1.05rem; margin-block-end: 6px; }
.footer-help-block a.footer-phone:hover { color: var(--cyan-500); }
.footer-help-block a.footer-help-link { font-size: .88rem; color: #B9C6DC; }
.footer-help-block a.footer-help-link:hover { color: var(--white); }
@media (min-width: 720px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 24px; }
  .footer-brand-block { flex: 1; max-width: 440px; }
  .footer-help-block { text-align: end; }
}

.footer-grid { display: grid; gap: 28px; grid-template-columns: repeat(2, 1fr); padding-block: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-col h4 { color: var(--white); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-mono); margin-block-end: 16px; font-weight: 700; }
html[dir="rtl"] .footer-col h4 { font-family: var(--font-urdu); letter-spacing: 0; text-transform: none; }
.footer-col li { margin-block-end: 10px; }
.footer-col a { font-size: .88rem; color: #B9C6DC; }
.footer-col a:hover { color: var(--white); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .footer-grid { grid-template-columns: repeat(5, 1fr); } }

.footer-bottom {
  padding-block: 22px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  align-items: center; font-size: .8rem; color: #8FA0BE; background: #071527;
}
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; width: 100%; }
.footer-bottom__links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-bottom__links a:hover { color: var(--white); }

/* Scroll reveal — progressive enhancement */
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js-ready .reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.js-ready .reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 450ms; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 540ms; }
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal, .js-ready .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Utilities */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ==========================================================================
   Inner-page shared components
   ========================================================================== */

/* Breadcrumbs */
.breadcrumbs { padding-block: 14px; border-bottom: 1px solid var(--line-100); background: var(--white); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: .82rem; color: var(--ink-400); list-style: none; margin: 0; padding: 0; }
.breadcrumbs a { color: var(--ink-600); font-weight: 600; }
.breadcrumbs a:hover { color: var(--cyan-600); }
.breadcrumbs li[aria-current] { color: var(--navy-900); font-weight: 700; }
.breadcrumbs svg { width: 12px; height: 12px; }
html[dir="rtl"] .breadcrumbs svg { transform: rotate(180deg); }

/* Static page hero (single photo, no slider) */
.page-hero { position: relative; overflow: hidden; height: 280px; display: flex; align-items: center; color: var(--white); background: var(--navy-900); }
@media (min-width: 540px) { .page-hero { height: 340px; } }
@media (min-width: 1024px) { .page-hero { height: 420px; } }
.page-hero__bg { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(100deg, rgba(10,31,61,.82) 0%, rgba(10,31,61,.5) 55%, rgba(10,31,61,.2) 100%); z-index: 1; }
.page-hero .container { position: relative; z-index: 2; padding-block: 44px; width: 100%; }
.page-hero__copy { max-width: 620px; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4.4vw, 2.8rem); line-height: 1.1; margin-block-end: 16px; }
.page-hero p { color: #DCE6F5; font-size: 1.02rem; max-width: 52ch; margin-block-end: 22px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.page-hero .eyebrow { color: var(--cyan-500); }
.page-hero .eyebrow::before { background: var(--cyan-500); }
.page-hero--tint { background: var(--cyan-050); color: var(--navy-900); }
.page-hero--tint p { color: var(--ink-600); }
.page-hero--tint h1 { color: var(--navy-900); }
.page-hero--tint .page-hero__scrim { display: none; }
.page-hero__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.page-hero__icon-art { max-width: 230px; width: 40%; min-width: 160px; filter: drop-shadow(0 20px 24px rgba(10,31,61,.18)); }

/* Mobile-only tightening for every inner-page banner — smaller text and
   buttons so the photo has room to breathe. Desktop is untouched. */
@media (max-width: 539px) {
  .page-hero .container { padding-block: 28px 26px; }
  .page-hero .eyebrow { font-size: .68rem; margin-block-end: 6px; }
  .page-hero h1 { font-size: 1.5rem; line-height: 1.18; margin-block-end: 10px; }
  .page-hero p { font-size: .85rem; margin-block-end: 14px; -webkit-line-clamp: 2; }
  .page-hero__copy .btn { padding: 10px 16px; font-size: .82rem; min-height: 40px; }
}

/* ============ Homepage: Find-a-ride card (overlaps hero) ============ */
.hero-slide__link { color: inherit; text-decoration: underline; }
/* ============ Cities: per-category status ============ */
.city-status-card { background: var(--navy-900); border-radius: var(--radius-md); padding: 22px 22px 18px; }
.city-status-card__name { color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin-block-end: 14px; }
.city-status-card__cats { display: flex; flex-direction: column; gap: 8px; }
.city-status-row { display: flex; align-items: center; justify-content: space-between; padding-block: 6px; border-bottom: 1px solid rgba(255,255,255,.08); }
.city-status-row:last-child { border-bottom: none; }
.city-status-row__cat { color: #C7D3E6; font-size: .88rem; }
.city-status-row__state { font-family: var(--font-mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.city-status-row__state--soon { background: rgba(255,255,255,.1); color: #9AAAC4; }
.city-status-row__state--onboarding { background: rgba(242,169,59,.16); color: #F2A93B; }

/* ============ Welcome Offer: five-moment journey ============ */
.moment-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px) { .moment-row { grid-template-columns: repeat(5, 1fr); gap: 12px; } }
.moment-card { text-align: center; padding-block: 8px; position: relative; }
.moment-card__num { width: 30px; height: 30px; border-radius: 50%; background: var(--cyan-050); color: var(--cyan-700); font-family: var(--font-mono); font-weight: 700; font-size: .8rem; display: flex; align-items: center; justify-content: center; margin-inline: auto 12px; }
@media (min-width: 900px) { .moment-card__num { margin-inline: auto; margin-block-end: 12px; } }
.moment-card__amount { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--navy-900); }
.moment-card__label { color: var(--ink-600); font-size: .82rem; margin-block-start: 2px; }
.moment-connector { display: none; }
@media (min-width: 900px) { .moment-row { position: relative; } .moment-connector { display: block; position: absolute; top: 15px; left: 10%; right: 10%; height: 1px; background: var(--line-200); z-index: 0; } }
.moment-total { text-align: center; margin-block-start: 32px; padding-block-start: 28px; border-top: 2px solid var(--navy-900); }
.moment-total__amount { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--navy-900); }
.moment-total__label { color: var(--ink-600); font-size: .95rem; }

/* ============ Pricing: receipt-anatomy visual ============ */
.receipt { background: var(--white); border: 1px solid var(--line-200); border-radius: var(--radius-md); padding: 28px 26px 8px; max-width: 380px; margin-inline: auto; box-shadow: 0 24px 48px -28px rgba(10,31,61,.22); position: relative; }
.receipt__head { text-align: center; margin-block-end: 20px; padding-block-end: 16px; border-bottom: 1px dashed var(--line-200); }
.receipt__head .eyebrow { justify-content: center; }
.receipt__head .eyebrow::before { display: none; }
.receipt__row { display: flex; justify-content: space-between; font-size: .88rem; color: var(--ink-600); padding-block: 7px; font-family: var(--font-mono); }
.receipt__row--total { border-top: 1px dashed var(--line-200); margin-block-start: 8px; padding-block-start: 14px; font-weight: 700; color: var(--navy-900); font-size: 1rem; }
.receipt__tag { display: inline-block; font-family: var(--font-mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .04em; background: var(--cyan-050); color: var(--cyan-700); padding: 3px 9px; border-radius: 999px; margin-inline-start: 8px; }
.receipt__zigzag { height: 14px; margin-inline: -26px; margin-block-start: 12px; background: linear-gradient(-45deg, var(--cyan-050) 8px, transparent 0), linear-gradient(45deg, var(--cyan-050) 8px, transparent 0); background-size: 16px 16px; background-position: left bottom; background-repeat: repeat-x; }

/* ============ How It Works: sticky-frame step story ============ */
.step-story { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 900px) { .step-story { grid-template-columns: 1fr 1.15fr; gap: 56px; } }
.step-story__frame-col { display: none; }
@media (min-width: 900px) {
  .step-story__frame-col { display: block; position: sticky; top: 96px; align-self: start; height: fit-content; }
}
.step-story__frame-col img { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 28px 56px -24px rgba(10,31,61,.32); }
.step-story__frame-shell { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 28px 56px -24px rgba(10,31,61,.32); background: var(--navy-900); }
.step-story__frame-shell img { display: block; width: 100%; border-radius: 0; box-shadow: none; transition: opacity .25s var(--ease); }
.step-story__frame-shell img.is-fading { opacity: 0; }
.step-story__steps { display: flex; flex-direction: column; }
.step-story__step { display: flex; gap: 20px; padding-block: 36px; border-bottom: 1px solid var(--line-100); }
.step-story__step:first-child { padding-block-start: 0; }
.step-story__step:last-child { border-bottom: none; }
.step-story__num { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-900); color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-story__step h3 { font-size: 1.1rem; margin-block-end: 6px; }
.step-story__step p { color: var(--ink-600); font-size: .93rem; }
.step-story__mobile-img { display: block; width: 100%; border-radius: var(--radius-md); margin-block-end: 14px; box-shadow: 0 16px 32px -20px rgba(10,31,61,.28); }
@media (min-width: 900px) { .step-story__mobile-img { display: none; } }

.walkthrough-row { display: grid; grid-auto-flow: column; grid-auto-columns: 78%; gap: 20px; overflow-x: auto; padding-block-end: 4px; scroll-snap-type: x mandatory; }
@media (min-width: 900px) { .walkthrough-row { grid-auto-flow: row; grid-auto-columns: unset; grid-template-columns: repeat(4, minmax(220px, 1fr)); } }
.walkthrough-shot { margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--line-200); box-shadow: 0 20px 40px -26px rgba(10,31,61,.22); scroll-snap-align: start; }
.walkthrough-shot img { width: 100%; display: block; }
.walkthrough-shot figcaption { padding: 14px 16px 16px; font-size: .84rem; color: var(--ink-600); line-height: 1.5; }

/* ============ App showcase: phone mockups with callout badges ============ */
.app-showcase { position: relative; padding-block-start: 34px; }
.app-showcase__row { display: flex; align-items: flex-end; gap: 18px; overflow-x: auto; padding: 10px 6px 26px; scroll-snap-type: x proximity; }
.app-phone { position: relative; flex: 0 0 auto; width: 190px; scroll-snap-align: center; transition: transform .3s var(--ease); }
.app-phone:nth-child(even) { transform: translateY(-16px); }
.app-phone:hover { transform: translateY(-6px) scale(1.03); }
.app-phone:nth-child(even):hover { transform: translateY(-22px) scale(1.03); }
.app-phone__frame { border-radius: 26px; border: 6px solid var(--navy-900); overflow: hidden; background: var(--navy-900); box-shadow: 0 24px 48px -20px rgba(10,31,61,.4); aspect-ratio: 300/615; }
.app-phone__frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.app-phone__badge { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); background: var(--cyan-500); color: var(--navy-900); font-family: var(--font-display); font-weight: 800; font-size: .74rem; line-height: 1.15; text-align: center; padding: 10px 8px; border-radius: 999px; width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px -8px rgba(10,31,61,.4); z-index: 2; }
.app-phone:nth-child(3n+2) .app-phone__badge { background: var(--navy-900); color: var(--cyan-500); }
.app-phone:nth-child(3n+3) .app-phone__badge { background: var(--amber-500); color: var(--navy-900); }
@media (min-width: 900px) {
  .app-showcase__row { overflow: visible; justify-content: center; flex-wrap: nowrap; padding-inline: 0; }
  .app-phone { width: 168px; }
}

.booking-bar-wrap { position: relative; z-index: 6; margin-block-start: -46px; }
.booking-bar { background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 32px 64px -24px rgba(10,31,61,.32); padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; }
.booking-bar__badge { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: var(--cyan-050); color: var(--cyan-700); font-family: var(--font-mono); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 6px 12px; border-radius: 999px; }
.booking-bar__badge svg { width: 14px; height: 14px; }
.booking-bar__fields { display: grid; grid-template-columns: 1fr; gap: 12px; }
.booking-bar__field { display: flex; flex-direction: column; gap: 4px; padding-inline: 4px; }
.booking-bar__field + .booking-bar__field { border-top: 1px solid var(--line-100); padding-block-start: 12px; }
.booking-bar__field label { font-family: var(--font-mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-400); font-weight: 700; }
.booking-bar__field input { border: none; padding: 2px 0; font-size: .92rem; font-weight: 600; color: var(--navy-900); background: transparent; }
.booking-bar__field input::placeholder { color: var(--ink-400); font-weight: 500; }
.booking-bar__field input:focus { outline: none; }
.booking-bar .btn--primary { white-space: nowrap; }
@media (min-width: 900px) {
  .booking-bar { flex-direction: row; align-items: center; padding: 12px 12px 12px 22px; }
  .booking-bar__badge { position: absolute; top: -14px; left: 22px; }
  .booking-bar__fields { grid-template-columns: repeat(3, 1fr); flex-grow: 1; }
  .booking-bar__field { padding-inline: 16px; }
  .booking-bar__field + .booking-bar__field { border-top: none; border-inline-start: 1px solid var(--line-100); padding-block-start: 4px; }
}
@media (min-width: 768px) {
  .hero-slider { min-height: 560px; }
}
/* ============ Mobile-only banner fixes: shorter hero, less image cropping, shorter text, no booking-bar overlap ============ */
@media (max-width: 767px) {
  .hero-slide .container { padding-block: 56px 40px; }
  .hero-slide__bg img { object-position: center 40%; }
  .hero-slide h1, .hero-slide h2 { font-size: clamp(1.6rem, 7vw, 2.1rem); margin-block-end: 10px; }
  .hero-slide__body { font-size: .92rem; max-width: 100%; margin-block-end: 18px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .booking-bar-wrap { margin-block-start: 14px; }
  .page-hero { height: auto; min-height: 200px; }
  .page-hero .container { padding-block: 28px; }
  .page-hero__bg img { object-position: center 40%; }
  .page-hero h1 { font-size: clamp(1.4rem, 6.5vw, 1.7rem); margin-block-end: 8px; }
  .page-hero p { -webkit-line-clamp: 1; font-size: .88rem; max-width: 100%; }
}

/* ============ Homepage: Ride-choice cards ============ */
.ride-choice-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .ride-choice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ride-choice-grid { grid-template-columns: repeat(4, 1fr); } }
.ride-choice-card { background: var(--white); border: 1px solid var(--line-200); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.ride-choice-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -28px rgba(10,31,61,.28); }
.ride-choice-card__media { height: 110px; display: flex; align-items: center; justify-content: center; margin-block-end: 18px; }
.ride-choice-card__media img { max-height: 100%; max-width: 150px; object-fit: contain; }
.ride-choice-card h3 { font-size: 1.1rem; margin-block-end: 8px; }
.ride-choice-card p { color: var(--ink-600); font-size: .9rem; margin-block-end: 18px; flex-grow: 1; }
.ride-choice-card--plus { background: var(--white); border-color: var(--line-200); }
.ride-choice-card--plus .ride-choice-card__media { position: relative; }
.ride-choice-card--plus .ride-choice-card__badge { position: absolute; top: -8px; right: 0; background: var(--navy-900); color: var(--cyan-500); font-family: var(--font-mono); font-size: .62rem; font-weight: 700; letter-spacing: .04em; padding: 5px 11px 5px 8px; border-radius: 999px; display: inline-flex; align-items: center; gap: 4px; box-shadow: 0 6px 14px -6px rgba(10,31,61,.5); }
.ride-choice-card__badge svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ============ Homepage: Welcome-offer band ============ */
.offer-band { background: var(--navy-900); border-radius: var(--radius-lg); padding: 0; text-align: left; color: var(--white); overflow: hidden; display: grid; grid-template-columns: 1fr; }
@media (min-width: 780px) { .offer-band { grid-template-columns: 1.1fr 1fr; } }
@media (min-width: 800px) { .offer-band { grid-template-columns: 1.3fr 1fr; align-items: center; } }
.offer-band__copy { padding: 44px 40px; }
.offer-band__figure { background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); padding: 32px; display: flex; align-items: center; }
.offer-band .eyebrow { color: var(--cyan-500); }
.offer-band .eyebrow::before { background: var(--cyan-500); }
.offer-band h2 { color: var(--white); font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-block-end: 10px; }
.offer-band p { color: #C7D3E6; margin-block-end: 22px; }
.offer-band .form-note { color: #93A3BE; margin-block-start: 16px; }
.offer-band .form-note a { color: var(--cyan-500); }

.offer-ledger { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); padding: 22px 24px; }
.offer-ledger__row { display: flex; align-items: center; gap: 12px; padding-block: 9px; border-bottom: 1px dashed rgba(255,255,255,.16); }
.offer-ledger__row:first-child { padding-block-start: 0; }
.offer-ledger__num { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.1); color: #9AAAC4; font-family: var(--font-mono); font-size: .68rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.offer-ledger__row-label { color: #C7D3E6; font-size: .88rem; flex-grow: 1; }
.offer-ledger__row-amount { color: var(--cyan-500); font-weight: 700; font-family: var(--font-mono); font-size: .9rem; }
.offer-ledger__total { display: flex; align-items: baseline; justify-content: space-between; padding-block-start: 16px; margin-block-start: 4px; }
.offer-ledger__total-label { color: var(--white); font-weight: 700; }
.offer-ledger__total-amount { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--white); }

/* ============ Homepage: Driver commercial-reveal (navy, dominant) ============ */
.commercial-reveal { background: var(--navy-900); padding-block: 72px; }
.token-grid { display: grid; gap: 18px; grid-template-columns: 1fr; margin-block-start: 36px; }
@media (min-width: 720px) { .token-grid { grid-template-columns: repeat(3, 1fr); } }
.token-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; }
.token-card .eyebrow { color: var(--cyan-500); }
.token-card .eyebrow::before { background: var(--cyan-500); }
.token-card__figure { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--white); line-height: 1; margin-block: 12px 6px; }
.token-card__unit { color: #9AAAC4; font-size: .84rem; }
.commercial-reveal__note { text-align: center; color: #C7D3E6; margin-block-start: 24px; font-size: .95rem; }
.commercial-reveal__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-block-start: 24px; }
.commercial-reveal .btn--ghost, .founder-band .btn--ghost, .cta-banner .btn--ghost { border-color: rgba(255,255,255,.4); color: var(--white); }
.commercial-reveal .btn--ghost:hover, .founder-band .btn--ghost:hover, .cta-banner .btn--ghost:hover { border-color: var(--cyan-500); background: rgba(255,255,255,.08); }

/* ============ Homepage: Worked fee-comparison cards ============ */
.fee-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .fee-grid { grid-template-columns: repeat(3, 1fr); } }
.fee-card { background: var(--white); border: 1px solid var(--line-200); border-radius: var(--radius-md); padding: 24px; }
.fee-card h3 { font-size: 1.05rem; margin-block-end: 14px; }
.fee-card__row { display: flex; justify-content: space-between; align-items: baseline; padding-block: 8px; border-bottom: 1px solid var(--line-100); font-size: .88rem; color: var(--ink-600); }
.fee-card__row:last-child { border-bottom: none; }
.fee-card__row strong { color: var(--navy-900); font-size: .95rem; }

/* ============ Homepage: Founder / Jazz ownership band ============ */
.founder-band { background: var(--navy-800); border-radius: var(--radius-lg); padding: 48px 40px; text-align: center; max-width: 820px; margin-inline: auto; }
.founder-band .eyebrow { color: var(--cyan-500); }
.founder-band .eyebrow::before { background: var(--cyan-500); }
.founder-band p.founder-band__statement { color: var(--white); font-size: 1.2rem; line-height: 1.65; margin-block: 16px 24px; }
.founder-band__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.safety-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .safety-grid { grid-template-columns: repeat(2, 1fr); } }
.safety-grid__item { display: flex; gap: 18px; align-items: flex-start; padding: 24px; background: var(--white); border: 1px solid var(--line-200); border-radius: var(--radius-lg); }
.safety-grid__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--cyan-050); color: var(--cyan-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.safety-grid__icon svg { width: 24px; height: 24px; }
.safety-grid__item h3 { font-size: 1.05rem; margin-block-end: 6px; }
.safety-grid__item p { color: var(--ink-600); font-size: .9rem; margin-block-end: 12px; }

/* ============ Homepage: Final conversion band ============ */
.final-cta { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; display: flex; align-items: center; color: var(--white); }
.final-cta__bg { position: absolute; inset: 0; }
.final-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,31,61,.92) 30%, rgba(10,31,61,.55) 75%); }
.final-cta__content { position: relative; z-index: 2; padding: 48px; max-width: 520px; }
.final-cta__content h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.1rem); margin-block-end: 10px; }
.final-cta__content p { color: #C7D3E6; margin-block-end: 24px; }
.final-cta__content .form-note { margin-block-start: 16px; color: #9AAAC4; }
.final-cta__content .form-note a { color: var(--white); text-decoration: underline; }

.icon-list { display: flex; flex-direction: column; }
.icon-list__row { display: grid; grid-template-columns: 1fr; gap: 16px; padding-block: 26px; border-bottom: 1px solid var(--line-200); }
.icon-list__row:first-child { border-top: 1px solid var(--line-200); }
.icon-list__icon { width: 48px; height: 48px; border-radius: 13px; background: var(--navy-900); color: var(--cyan-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-list__icon svg { width: 24px; height: 24px; }
.icon-list__main { display: flex; gap: 16px; align-items: flex-start; }
.icon-list__text h3 { font-size: 1.08rem; margin-block-end: 6px; }
.icon-list__text p { color: var(--ink-600); font-size: .95rem; max-width: 62ch; }
@media (min-width: 720px) { .icon-list__row { grid-template-columns: 1fr; } }

/* Highlight pills row (car/rickshaw/bike highlights) */
.highlight-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-block-start: 22px; }
.highlight-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--line-200); padding: 10px 16px; border-radius: 999px; font-size: .88rem; font-weight: 600; color: var(--navy-900); }
.highlight-pill svg { width: 16px; height: 16px; color: var(--cyan-600); flex-shrink: 0; }

/* Safety note callout */
.callout { display: flex; gap: 14px; align-items: flex-start; background: #FFF8EC; border: 1px solid #F3DFB0; border-radius: var(--radius-md); padding: 20px 22px; margin-block-start: 32px; }
.callout__icon { width: 36px; height: 36px; border-radius: 10px; background: var(--amber-500); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.callout__icon svg { width: 18px; height: 18px; }
.callout p { font-size: .92rem; color: #7A5A17; margin: 0; }
.callout strong { color: #5C4211; }

/* Reusable checklist (requirements, form structures) */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--ink-600); }
.checklist li svg { width: 16px; height: 16px; color: var(--cyan-600); flex-shrink: 0; margin-block-start: 3px; }
.req-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.req-card { background: var(--white); border: 1px solid var(--line-200); border-radius: var(--radius-md); padding: 26px 24px; }
.req-card h3 { font-size: 1.1rem; margin-block-end: 14px; display: flex; align-items: center; gap: 10px; }
.req-card__icon { width: 36px; height: 36px; border-radius: 10px; background: var(--navy-900); color: var(--cyan-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.req-card__icon svg { width: 18px; height: 18px; }
@media (min-width: 720px) { .req-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .req-grid { grid-template-columns: repeat(3, 1fr); } }

/* Emergency banner (incident help page) */
.emergency-banner { background: #FBEAEA; border: 1px solid #F3C6C6; border-radius: var(--radius-lg); padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; }
.emergency-banner h1, .emergency-banner h2 { color: #8A1F1F; font-size: 1.3rem; }
.emergency-banner p { color: #7A2A2A; font-size: .92rem; }
.emergency-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.emergency-btn { display: inline-flex; align-items: center; gap: 10px; background: #C62828; color: var(--white); padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: .95rem; }
.emergency-btn:hover { background: #A81F1F; }
.emergency-btn svg { width: 18px; height: 18px; }

/* Incident type selector */
.incident-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.incident-option { position: relative; }
.incident-option input { position: absolute; opacity: 0; }
.incident-option span { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; padding: 20px 12px; border: 1px solid var(--line-200); border-radius: var(--radius-md); font-size: .85rem; font-weight: 600; color: var(--ink-600); background: var(--white); transition: border-color .15s var(--ease), background .15s var(--ease); }
.incident-option span svg { width: 24px; height: 24px; color: var(--cyan-600); }
.incident-option input:checked + span { border-color: var(--navy-900); background: var(--cyan-050); color: var(--navy-900); }
.incident-option input:focus-visible + span { outline: 3px solid var(--cyan-600); outline-offset: 2px; }
@media (min-width: 640px) { .incident-grid { grid-template-columns: repeat(4, 1fr); } }

/* Help Centre */
.help-search { position: relative; max-width: 560px; margin-inline: auto; }
.help-search input { width: 100%; padding: 16px 20px 16px 48px; border: 1px solid var(--line-200); border-radius: 999px; font-size: 1rem; font-family: inherit; box-shadow: 0 20px 44px -28px rgba(10,31,61,.3); }
.help-search input:focus { border-color: var(--cyan-500); }
.help-search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--ink-400); }
html[dir="rtl"] .help-search input { padding: 16px 48px 16px 20px; }
html[dir="rtl"] .help-search svg { left: auto; right: 18px; }

.audience-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-block-start: 24px; }
.audience-chip { display: inline-flex; align-items: center; padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line-200); font-weight: 700; font-size: .88rem; color: var(--ink-600); background: var(--white); }
.audience-chip:hover { border-color: var(--cyan-500); color: var(--navy-900); }

.topic-columns { display: grid; gap: 32px; grid-template-columns: 1fr; }
.topic-col h3 { font-size: 1.1rem; margin-block-end: 16px; }
.help-topic-item { display: flex; align-items: center; gap: 12px; padding: 14px 4px; border-bottom: 1px solid var(--line-100); font-size: .94rem; color: var(--ink-900); font-weight: 600; }
.help-topic-item svg { width: 16px; height: 16px; color: var(--cyan-600); flex-shrink: 0; }
@media (min-width: 860px) { .topic-columns { grid-template-columns: 1fr 1fr; } }

/* Legal pages */
.legal-notice { background: var(--navy-900); color: var(--white); border-radius: var(--radius-lg); padding: 28px 26px; display: flex; gap: 16px; align-items: flex-start; }
.legal-notice__icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.12); color: var(--cyan-500); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.legal-notice__icon svg { width: 20px; height: 20px; }
.legal-notice h2 { color: var(--white); font-size: 1.1rem; margin-block-end: 8px; }
.legal-notice p { color: #C7D3E6; font-size: .92rem; }

/* Legal document body (counsel-review drafts) */
.legal-doc { max-width: 760px; }
.legal-doc__meta { font-family: var(--font-mono); font-size: .76rem; color: var(--ink-400); margin-block-end: 36px; padding-block-end: 20px; border-bottom: 1px solid var(--line-200); line-height: 1.8; }
.legal-doc__section { margin-block-end: 30px; padding-block-end: 30px; border-bottom: 1px solid var(--line-100); }
.legal-doc__section:last-child { border-bottom: none; }
.legal-doc__section h2 { font-size: 1.08rem; margin-block-end: 10px; color: var(--navy-900); }
.legal-doc__section p { color: var(--ink-600); font-size: .93rem; margin-block-end: 10px; }
.legal-doc__section p:last-child { margin-block-end: 0; }
.legal-toc { counter-reset: legal; border: 1px solid var(--line-200); border-radius: var(--radius-md); overflow: hidden; }
.legal-toc li { counter-increment: legal; display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-bottom: 1px solid var(--line-100); font-size: .94rem; font-weight: 600; color: var(--ink-900); }
.legal-toc li:last-child { border-bottom: none; }
.legal-toc li::before { content: counter(legal, decimal-leading-zero); font-family: var(--font-mono); font-size: .78rem; font-weight: 700; color: var(--ink-400); flex-shrink: 0; width: 28px; }
.legal-toc li .pending-tag { margin-inline-start: auto; font-family: var(--font-mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .06em; color: #9C6414; background: #FFF1DA; padding: 4px 10px; border-radius: 999px; font-weight: 700; flex-shrink: 0; }

/* Cookie preference toggles */
.cookie-cat { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line-100); }
.cookie-cat:last-child { border-bottom: none; }
.cookie-cat h3 { font-size: 1rem; margin-block-end: 6px; }
.cookie-cat p { color: var(--ink-600); font-size: .88rem; max-width: 56ch; }
.toggle-switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.toggle-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.toggle-switch .track { position: absolute; inset: 0; background: var(--line-200); border-radius: 999px; transition: background .2s var(--ease); }
.toggle-switch .thumb { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: var(--white); border-radius: 50%; transition: transform .2s var(--ease); box-shadow: 0 1px 3px rgba(0,0,0,.3); }
.toggle-switch input:checked + .track { background: var(--cyan-500); }
.toggle-switch input:checked + .track .thumb { transform: translateX(20px); }
html[dir="rtl"] .toggle-switch input:checked + .track .thumb { transform: translateX(-20px); }
.toggle-switch input:disabled + .track { background: var(--cyan-600); opacity: .6; cursor: not-allowed; }
.toggle-switch input:focus-visible + .track { outline: 3px solid var(--cyan-600); outline-offset: 2px; }
.cookie-prefs__status { font-size: .85rem; color: var(--success-600); font-weight: 600; min-height: 1.2em; margin-block-start: 16px; }
.cookie-prefs__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-block-start: 20px; }

/* Multi-step lead form */
.stepper-form { max-width: 640px; margin-inline: auto; background: var(--white); border: 1px solid var(--line-200); border-radius: var(--radius-lg); box-shadow: 0 30px 70px -40px rgba(10,31,61,.3); overflow: hidden; }
.stepper-form__progress { height: 4px; background: var(--line-100); }
.stepper-form__bar { height: 100%; background: var(--cyan-500); width: 14.28%; transition: width .35s var(--ease); }
.stepper-form__body { padding: 32px 28px; }
.stepper-form__step { display: none; }
.stepper-form__step.is-active { display: block; animation: stepFadeIn .35s var(--ease); }
@keyframes stepFadeIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }
html[dir="rtl"] .stepper-form__step.is-active { animation-name: stepFadeInRtl; }
@keyframes stepFadeInRtl { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }
.stepper-form__tag { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--cyan-700); font-weight: 700; margin-block-end: 10px; }
.stepper-form__step h2 { font-size: 1.35rem; margin-block-end: 8px; }
.stepper-form__step > p:not([class]) { color: var(--ink-600); font-size: .95rem; margin-block-end: 22px; }
.stepper-form__welcome-icons { display: flex; justify-content: center; gap: 22px; margin-block: 24px; }
.stepper-form__welcome-icons img { height: 60px; width: auto; }
.stepper-form__nav { display: flex; justify-content: space-between; gap: 12px; margin-block-start: 28px; padding-block-start: 20px; border-top: 1px solid var(--line-100); }
.stepper-form__review dl { display: grid; grid-template-columns: 1fr; gap: 10px; margin-block-end: 20px; }
.stepper-form__review .row { display: flex; justify-content: space-between; gap: 10px; padding-block: 10px; border-bottom: 1px solid var(--line-100); font-size: .92rem; }
.stepper-form__review dt { color: var(--ink-400); }
.stepper-form__review dd { margin: 0; font-weight: 700; color: var(--navy-900); text-align: end; }
.priority-chip { position: relative; }
.priority-chip input { position: absolute; opacity: 0; }
.priority-chip span { display: inline-flex; padding: 10px 16px; border: 1px solid var(--line-200); border-radius: 999px; font-size: .85rem; font-weight: 600; color: var(--ink-600); }
.priority-chip input:checked + span { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.priority-chip input:disabled + span { opacity: .4; }
.stepper-success { display: none; text-align: center; padding: 48px 30px; }
.stepper-success.is-visible { display: block; }
.stepper-success__icon { width: 60px; height: 60px; border-radius: 50%; background: #E4F8EE; color: var(--success-600); display: flex; align-items: center; justify-content: center; margin-inline: auto; margin-block-end: 20px; }
.stepper-success__icon svg { width: 30px; height: 30px; }
.stepper-success h2 { margin-block-end: 10px; }
.stepper-success p { color: var(--ink-600); max-width: 48ch; margin-inline: auto; margin-block-end: 22px; }
.stepper-success__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* CTA banner (reusable end-of-page section) */
.cta-banner { background: var(--navy-900); border-radius: var(--radius-lg); padding: 44px 30px; text-align: center; color: var(--white); }
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-block-end: 14px; }
.cta-banner p { color: #C7D3E6; margin-block-end: 22px; max-width: 56ch; margin-inline: auto; }

/* ============ Calculator page: stylish inputs ============ */
.calc-shell { display: grid; gap: 28px; grid-template-columns: 1fr; max-width: 900px; margin-inline: auto; }
@media (min-width: 800px) { .calc-shell { grid-template-columns: 1fr 1fr; align-items: start; } }
.calc-vehicle-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-block: 10px 22px; }
.calc-vehicle-picker__btn { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 8px; border: 1.5px solid var(--line-200); border-radius: var(--radius-md); background: var(--white); cursor: pointer; transition: border-color .15s var(--ease), background .15s var(--ease); font-family: inherit; }
.calc-vehicle-picker__btn svg { width: 26px; height: 26px; color: var(--ink-400); }
.calc-vehicle-picker__btn span { font-weight: 700; font-size: .86rem; color: var(--navy-900); }
.calc-vehicle-picker__btn small { font-family: var(--font-mono); font-size: .72rem; color: var(--ink-400); }
.calc-vehicle-picker__btn.is-active { border-color: var(--cyan-500); background: var(--cyan-050); }
.calc-vehicle-picker__btn.is-active svg { color: var(--cyan-700); }
.calc-input-group { margin-block-end: 18px; }
.calc-input-group label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink-600); margin-block-end: 6px; }
.calc-input-group__field { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--line-200); border-radius: var(--radius-sm); padding-inline: 14px; background: var(--white); transition: border-color .15s var(--ease); }
.calc-input-group__field:focus-within { border-color: var(--cyan-500); }
.calc-input-group__field input { border: none; outline: none; padding-block: 12px; font-size: 1.05rem; font-weight: 700; color: var(--navy-900); background: transparent; width: 100%; font-family: inherit; }
.calc-input-group__unit { font-family: var(--font-mono); font-size: .78rem; color: var(--ink-400); font-weight: 700; flex-shrink: 0; }
.calc-shell__result { position: sticky; top: 96px; }
