
/* ============================================================
   TRUCK — Landing Client v2 · Modernisée
   Sticky scroll storytelling · Marquee · Bigger typography
   ============================================================ */
:root {
  --paper: #FBF8F3;
  --paper-2: #F4EFE5;
  --paper-3: #ECE5D5;
  --card: #FFFFFF;
  --ink: #0D0D0D;
  --ink-soft: #5C5852;
  --ink-faint: #9B978F;
  --line: #E5DFD4;
  --line-2: #D8D1C2;
  --accent: #FF5B27;
  --accent-dark: #C73E10;
  --accent-tint: #FFE5D9;
  --sun: #FFD55A;
  --leaf: #2FCB76;
  --plum: #6B4BCC;
  --on-accent: #FFFFFF;

  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-body: "Geist", -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  --font-mono: "Geist Mono", "SF Mono", monospace;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 44px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(13,13,13,.05), 0 2px 6px rgba(13,13,13,.04);
  --sh: 0 4px 18px rgba(13,13,13,.06), 0 22px 50px -28px rgba(13,13,13,.18);
  --sh-lg: 0 12px 32px rgba(13,13,13,.08), 0 48px 100px -42px rgba(13,13,13,.28);
  --sh-xl: 0 30px 80px -30px rgba(13,13,13,.4), 0 80px 140px -50px rgba(13,13,13,.5);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.65, 0, .35, 1.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-family: var(--font-display); font-style: italic; font-weight: 400; }

.wrap { width: min(1280px, 92%); margin-inline: auto; }
.wrap-narrow { width: min(960px, 92%); margin-inline: auto; }

/* Grain texture overlay */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  opacity: .035; mix-blend-mode: multiply;
}

/* ============================================================
   NAV — scroll-aware
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--paper) 78%, transparent);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  transition: padding .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  border-bottom-color: color-mix(in oklab, var(--line) 70%, transparent);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 18px 0;
  transition: padding .3s var(--ease);
}
.nav.scrolled .nav-inner { padding: 12px 0; }
.nav-logo {
  display: flex; align-items: center; gap: 6px;
}
.nav-logo img { height: 36px; width: auto; transition: height .3s var(--ease); }
.nav.scrolled .nav-logo img { height: 30px; }
.nav-links {
  display: flex; gap: 28px; align-items: center;
  margin-left: auto;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-links a { transition: color .15s; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-driver {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: .18s;
}
.nav-driver:hover { background: var(--paper-2); color: var(--ink); }
.app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 14px;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s;
}
.app-badge:hover {
  transform: translateY(-2px);
  background: #1a1a1a;
  box-shadow: 0 10px 30px -10px rgba(13,13,13,.4);
}
.app-badge svg { width: 18px; height: 18px; }
.app-badge .ab-t { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.app-badge .ab-t small { font-size: 9.5px; opacity: .7; letter-spacing: .04em; text-transform: uppercase; font-family: var(--font-mono); }
.app-badge .ab-t b { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.app-badge-lg { padding: 16px 26px; }
.app-badge-lg svg { width: 26px; height: 26px; }
.app-badge-lg .ab-t small { font-size: 10.5px; }
.app-badge-lg .ab-t b { font-size: 17px; }

.burger { display: none; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .burger {
    display: grid; place-items: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--paper-2);
    margin-left: auto;
  }
  .burger .bars { display: grid; gap: 4px; }
  .burger .b { width: 18px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease); }
}

/* ============================================================
   HERO — Big editorial
   ============================================================ */
.hero {
  padding: clamp(50px, 8vw, 110px) 0 clamp(40px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
/* gradient orb behind */
.hero::before {
  content: "";
  position: absolute;
  width: 720px; height: 720px;
  top: -180px; right: -180px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 30%, transparent) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
  opacity: .9;
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  bottom: -200px; left: -120px;
  background: radial-gradient(circle, color-mix(in oklab, var(--sun) 40%, transparent) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
  opacity: .7;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 28px;
  font-weight: 500;
  box-shadow: var(--sh-sm);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 35%, transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 35%, transparent); }
  50% { box-shadow: 0 0 0 8px color-mix(in oklab, var(--accent) 0%, transparent); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 8vw, 116px);
  line-height: .92;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .stroke {
  position: relative;
  display: inline-block;
}
.hero h1 .stroke::after {
  content: "";
  position: absolute;
  left: 0%; right: 0%; bottom: 6%;
  height: 22%;
  background: var(--sun);
  z-index: -1;
  border-radius: 4px;
  transform: skew(-3deg);
}
.hero h1 .rot {
  display: inline-block;
  transform: rotate(-3deg) translateY(-4px);
  color: var(--accent);
}

.hero-lead {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--ink-soft);
  max-width: 54ch;
  margin-bottom: 38px;
  line-height: 1.5;
}

.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 24px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--card);
  transition: .2s var(--ease);
}
.btn-link:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.btn-link .arr { transition: transform .2s; }
.btn-link:hover .arr { transform: translateX(4px); }

.hero-trust {
  display: flex; gap: 6px; align-items: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-faint);
}
.hero-trust .stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }

/* Phone */
.hero-phone-wrap {
  position: relative;
  display: grid; place-items: center;
  perspective: 1500px;
}
.hero-phone {
  width: min(340px, 100%);
  aspect-ratio: 320/650;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  border-radius: 48px;
  padding: 14px;
  box-shadow: var(--sh-xl);
  position: relative;
  transform: rotate(-5deg) rotateY(-8deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform .8s var(--ease);
  border: 1.5px solid rgba(255,255,255,.08);
}
.hero-phone:hover { transform: rotate(-2deg) rotateY(-3deg) rotateX(0deg) translateY(-8px); }
.hero-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,91,39,.18), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  position: relative;
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 32px;
  background: var(--ink);
  border-radius: 18px;
  z-index: 5;
}
.phone-app {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 62px 18px 18px;
  gap: 14px;
}
.phone-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  padding: 0 8px;
}
.phone-bar .signal { display: flex; gap: 2px; align-items: flex-end; }
.phone-bar .signal span { width: 3px; background: var(--ink); border-radius: 1px; }
.phone-bar .signal span:nth-child(1) { height: 10px; }
.phone-bar .signal span:nth-child(2) { height: 8px; }
.phone-bar .signal span:nth-child(3) { height: 6px; }
.phone-bar .signal span:nth-child(4) { height: 4px; opacity: .35; }

.phone-route {
  background: var(--card);
  border-radius: 20px;
  padding: 14px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
}
.phone-route-row {
  display: flex; gap: 12px; align-items: center;
  padding: 6px 0;
  font-size: 12px;
}
.phone-route-row .dot {
  width: 10px; height: 10px; border-radius: 50%;
  flex: none;
}
.phone-route-row .dot.from { background: var(--accent); }
.phone-route-row .dot.to { background: var(--ink); }
.phone-route-row .ad {
  font-weight: 600; color: var(--ink); flex: 1; line-height: 1.15;
}
.phone-route-row .ad small {
  display: block; font-weight: 400; color: var(--ink-faint); font-size: 10px;
  margin-top: 2px;
}
.phone-route-line {
  margin-left: 5px;
  width: 0; border-left: 1.5px dashed var(--line-2);
  height: 10px;
}

.phone-vehicle {
  display: flex; gap: 10px;
  background: var(--card);
  border-radius: 20px;
  padding: 12px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
}
.phone-veh-card {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
  border-radius: 12px;
  font-size: 11px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: .18s;
}
.phone-veh-card:hover { background: var(--paper-2); }
.phone-veh-card.active {
  background: var(--accent-tint);
  border-color: var(--accent);
}
.phone-veh-card .emoji { font-size: 22px; display: block; margin-bottom: 4px; }
.phone-veh-card b { display: block; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.phone-veh-card small { color: var(--ink-faint); font-size: 10px; }

.phone-price {
  margin-top: auto;
  background: var(--ink);
  color: var(--paper);
  border-radius: 20px;
  padding: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-price .lbl {
  font-size: 10px;
  color: rgba(255,255,255,.6);
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: var(--font-mono);
}
.phone-price .val {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 4px;
  display: block;
}
.phone-price button {
  background: var(--accent);
  color: white;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 600;
}

.hero-sticker {
  position: absolute;
  background: var(--card);
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  z-index: 2;
}
.hero-sticker.s1 {
  left: -30px; top: 14%;
  transform: rotate(-5deg);
  animation: float1 6s ease-in-out infinite;
}
.hero-sticker.s2 {
  right: -20px; bottom: 14%;
  transform: rotate(4deg);
  animation: float2 7s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes float1 {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-10px); }
}
.hero-sticker .ic {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  flex: none;
}
.hero-sticker.s1 .ic { background: var(--accent-tint); }
.hero-sticker.s2 .ic { background: color-mix(in oklab, var(--leaf) 22%, transparent); }
.hero-sticker b { display: block; color: var(--ink); font-weight: 600; font-size: 14px; line-height: 1.1; }
.hero-sticker span { color: var(--ink-soft); font-size: 12px; }
@media (max-width: 980px) {
  .hero-sticker.s1, .hero-sticker.s2 { display: none; }
}

/* ============================================================
   TOP MARQUEE — what we transport (visible à l'arrivée)
   ============================================================ */
.top-marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-marquee::before, .top-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2; pointer-events: none;
}
.top-marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.top-marquee::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.top-marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: scroll-x 38s linear infinite;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.top-marquee-track .item {
  display: inline-flex; align-items: center; gap: 36px;
  color: rgba(251,248,243,.85);
}
.top-marquee-track .item::after {
  content: "•";
  color: var(--accent);
  font-size: 18px;
}


/* ============================================================
   MARQUEE — mid-page (existing)
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 0;
  border-block: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-x 32s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  font-style: italic;
}
.marquee-track .item {
  display: inline-flex; align-items: center; gap: 60px;
}
.marquee-track .item::after {
  content: "✦";
  color: var(--accent);
  font-size: .6em;
  font-style: normal;
}
@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
section.s {
  padding-block: clamp(70px, 9vw, 130px);
  position: relative;
}
.section-head {
  max-width: 760px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 18px;
  position: relative;
  padding-left: 22px;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1.5px;
  background: var(--accent);
  transform: translateY(-50%);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 58ch;
}

/* ============================================================
   STICKY HOW IT WORKS — Uber-style scrolltelling
   ============================================================ */
.s-how {
  background: var(--paper-2);
  padding-block: clamp(80px, 10vw, 140px);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 980px) { .how-grid { grid-template-columns: 1fr; } }

.how-steps {
  display: flex; flex-direction: column;
  gap: clamp(80px, 12vh, 180px);
}
.how-step {
  padding: 24px 0;
  transition: opacity .5s var(--ease);
  opacity: .3;
}
.how-step.active { opacity: 1; }
.how-step .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 14px;
  background: var(--accent-tint);
  border-radius: var(--r-pill);
}
.how-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--ink);
}
.how-step p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 42ch;
  line-height: 1.55;
}
.how-step .bullets {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.how-step .bullets li {
  list-style: none;
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.how-step .bullets li::before {
  content: "—";
  color: var(--accent);
  font-weight: 500;
  flex: none;
}

.how-sticky {
  position: sticky;
  top: 100px;
  height: fit-content;
  display: grid; place-items: center;
}
@media (max-width: 980px) {
  .how-sticky { position: relative; top: auto; margin-bottom: 40px; }
  .how-steps { gap: 60px; }
  .how-step { opacity: 1; }
}

.how-phone {
  width: min(340px, 100%);
  aspect-ratio: 320/650;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  border-radius: 48px;
  padding: 14px;
  box-shadow: var(--sh-xl);
  position: relative;
  border: 1.5px solid rgba(255,255,255,.08);
}
.how-phone-screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.how-phone-screen .phone-notch { top: 12px; }
.how-screen {
  position: absolute; inset: 0;
  padding: 62px 18px 18px;
  display: flex; flex-direction: column;
  gap: 14px;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.how-screen.active { opacity: 1; }

/* Screen 1: address input */
.screen-addr-input {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--card);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
  margin-top: 8px;
}
.screen-addr-input .input-row {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 12px;
  background: var(--paper-2);
  border-radius: 12px;
  font-size: 12px;
}
.screen-addr-input .input-row.focused {
  background: var(--accent-tint);
  border: 1px solid var(--accent);
}
.screen-addr-input .dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
}
.screen-addr-input .dot.from { background: var(--accent); }
.screen-addr-input .dot.to { background: var(--ink); }
.screen-addr-input .typed { color: var(--ink); font-weight: 500; }
.screen-addr-input .typed::after { content: "|"; animation: blink 1s infinite; color: var(--accent); }
.screen-addr-input .placeholder { color: var(--ink-faint); }
@keyframes blink { 50% { opacity: 0; } }
.screen-addr-input .price-mini {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 12px 0 6px;
  color: var(--accent);
}
.screen-addr-input .price-mini small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 4px;
}

/* Screen 2: vehicle */
.screen-veh {
  display: flex; flex-direction: column; gap: 10px;
}
.screen-veh .veh-opt {
  background: var(--card);
  border-radius: 16px;
  padding: 14px;
  display: flex; gap: 12px; align-items: center;
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: .2s;
}
.screen-veh .veh-opt.selected {
  border-color: var(--accent);
  background: var(--accent-tint);
}
.screen-veh .veh-opt .emoji { font-size: 28px; flex: none; }
.screen-veh .veh-opt .info { flex: 1; }
.screen-veh .veh-opt b { display: block; font-size: 13px; font-weight: 600; color: var(--ink); }
.screen-veh .veh-opt small { font-size: 11px; color: var(--ink-faint); }
.screen-veh .veh-opt .price-mini { font-family: var(--font-display); font-size: 18px; color: var(--ink); flex: none; }

/* Screen 3: tracking */
.screen-track {
  display: flex; flex-direction: column;
  gap: 12px;
}
.screen-track .map-mock {
  flex: 1;
  background:
    radial-gradient(circle at 60% 40%, color-mix(in oklab, var(--accent) 30%, transparent), transparent 40%),
    linear-gradient(120deg, var(--paper-2) 0%, var(--paper-3) 100%);
  border-radius: 18px;
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
}
.screen-track .map-mock::before, .screen-track .map-mock::after {
  content: ""; position: absolute;
  background: var(--line-2);
}
.screen-track .map-mock::before {
  top: 30%; left: -10%; right: -10%; height: 2px;
  transform: rotate(-15deg);
}
.screen-track .map-mock::after {
  top: 60%; left: -10%; right: -10%; height: 2px;
  transform: rotate(10deg);
}
.map-pin {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  z-index: 2;
}
.map-pin.driver { background: var(--accent); top: 45%; left: 35%; box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 25%, transparent); animation: pulse-pin 2s ease-in-out infinite; }
.map-pin.dest { background: var(--ink); top: 25%; right: 25%; }
@keyframes pulse-pin {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 25%, transparent); }
  50% { box-shadow: 0 0 0 12px color-mix(in oklab, var(--accent) 0%, transparent); }
}
.screen-track .eta-card {
  background: var(--card);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--sh-sm);
  display: flex; gap: 12px; align-items: center;
}
.screen-track .driver-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  flex: none;
}
.screen-track .driver-info { flex: 1; }
.screen-track .driver-info b { display: block; font-size: 13px; font-weight: 600; color: var(--ink); }
.screen-track .driver-info small { font-size: 11px; color: var(--ink-faint); }
.screen-track .driver-info .stars { color: var(--accent); font-size: 11px; letter-spacing: 1px; margin-top: 2px; display: block; }
.screen-track .eta-card .eta-mini {
  text-align: right;
}
.screen-track .eta-card .eta-mini b { font-family: var(--font-display); font-size: 22px; color: var(--accent); display: block; line-height: 1; }
.screen-track .eta-card .eta-mini small { font-size: 10px; color: var(--ink-faint); }

/* Screen 4: done */
.screen-done {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center;
  height: 100%;
}
.screen-done .check {
  width: 80px; height: 80px;
  background: color-mix(in oklab, var(--leaf) 18%, transparent);
  border: 2px solid color-mix(in oklab, var(--leaf) 50%, transparent);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 36px;
  color: var(--leaf);
}
.screen-done h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.screen-done p { font-size: 12.5px; color: var(--ink-soft); padding: 0 18px; }
.screen-done .receipt {
  margin-top: 6px;
  background: var(--card);
  border: 1px dashed var(--line-2);
  border-radius: 14px;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-soft);
  display: flex; justify-content: space-between;
  gap: 20px;
}
.screen-done .stars-pick {
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--accent);
}

/* ============================================================
   VÉHICULES — bigger cards
   ============================================================ */
.vehicles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .vehicles { grid-template-columns: 1fr; } }
.vehicle {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.vehicle:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--line-2);
}
.vehicle::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--accent-tint) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform .8s var(--ease);
}
.vehicle:hover::before { transform: scale(1.1); }
.vehicle.grand::before {
  background: radial-gradient(circle, color-mix(in oklab, var(--sun) 45%, transparent) 0%, transparent 65%);
}
.vehicle-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-faint);
  padding: 6px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}
.vehicle-emoji {
  font-size: 84px;
  margin-bottom: 28px;
  display: block;
  line-height: 1;
  position: relative;
}
.vehicle h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--ink);
  position: relative;
}
.vehicle p.desc {
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-size: 15.5px;
  max-width: 38ch;
  position: relative;
}
.vehicle .specs {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.vehicle .specs li {
  list-style: none;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.vehicle .specs li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  flex: none;
  margin-top: 2px;
}
.vehicle .specs li::after { display: none; }
.vehicle .specs li b {
  color: var(--ink);
  font-weight: 600;
}
.vehicle .specs li::before { background-image: none; }
/* Replace with checkmark */
.vehicle .specs li {
  padding-left: 0;
}
.vehicle .specs li {
  position: relative;
  padding-left: 28px;
}
.vehicle .specs li::before {
  position: absolute;
  left: 0;
  content: "✓";
}
.vehicle .price {
  display: flex; gap: 28px; align-items: baseline;
  flex-wrap: wrap;
  position: relative;
}
.vehicle .price .big {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.vehicle .price .big small {
  font-size: 13px;
  color: var(--ink-faint);
  font-family: var(--font-body);
  margin-left: 4px;
  letter-spacing: 0;
  display: block;
  margin-top: 6px;
}
.vehicle .price .km {
  font-family: var(--font-mono);
  color: var(--ink-soft);
  font-size: 14px;
}

/* ============================================================
   PRICING — dark, big numerals
   ============================================================ */
.s-pricing {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.s-pricing::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 20%, transparent) 0%, transparent 65%);
  pointer-events: none;
  border-radius: 50%;
}
.s-pricing .section-eyebrow { color: var(--accent); }
.s-pricing .section-eyebrow::before { background: var(--accent); }
.s-pricing .section-title { color: var(--paper); }
.s-pricing .section-lead { color: rgba(251,248,243,.7); }
.pricing-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 48px;
}
@media (max-width: 760px) {
  .pricing-hero { grid-template-columns: 1fr; gap: 20px; align-items: start; }
}
.pricing-hero .num {
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 180px);
  line-height: .85;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.pricing-hero .num small { font-size: .42em; opacity: .8; vertical-align: top; margin-left: 6px; }
.pricing-hero .desc {
  color: rgba(251,248,243,.85);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-style: italic;
  font-weight: 400;
  max-width: 30ch;
  line-height: 1.15;
  padding-bottom: 16px;
}

.price-table { display: grid; gap: 1px; background: rgba(255,255,255,.06); border-radius: var(--r-lg); overflow: hidden; }
.price-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  background: var(--ink);
  padding: 22px 28px;
  align-items: center;
  font-size: 16px;
  gap: 12px;
  transition: background .15s;
}
.price-row:not(.head):hover { background: #161616; }
.price-row.head {
  background: rgba(255,255,255,.04);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(251,248,243,.5);
  padding-block: 18px;
}
.price-row .label { color: var(--paper); }
.price-row .v {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 17px;
  color: var(--paper);
  text-align: right;
}
@media (max-width: 640px) {
  .price-row { grid-template-columns: 1.4fr 1fr 1fr; padding: 16px; font-size: 13px; }
  .price-row .v { font-size: 14px; }
}
.pricing-note {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(251,248,243,.5);
  font-family: var(--font-mono);
  text-align: center;
}

/* ============================================================
   TRUST — Big bold cards
   ============================================================ */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .trust { grid-template-columns: 1fr; } }
.trust-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--line-2);
}
.trust-card::before {
  content: "";
  position: absolute;
  bottom: -50%; right: -30%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--accent-tint);
  opacity: 0;
  transition: opacity .3s;
}
.trust-card:hover::before { opacity: .4; }
.trust-ic {
  width: 64px; height: 64px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r);
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 24px;
  position: relative;
  transition: transform .3s var(--ease);
}
.trust-card:hover .trust-ic { transform: rotate(-4deg) scale(1.08); }
.trust-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--ink);
  position: relative;
}
.trust-card p {
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
}

/* ============================================================
   FAQ
   ============================================================ */
.s-faq { background: var(--paper-2); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item.open { border-color: var(--accent); box-shadow: 0 8px 24px -8px color-mix(in oklab, var(--accent) 35%, transparent); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 26px 30px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: background .15s;
  font-family: var(--font-body);
}
.faq-q:hover { background: var(--paper-2); }
.faq-q .pm {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-tint);
  position: relative;
  transition: background .2s, transform .3s var(--ease);
}
.faq-q .pm::before, .faq-q .pm::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  border-radius: 1px;
  transition: background .2s;
}
.faq-q .pm::before { width: 14px; height: 1.5px; }
.faq-q .pm::after { width: 1.5px; height: 14px; transition: transform .3s var(--ease); }
.faq-item.open .faq-q .pm {
  background: var(--accent);
  transform: rotate(90deg);
}
.faq-item.open .faq-q .pm::after { transform: translate(-50%, -50%) rotate(90deg); background: white; }
.faq-item.open .faq-q .pm::before { background: white; }
.faq-a {
  overflow: hidden;
  height: 0;
  transition: height .4s var(--ease);
}
.faq-a-inner {
  padding: 0 30px 28px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.faq-a-inner strong { color: var(--ink); }
.faq-a-inner a { color: var(--accent); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.faq-help {
  margin-top: 32px;
  padding: 24px;
  background: var(--card);
  border-radius: var(--r);
  border: 1px solid var(--line);
}
.faq-help h4 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.faq-help p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 14px; }
.faq-help a { color: var(--accent); font-weight: 600; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.s-cta {
  padding-block: clamp(80px, 10vw, 140px);
}
.cta-card {
  background: var(--accent);
  color: white;
  border-radius: clamp(28px, 4vw, 56px);
  padding: clamp(56px, 8vw, 120px) clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-card::before, .cta-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  pointer-events: none;
}
.cta-card::before {
  width: 420px; height: 420px;
  top: -160px; right: -160px;
  animation: cta-orb 8s ease-in-out infinite;
}
.cta-card::after {
  width: 280px; height: 280px;
  bottom: -110px; left: -60px;
  animation: cta-orb 9s ease-in-out infinite reverse;
}
@keyframes cta-orb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}
.cta-card .eyebrow-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.18);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.cta-card h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: .95;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.cta-card p {
  font-size: 18px;
  opacity: .9;
  max-width: 48ch;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}
.cta-card .app-badge {
  position: relative;
  z-index: 2;
  background: white;
  color: var(--ink);
}
.cta-card .app-badge:hover { background: #f8f5ef; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 72px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}
.foot-brand .nav-logo { margin-bottom: 18px; }
.foot-brand p {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 32ch;
  margin-bottom: 22px;
}
.foot-socials { display: flex; gap: 10px; }
.foot-socials a {
  width: 38px; height: 38px;
  background: var(--paper-2);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: .15s;
}
.foot-socials a:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.foot-socials svg { width: 16px; height: 16px; }

.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: color .15s;
}
.foot-col a:hover { color: var(--ink); }
.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-faint);
}

/* ============================================================
   ANIMATIONS UTILS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  .hero-sticker, .hero-eyebrow .dot, .map-pin.driver { animation: none; }
  .marquee-track { animation: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--paper);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .mm-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.mobile-menu .mm-close {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--paper-2);
  font-size: 18px;
}
.mobile-menu a:not(.app-badge) {
  font-family: var(--font-display);
  font-size: 36px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-menu .app-badge {
  margin-top: 24px;
  align-self: flex-start;
  font-family: var(--font-body);
}

/* Vehicle images replacing emojis */
.vehicle-img {
  width: clamp(220px, 28vw, 320px);
  height: auto;
  display: block;
  margin: -20px 0 24px -16px;
  position: relative;
  filter: drop-shadow(0 18px 24px rgba(13,13,13,.15));
}
.veh-img {
  width: 44px;
  height: 32px;
  object-fit: contain;
  margin: 0 auto 4px;
  display: block;
}
.veh-img-row {
  width: 56px;
  height: 40px;
  object-fit: contain;
  flex: none;
}


/* ============================================================
   DETAIL PAGES — page hero, alternating sections, vehicles
   ============================================================ */
.page-hero {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(40px, 5vw, 60px);
  position: relative;
}
.page-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 132px);
  line-height: .92;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--ink);
  max-width: 16ch;
}
.page-lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: 36px;
  line-height: 1.55;
}

.s-detail-step {
  padding-block: clamp(60px, 8vw, 120px);
  position: relative;
}
.s-detail-step.alt { background: var(--paper-2); }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.detail-grid.reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .detail-grid, .detail-grid.reverse { grid-template-columns: 1fr; }
  .detail-grid.reverse > :first-child { order: 0; }
}
.detail-img {
  border-radius: var(--r-2xl);
  aspect-ratio: 5/4;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh);
}
.detail-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: .98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.step-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.detail-lead {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 26px;
  line-height: 1.55;
  max-width: 42ch;
}
.detail-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-faint);
  margin: 28px 0 12px;
  font-weight: 600;
}
.detail-bullets {
  display: flex; flex-direction: column; gap: 10px;
  list-style: none; padding: 0;
}
.detail-bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.detail-bullets li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex: none;
  margin-top: 2px;
}
.detail-bullets li b { color: var(--ink); font-weight: 600; }

/* Vehicle stats inline */
.vehicle-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin: 28px 0 4px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vehicle-stats > div { display: flex; flex-direction: column; gap: 4px; }
.v-stat-n {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.v-stat-n small {
  font-size: 0.42em;
  color: var(--ink-faint);
  font-family: var(--font-body);
  margin-left: 2px;
  vertical-align: 0.2em;
}
.v-stat-l {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-faint);
}

/* Model pills */
.model-pills { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; }
.model-pills li {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

/* Comparator table */
.s-compare .compare-table {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--card);
}
.ct-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
  align-items: center;
  font-size: 15px;
}
.ct-row:last-child { border-bottom: 0; }
.ct-row.head {
  background: var(--paper-2);
  padding: 24px;
}
.ct-row.head b {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 2px;
}
.ct-row.head small {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-faint);
}
.ct-row .lbl { color: var(--ink); font-weight: 500; }
.ct-row .ok { color: var(--leaf); font-weight: 600; }
.ct-row .ko { color: var(--ink-faint); }
.ct-row span:not(.lbl):not(.ok):not(.ko) {
  font-family: var(--font-mono);
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 640px) {
  .ct-row { grid-template-columns: 1.4fr .8fr .8fr; padding: 14px 16px; font-size: 13px; }
  .ct-row.head b { font-size: 16px; }
}

/* Tarifs — Example cards */
.example-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .example-grid { grid-template-columns: 1fr; } }
.ex-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.ex-card:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.ex-type {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-faint);
  background: var(--paper-2);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  align-self: flex-start;
}
.ex-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.ex-route {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-size: 14px;
  color: var(--ink-soft);
  align-items: center;
  padding: 4px 0;
}
.ex-dot { width: 10px; height: 10px; border-radius: 50%; }
.ex-dot.from { background: var(--accent); }
.ex-dot.to { background: var(--ink); }
.ex-line {
  width: 0; height: 14px;
  border-left: 1.5px dashed var(--line-2);
  margin-left: 4px;
}
.ex-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ex-meta > span { display: flex; flex-direction: column; gap: 2px; }
.ex-meta b { font-size: 14.5px; color: var(--ink); font-weight: 600; }
.ex-meta small { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); }
.ex-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: auto;
  padding-top: 8px;
}
.ex-total span { font-size: 13px; color: var(--ink-faint); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .12em; }
.ex-total b {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}
.ex-detail { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); line-height: 1.5; }

/* Paiement cards */
.paiement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .paiement-grid { grid-template-columns: 1fr; } }
.paiement-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
}
.paiement-emoji { font-size: 40px; display: block; margin-bottom: 18px; line-height: 1; }
.paiement-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; letter-spacing: -0.02em; margin-bottom: 8px; }
.paiement-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }


/* ============================================================
   SÉCURITÉ — Numbered cards
   ============================================================ */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .security-grid { grid-template-columns: 1fr; } }
.sec-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.sec-card:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.sec-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 72px;
  color: var(--accent-tint);
  line-height: 1;
  margin-bottom: 24px;
}
.sec-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--ink);
}
.sec-card > p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  margin-bottom: 20px;
}

/* ============================================================
   AIDE — search + category cards
   ============================================================ */
.help-search {
  display: flex; gap: 10px; align-items: center;
  background: var(--card);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-pill);
  padding: 14px 22px;
  max-width: 520px;
  margin-top: 28px;
  box-shadow: var(--sh-sm);
}
.help-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
}
.help-search input::placeholder { color: var(--ink-faint); }
.help-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .help-categories { grid-template-columns: 1fr; } }
.hc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 8px;
  transition: .2s var(--ease);
  position: relative;
  text-decoration: none;
  color: inherit;
}
.hc:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--sh);
}
.hc-emoji { font-size: 36px; line-height: 1; margin-bottom: 8px; }
.hc h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); }
.hc p { color: var(--ink-soft); font-size: 14.5px; }
.hc-arrow {
  position: absolute; top: 32px; right: 32px;
  font-size: 18px;
  color: var(--ink-faint);
  transition: transform .2s, color .2s;
}
.hc:hover .hc-arrow { color: var(--accent); transform: translateX(4px); }

/* ============================================================
   CONTACT — channels + form
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-channel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.cc-emoji { font-size: 36px; line-height: 1; }
.contact-channel h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; letter-spacing: -0.02em; }
.contact-channel p { color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 18px;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
}
.contact-form label > span {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-faint);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: var(--r);
  border: 1.5px solid var(--line-2);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-row.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 560px) { .contact-form .form-row.split { grid-template-columns: 1fr; } }
.contact-form button[type="submit"] {
  align-self: flex-start;
  margin-top: 8px;
}

/* ============================================================
   ZONES — map mock + dept cards
   ============================================================ */
.zones-map-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .zones-map-card { grid-template-columns: 1fr; } }
.zone-stats { display: flex; flex-direction: column; gap: 24px; }
.zone-stats > div { display: flex; flex-direction: column; gap: 4px; }
.z-n {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--accent);
}
.z-n small { font-size: .42em; color: var(--ink); font-family: var(--font-body); margin-left: 4px; vertical-align: 0.25em; }
.z-l { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); }
.zone-map {
  position: relative;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 45%, var(--accent-tint) 0%, transparent 55%),
    var(--paper-2);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.z-pin {
  position: absolute;
  background: var(--card);
  border: 2px solid var(--accent);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh);
}
.pin-paris {
  background: var(--accent); color: white; font-size: 18px;
  padding: 14px 20px;
  top: 42%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2;
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .dept-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dept-grid { grid-template-columns: 1fr; } }
.dept-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  transition: .2s var(--ease);
}
.dept-card:hover { transform: translateY(-2px); box-shadow: var(--sh-sm); border-color: var(--line-2); }
.dept-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.dept-card p {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.5;
}


/* ============================================================
   LEGAL — TOC + body
   ============================================================ */
.legal-grid { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
@media (max-width: 880px) { .legal-grid { grid-template-columns: 1fr; gap: 24px; } }
.legal-toc { position: sticky; top: 100px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; }
@media (max-width: 880px) { .legal-toc { position: static; } }
.legal-toc h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-faint); margin-bottom: 10px; font-weight: 600; }
.legal-toc ol { list-style: none; padding: 0; counter-reset: toc; }
.legal-toc li { counter-increment: toc; padding: 5px 0; font-size: 13.5px; }
.legal-toc li a { color: var(--ink-soft); text-decoration: none; display: inline-flex; gap: 8px; transition: color .15s; }
.legal-toc li a::before { content: counter(toc); font-family: var(--font-mono); color: var(--ink-faint); width: 18px; text-align: right; flex: none; }
.legal-toc li a:hover { color: var(--accent); }
.legal-body section { padding: 18px 0 24px; border-bottom: 1px solid var(--line); }
.legal-body section:last-child { border-bottom: 0; }
.legal-body h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.02em; margin-bottom: 16px; scroll-margin-top: 100px; }
.legal-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
.legal-body p strong { color: var(--ink); }
.legal-body ul, .legal-body ol { padding-left: 22px; margin: 4px 0 14px; }
.legal-body li { color: var(--ink-soft); font-size: 15.5px; padding: 5px 0; line-height: 1.55; }
.legal-body a { color: var(--accent); }
.legal-body a:hover { text-decoration: underline; }

/* USAGE GRID */
.usage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 960px) { .usage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .usage-grid { grid-template-columns: 1fr; } }
.usage-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.usage-card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--line-2); }
.usage-tag { display: inline-block; font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-dark); background: var(--accent-tint); padding: 5px 12px; border-radius: var(--r-pill); align-self: flex-start; }
.usage-emoji { font-size: 44px; line-height: 1; margin: 8px 0; }
.usage-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; letter-spacing: -0.02em; line-height: 1.05; color: var(--ink); }
.usage-card > p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }


/* ============================================================
   TRUCK vs LOCATION — Comparison table
   ============================================================ */
.s-compare-truck { background: var(--paper-2); }
.vs-table {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.vs-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 28px 44px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.vs-row > * + * { border-left: 1px solid var(--line); padding-left: 48px; }
.vs-row:last-child { border-bottom: 0; }
.vs-row.head {
  background: var(--paper-2);
  padding: 40px 44px 36px;
  border-bottom: 2px solid var(--accent);
  gap: 48px;
}
.vs-row.head span { font-size: 16px; }
.vs-row.head b {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: -0.02em;
  display: block;
  margin-top: 8px;
  line-height: 1.1;
}
.vs-emoji { font-size: 28px; line-height: 1; margin-right: 16px; vertical-align: middle; display: inline-block; }
.vs-label { font-weight: 500; color: var(--ink); font-size: 15.5px; padding-right: 8px; }
.vs-cell {
  font-size: 14.5px;
  line-height: 1.5;
  padding-left: 36px;
  position: relative;
  min-height: 24px;
  display: flex;
  align-items: center;
}
.vs-cell::before {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  display: grid; place-items: center;
}
.vs-cell.yes {
  color: var(--ink);
}
.vs-cell.yes::before {
  content: "✓";
  background: color-mix(in oklab, var(--leaf) 22%, transparent);
  color: var(--leaf);
}
.vs-cell.no {
  color: var(--ink-faint);
}
.vs-cell.no::before {
  content: "✕";
  background: color-mix(in oklab, #E0625C 18%, transparent);
  color: #E0625C;
}
.vs-truck { color: var(--accent); }
.vs-rent { color: var(--ink-faint); }

@media (max-width: 880px) {
  .vs-row, .vs-row.head { grid-template-columns: 1fr; gap: 14px; padding: 24px 26px; }
  .vs-row > * + * { border-left: 0; padding-left: 36px; }
  .vs-row.head { padding-bottom: 14px; }
  .vs-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); padding-bottom: 8px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
  .vs-cell { padding-left: 36px; }
}

.vs-summary {
  margin-top: 32px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  display: flex; gap: 24px; align-items: center;
}
.vs-summary-emoji {
  font-size: 56px;
  line-height: 1;
  flex: none;
}
.vs-summary h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 10px;
}
.vs-summary p { color: rgba(251,248,243,.7); font-size: 15.5px; line-height: 1.5; }
@media (max-width: 640px) { .vs-summary { flex-direction: column; text-align: center; gap: 14px; } }


/* ============================================================
   COUNTER
   ============================================================ */
.s-counter {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(48px, 6vw, 80px);
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 760px) { .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.counter-item { display: flex; flex-direction: column; gap: 6px; }
.counter-item .cn {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--accent);
}
.counter-item .cl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(251,248,243,.6);
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.s-reviews { background: var(--paper-2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.review .stars { color: var(--accent); font-size: 16px; letter-spacing: 3px; }
.review p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  flex: 1;
}
.review footer {
  display: flex; flex-direction: column; gap: 2px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.review footer b { font-weight: 600; font-size: 14.5px; }
.review footer span { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 49;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 22px;
  border-radius: var(--r-pill);
  gap: 12px;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--sh-lg);
}
.sticky-mobile-cta svg { width: 20px; height: 20px; flex: none; }
@media (max-width: 720px) { .sticky-mobile-cta { display: flex; } body { padding-bottom: 80px; } }


/* ============================================================
   IDF MAP — Real SVG departments
   ============================================================ */
.zones-map-card .idf-map {
  position: relative;
  aspect-ratio: 7/6;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-radius: var(--r-xl);
  padding: 16px;
  overflow: hidden;
}
.idf-map svg { width: 100%; height: 100%; }
.idf-d path, .idf-d ellipse {
  fill: var(--card);
  stroke: var(--line-2);
  stroke-width: 2;
  transition: fill .25s var(--ease), transform .25s var(--ease), filter .25s;
  cursor: pointer;
  transform-origin: center;
  transform-box: fill-box;
  filter: url(#dropmap);
}
.idf-d text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  fill: var(--ink);
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.idf-d:hover path, .idf-d:hover ellipse {
  fill: var(--accent-tint);
  stroke: var(--accent);
  transform: translateY(-3px) scale(1.02);
}
.idf-d:hover text { fill: var(--accent-dark); }

/* Paris highlighted */
.idf-paris ellipse {
  fill: var(--accent);
  stroke: var(--accent-dark);
  stroke-width: 3;
}
.idf-paris text {
  fill: white;
  font-size: 30px;
  font-weight: 500;
}
.idf-paris:hover ellipse {
  fill: var(--accent);
  transform: translateY(-3px) scale(1.05);
}
.idf-paris:hover text { fill: white; }

/* 45 km coverage ring */
.idf-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 6 8;
  opacity: 0.35;
  pointer-events: none;
  animation: idf-ring-spin 60s linear infinite;
  transform-origin: 320px 310px;
}
@keyframes idf-ring-spin {
  to { stroke-dashoffset: -200; }
}

/* Legend */
.idf-legend {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px;
  color: var(--ink-soft);
  box-shadow: var(--sh-sm);
}
.leg-item { display: flex; align-items: center; gap: 8px; }
.leg-dot {
  width: 10px; height: 10px; border-radius: 50%; flex: none;
}
.leg-dot.paris { background: var(--accent); }
.leg-dot.dept { background: var(--card); border: 1.5px solid var(--line-2); }
.leg-dot.ring { background: transparent; border: 1.5px dashed var(--accent); }

@media (max-width: 880px) {
  .idf-legend { position: relative; bottom: auto; left: auto; margin-top: 12px; }
}

/* Update zones-map-card grid */
.zones-map-card { grid-template-columns: minmax(220px, 1fr) 2fr !important; }
@media (max-width: 880px) {
  .zones-map-card { grid-template-columns: 1fr !important; }
}
.zone-stats {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 18px !important;
}
.zone-stats > div { padding: 18px; background: var(--paper-2); border-radius: var(--r); }
.zone-stats .z-n { font-size: clamp(36px, 4vw, 48px); }
@media (max-width: 480px) {
  .zone-stats { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   DOWNLOAD PAGE
   ============================================================ */
.dl-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .dl-grid { grid-template-columns: 1fr; } }

.dl-actions {
  display: flex; gap: 18px; flex-wrap: wrap; align-items: stretch;
  margin: 28px 0;
}
.dl-android {
  display: flex; flex-direction: column; justify-content: center; gap: 2px;
  padding: 16px 24px;
  background: var(--paper-2);
  border: 1px dashed var(--line-2);
  border-radius: var(--r-pill);
  color: var(--ink-soft);
  min-width: 200px;
}
.dl-android b { font-size: 17px; color: var(--ink); }
.dl-android small { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); }
.dl-soon {
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  background: var(--accent-tint);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  align-self: flex-start;
  font-weight: 700;
}

.dl-bullets {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 16px;
  max-width: 480px;
}
.dl-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.dl-bullets li::before {
  content: "✓";
  width: 22px; height: 22px;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  flex: none;
}
.dl-bullets li b { color: var(--ink); font-weight: 600; }

.dl-phone-wrap { display: grid; place-items: center; }
.dl-qr-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex; gap: 24px; align-items: center;
  box-shadow: var(--sh);
  max-width: 380px;
}
.dl-qr {
  background: white;
  border-radius: var(--r);
  padding: 12px;
  flex: none;
  border: 1px solid var(--line);
}
.dl-qr-card b {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 6px;
  line-height: 1.1;
}
.dl-qr-card p { color: var(--ink-soft); font-size: 14px; line-height: 1.4; }
@media (max-width: 560px) { .dl-qr-card { flex-direction: column; text-align: center; } }


/* DOWNLOAD page — make App Store badge bigger */
.dl-grid .app-badge.app-badge-lg {
  padding: 18px 32px;
  font-size: 16px;
}
.dl-grid .app-badge.app-badge-lg svg {
  width: 32px; height: 32px;
}
.dl-grid .app-badge.app-badge-lg .ab-t small {
  font-size: 11px;
  letter-spacing: .06em;
}
.dl-grid .app-badge.app-badge-lg .ab-t b {
  font-size: 22px;
  letter-spacing: -0.01em;
}
.s-cta .app-badge.app-badge-lg svg {
  width: 30px; height: 30px;
}


/* === Mobile hero font-size override (juin 2026) ============================
   Garde-fou en complement des clamp() : sur les viewports <= 480px, on force
   un h1 hero a 26px max pour eviter tout debordement / wrap moche en cas de
   police custom plus large que prevue. !important pour passer outre les
   declarations inline en HTML. */
@media (max-width: 480px) {
  h1 { font-size: 26px !important; }
  .hero h1, .subhero h1, .page-hero h1 { font-size: 26px !important; }
}

