/* ═══════════════════════════════════════════════════════════════
   Zipp Landing — design system
   Style : minimalisme cinétique dark (Uber-like), accent jaune chirurgical
   Couleurs sources : lib/core/design/zipp_colors.dart
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Brand (ZippColors) */
  --yellow: #FFE135;
  --yellow-dark: #CCB42A;
  --bg: #0A0A0A;          /* obsidian */
  --surface: #1A1A1A;     /* charcoal */
  --surface-2: #2C2C2C;   /* graphite */
  --surface-3: #3A3A3A;   /* slate */
  --text: #F5F5F5;
  --text-2: #9CA3AF;
  --text-3: #4B5563;
  --success: #22C55E;

  /* Layout */
  --max: 1200px;
  --pad: clamp(20px, 4vw, 48px);
  --radius: 20px;
  --radius-sm: 12px;

  /* Type */
  --font: "Archivo", -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul[role="list"], ol[role="list"] { list-style: none; }
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }

::selection { background: var(--yellow); color: var(--bg); }

/* ── Accessibilité ─────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--yellow); color: var(--bg);
  padding: 10px 18px; border-radius: 0 0 12px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

/* ── Grain global ──────────────────────────────────────────── */
.grain {
  position: fixed; inset: -50%; z-index: 1; pointer-events: none;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.035;
  animation: grain-shift 9s steps(10) infinite;
}
@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 3%); }
  40% { transform: translate(3%, -2%); }
  60% { transform: translate(-3%, -3%); }
  80% { transform: translate(2%, 2%); }
}

/* ── Boutons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; letter-spacing: 0.01em;
  border-radius: 999px; border: 1.5px solid transparent;
  padding: 14px 30px; font-size: 16px;
  cursor: pointer; white-space: nowrap;
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s,
              border-color 0.25s, box-shadow 0.35s;
  will-change: transform;
}
.btn--lg { padding: 17px 38px; font-size: 17px; }
.btn--sm { padding: 9px 20px; font-size: 14px; }
.btn--yellow {
  background: var(--yellow); color: var(--bg);
  box-shadow: 0 0 0 0 rgba(255, 225, 53, 0);
}
.btn--yellow:hover {
  background: var(--yellow);
  box-shadow: 0 14px 44px -10px rgba(255, 225, 53, 0.45);
}
.btn--ghost {
  border-color: var(--surface-3); color: var(--text);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn--dark { background: var(--bg); color: var(--yellow); }
.btn--dark:hover { box-shadow: 0 14px 44px -10px rgba(10, 10, 10, 0.55); }

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.82);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 14px var(--pad);
  display: flex; align-items: center; gap: 32px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 10px; }
.nav__brand img { border-radius: 9px; }
.nav__wordmark { font-size: 22px; font-weight: 900; letter-spacing: -0.03em; }
.nav__links { display: flex; gap: 26px; margin-left: 8px; }
.nav__links a {
  font-size: 14.5px; font-weight: 600; color: var(--text-2);
  position: relative; padding: 4px 0; transition: color 0.25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--yellow);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 16px; }

.lang { display: flex; gap: 2px; background: var(--surface); border-radius: 999px; padding: 3px; }
.lang__item {
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 10px; border-radius: 999px; color: var(--text-2);
  transition: color 0.2s, background 0.2s;
}
.lang__item:hover { color: var(--text); }
.lang__item.is-active { background: var(--yellow); color: var(--bg); }

.nav__burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px;
  margin-left: auto;
}
.nav__burger span {
  width: 24px; height: 2px; background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px var(--pad) 24px;
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__mobile a:not(.btn) { padding: 12px 0; font-weight: 600; color: var(--text-2); }
.nav__mobile .btn { margin-top: 12px; }
.nav__mobile .lang--mobile { align-self: flex-start; margin-top: 10px; }
.nav.is-open .nav__mobile { display: flex; }

/* ── Bandeau langue ────────────────────────────────────────── */
.lang-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 90; max-width: calc(100vw - 32px);
  background: var(--surface); border: 1px solid var(--surface-3);
  border-radius: 999px; padding: 10px 12px 10px 20px;
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.7);
  animation: banner-in 0.5s var(--ease);
}
@keyframes banner-in { from { opacity: 0; transform: translate(-50%, 16px); } }
.lang-banner a {
  background: var(--yellow); color: var(--bg); font-weight: 700;
  border-radius: 999px; padding: 7px 16px; font-size: 13px; flex-shrink: 0;
}
.lang-banner button {
  background: none; border: none; color: var(--text-2); cursor: pointer;
  font-size: 18px; line-height: 1; padding: 6px; flex-shrink: 0;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 2;
  padding: clamp(120px, 16vh, 180px) 0 0;
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(560px circle at var(--mx, 70%) var(--my, 30%),
      rgba(255, 225, 53, 0.07), transparent 65%),
    radial-gradient(900px circle at 85% -10%,
      rgba(255, 225, 53, 0.05), transparent 60%);
  transition: background 0.12s linear;
}
.hero__route {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-2);
  border: 1px solid var(--surface-3); border-radius: 999px;
  padding: 8px 18px; margin-bottom: 28px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.hero__title {
  font-size: clamp(46px, 7.2vw, 92px);
  font-weight: 900; letter-spacing: -0.035em; line-height: 0.98;
  margin-bottom: 26px;
}
.hero__line { display: block; }
.hero__line--accent { color: var(--yellow); }
.hero__sub {
  font-size: clamp(17px, 1.6vw, 20px); color: var(--text-2);
  max-width: 54ch; margin-bottom: 36px; font-weight: 500;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero__estimate {
  display: inline-block;
  font-size: 14.5px; font-weight: 700;
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 225, 53, 0.4);
  margin-bottom: 32px;
  transition: text-decoration-color 0.25s;
}
.hero__estimate:hover { text-decoration-color: var(--yellow); }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  font-size: 13.5px; font-weight: 600; color: var(--text-2);
}
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--yellow); flex-shrink: 0;
}

/* Phone mockups */
.hero__visual { position: relative; justify-self: center; }
.phone {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px; padding: 11px;
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone__screen {
  border-radius: 30px; overflow: hidden; position: relative;
  background: var(--surface);
}
.phone__screen::before {
  content: ""; position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 82px; height: 22px; border-radius: 999px;
  background: #050505; z-index: 2;
}
.phone--hero { width: min(320px, 78vw); animation: phone-float 7s ease-in-out infinite; }
@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(0.4deg); }
  50% { transform: translateY(-14px) rotate(-0.4deg); }
}
.phone--sm { width: min(240px, 60vw); }
.phone--offset { margin-top: 84px; }

.hero__chip {
  position: absolute; z-index: 3;
  background: rgba(26, 26, 26, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px; padding: 11px 16px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 18px 44px -14px rgba(0, 0, 0, 0.7);
  display: flex; align-items: center; gap: 9px;
  animation: phone-float 7s ease-in-out infinite;
}
.hero__chip--1 { top: 16%; left: -17%; animation-delay: -2.4s; }
.hero__chip--2 { bottom: 19%; right: -13%; color: var(--yellow); animation-delay: -4.6s; }
.hero__chip-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  flex-shrink: 0;
}

/* Vidéo */
.hero__video {
  position: relative; z-index: 2;
  max-width: var(--max); margin: clamp(64px, 8vw, 110px) auto 0;
  padding: 0 var(--pad);
}
.video-real {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #000;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}

/* Photos réelles */
.why__photo {
  display: block; width: 100%;
  aspect-ratio: 16 / 7; object-fit: cover;
  border-radius: var(--radius);
  margin-top: clamp(40px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.zone__img {
  display: block; width: 100%;
  aspect-ratio: 3 / 2; object-fit: cover;
}
.driver__photo {
  display: block; width: 100%;
  aspect-ratio: 5 / 6; object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Marquee ───────────────────────────────────────────────── */
.marquee {
  position: relative; z-index: 2;
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0; margin-top: clamp(70px, 9vw, 120px);
  background: #0D0D0D;
}
.marquee__track { display: inline-flex; animation: marquee 36s linear infinite; }
.marquee__track span {
  font-size: clamp(15px, 1.6vw, 19px); font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 225, 53, 0.5);
  padding-right: 48px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Sections communes ─────────────────────────────────────── */
.section { position: relative; z-index: 2; padding: clamp(84px, 11vw, 150px) 0 0; }
.section__inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section__head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.kicker {
  font-size: 13px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 16px;
}
.section__title {
  font-size: clamp(32px, 4.6vw, 56px); font-weight: 900;
  letter-spacing: -0.03em; margin-bottom: 18px;
}
.section__sub { font-size: clamp(16px, 1.5vw, 18.5px); color: var(--text-2); font-weight: 500; }

/* ── Comment ça marche ─────────────────────────────────────── */
.how__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px); align-items: start;
}
.steps { position: relative; display: flex; flex-direction: column; gap: clamp(34px, 4vw, 52px); }
.steps::before {
  content: ""; position: absolute; left: 27px; top: 30px; bottom: 30px;
  width: 0; border-left: 2px dashed rgba(255, 225, 53, 0.22);
}
.step { position: relative; display: flex; gap: 24px; align-items: flex-start; }
.step__num {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--surface-3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; color: var(--yellow);
  position: relative; z-index: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step:hover .step__num {
  border-color: var(--yellow);
  box-shadow: 0 0 34px -8px rgba(255, 225, 53, 0.5);
}
.step__title { font-size: clamp(20px, 2vw, 24px); margin-bottom: 8px; font-weight: 800; }
.step__desc { color: var(--text-2); font-size: 15.5px; max-width: 46ch; }

.how__phones {
  display: flex; gap: clamp(16px, 2vw, 28px); justify-content: center;
  position: sticky; top: 110px;
}

/* ── Pourquoi Zipp ─────────────────────────────────────────── */
.features {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius); padding: 30px 26px;
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
}
.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 225, 53, 0.4);
  background: #1E1E1E;
}
.feature__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255, 225, 53, 0.09);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature__icon svg {
  width: 26px; height: 26px;
  stroke: var(--yellow); fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.feature h3 { font-size: 18.5px; margin-bottom: 10px; font-weight: 800; }
.feature p { color: var(--text-2); font-size: 14.5px; }

/* ── Zones ─────────────────────────────────────────────────── */
.zones__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.zone {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.zone:hover { transform: translateY(-6px); border-color: rgba(255, 225, 53, 0.35); }
.zone__body { padding: 28px; }
.zone__head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }
.zone__flag { width: 34px; height: auto; border-radius: 4px; flex-shrink: 0; }
.zone__head h3 { font-size: clamp(22px, 2.2vw, 27px); font-weight: 900; }
.zone__badge {
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--success); background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 4px 11px; border-radius: 999px;
}
.zone__cities { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 12px; }
.zone__desc { color: var(--text-2); font-size: 15px; margin-bottom: 18px; }
.zone__price {
  display: inline-block; font-weight: 800; font-size: 14.5px;
  color: var(--yellow); background: rgba(255, 225, 53, 0.08);
  border: 1px solid rgba(255, 225, 53, 0.25);
  padding: 8px 16px; border-radius: 999px;
}

/* ── Chauffeur ─────────────────────────────────────────────── */
.driver__grid {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.driver__benefits { display: flex; flex-direction: column; gap: 14px; margin: 30px 0 36px; }
.driver__benefits li {
  display: flex; align-items: center; gap: 14px;
  font-weight: 600; font-size: 16px;
}
.driver__benefits li::before {
  content: ""; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255, 225, 53, 0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFE135' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E") center / 13px no-repeat;
  border: 1px solid rgba(255, 225, 53, 0.3);
}

/* ── Formulaire recrutement chauffeur ──────────────────────── */
.recruit {
  margin-top: clamp(56px, 7vw, 96px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 52px);
}
.recruit__head { max-width: 640px; margin-bottom: 34px; }
.recruit__title { font-size: clamp(24px, 2.8vw, 34px); font-weight: 900; margin-bottom: 10px; }
.recruit__sub { color: var(--text-2); font-size: 15.5px; }

.recruit__form {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--text-2);
}
.recruit__form input[type="text"],
.recruit__form input[type="tel"],
.recruit__form select {
  font-family: var(--font); font-size: 15.5px; font-weight: 500;
  color: var(--text);
  background: #131313;
  border: 1.5px solid var(--surface-3);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
  appearance: none; -webkit-appearance: none;
}
.recruit__form input::placeholder { color: var(--text-3); }
.recruit__form input:focus,
.recruit__form select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 225, 53, 0.14);
}
.recruit__form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

/* Sélecteur pays (drapeaux) */
.flag-toggle { display: flex; gap: 12px; flex-wrap: wrap; }
.flag-opt {
  display: inline-flex; align-items: center; gap: 11px;
  background: #131313;
  border: 1.5px solid var(--surface-3);
  border-radius: 999px;
  padding: 12px 22px 12px 16px;
  font-weight: 700; font-size: 15px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.flag-opt input { position: absolute; opacity: 0; pointer-events: none; }
.flag-opt .zone__flag { width: 28px; }
.flag-opt:hover { border-color: var(--text-3); }
.flag-opt.is-checked {
  border-color: var(--yellow);
  background: rgba(255, 225, 53, 0.07);
  transform: translateY(-1px);
}
.flag-opt.is-checked::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow); margin-left: 2px;
}

/* Chips véhicule */
.chip-toggle { display: flex; gap: 10px; flex-wrap: wrap; }
.chip-opt {
  display: inline-flex; align-items: center;
  background: #131313;
  border: 1.5px solid var(--surface-3);
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700; font-size: 14px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  color: var(--text-2);
}
.chip-opt input { position: absolute; opacity: 0; pointer-events: none; }
.chip-opt:hover { border-color: var(--text-3); color: var(--text); }
.chip-opt.is-checked {
  border-color: var(--yellow);
  background: rgba(255, 225, 53, 0.09);
  color: var(--yellow);
}

.recruit__actions { align-items: flex-start; gap: 14px; }
.recruit__actions .btn { align-self: stretch; max-width: 420px; }
.recruit__note { font-size: 13px; color: var(--text-3); font-weight: 500; }

/* ── Bandeau final jaune ───────────────────────────────────── */
.band {
  margin-top: clamp(84px, 11vw, 150px);
  background: var(--yellow); color: var(--bg);
  clip-path: polygon(0 clamp(12px, 2.2vw, 34px), 100% 0, 100% 100%, 0 100%);
  padding: clamp(90px, 11vw, 160px) 0 clamp(70px, 9vw, 120px);
}
.band__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  text-align: center;
}
.band__title {
  font-size: clamp(40px, 6.4vw, 84px); font-weight: 900;
  letter-spacing: -0.035em; margin-bottom: 18px;
}
.band__sub {
  font-size: clamp(16px, 1.7vw, 20px); font-weight: 600;
  opacity: 0.75; margin-bottom: 36px;
}
.band__note { margin-top: 20px; font-size: 13.5px; font-weight: 700; opacity: 0.55; }
.band__note--link {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.25s;
}
.band__note--link:hover { opacity: 0.9; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: #070707; border-top: 1px solid rgba(255, 255, 255, 0.05); position: relative; z-index: 2; }
.footer__inner {
  max-width: var(--max); margin: 0 auto; padding: clamp(50px, 6vw, 80px) var(--pad) 40px;
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: clamp(36px, 5vw, 70px);
}
.footer__tagline { color: var(--text-2); font-size: 14.5px; margin-top: 16px; max-width: 34ch; }
.footer__cols {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h4 {
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 6px;
}
.footer__col a { color: var(--text-2); font-size: 14.5px; font-weight: 500; transition: color 0.2s; }
.footer__col a:hover { color: var(--yellow); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px var(--pad);
  text-align: center; color: var(--text-3); font-size: 13px;
}

/* ── Reveal (scroll) ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__chip--1 { left: -6%; }
  .hero__chip--2 { right: -4%; }
}

@media (max-width: 860px) {
  .nav__links, .nav__right { display: none; }
  .nav__burger { display: flex; }
  .nav { background: rgba(10, 10, 10, 0.9); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 26px; }
  .hero__chip--1 { left: 0; }
  .hero__chip--2 { right: 0; }

  .how__grid { grid-template-columns: 1fr; }
  .how__phones { position: static; }
  .phone--offset { margin-top: 48px; }

  .zones__grid { grid-template-columns: 1fr; }
  .driver__grid { grid-template-columns: 1fr; }
  .driver__photo { max-width: 460px; }
  .recruit__form { grid-template-columns: 1fr; }
  .recruit__actions .btn { max-width: none; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .features { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .steps::before { left: 23px; }
  .step__num { width: 48px; height: 48px; font-size: 13px; }
  .how__phones { flex-direction: column; align-items: center; }
  .phone--offset { margin-top: 0; }
}

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .grain { animation: none; }
}

/* ── Widget testeur (flag landing_tester_widget_enabled) ───── */
.tester {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: min(340px, calc(100vw - 32px));
  background: var(--surface);
  border: 1px solid rgba(255, 225, 53, 0.35);
  border-radius: 16px;
  padding: 18px 18px 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  animation: tester-in 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes tester-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.tester__close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-2);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}
.tester__close:hover { color: var(--text); }
.tester__kicker {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tester__title { font-size: 18px; margin-bottom: 4px; }
.tester__sub { color: var(--text-2); font-size: 13px; margin-bottom: 12px; }
.tester__form { display: grid; gap: 8px; }
.tester__form input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
}
.tester__form input:focus {
  outline: none;
  border-color: rgba(255, 225, 53, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 225, 53, 0.12);
}
.tester__cta { width: 100%; }
.tester__note {
  color: var(--text-2);
  font-size: 11px;
  margin-top: 8px;
  margin-bottom: 0;
}
@media (max-width: 520px) {
  .tester { right: 12px; left: 12px; bottom: 12px; width: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .tester { animation: none; }
}

/* ── Widget testeur : perk + état succès ───────────────────── */
.tester__perk {
  color: var(--yellow);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 12px;
}
#testerSuccessPanel { text-align: center; padding: 8px 4px 4px; position: relative; }
.tester__title--success { margin-top: 10px; }
.tester__check svg {
  width: 56px;
  height: 56px;
  stroke: var(--yellow);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tester__check circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: tester-draw 0.6s ease-out forwards;
}
.tester__check path {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: tester-draw 0.4s ease-out 0.45s forwards;
}
@keyframes tester-draw { to { stroke-dashoffset: 0; } }
.tester__confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.tester__confetti i {
  position: absolute;
  top: -10px;
  width: 7px;
  height: 11px;
  border-radius: 2px;
  opacity: 0;
  animation: tester-fall 1.6s ease-in forwards;
}
.tester__confetti i:nth-child(odd) { background: var(--yellow); }
.tester__confetti i:nth-child(even) { background: #F5F5F5; }
.tester__confetti i:nth-child(1) { left: 6%; animation-delay: 0.05s; }
.tester__confetti i:nth-child(2) { left: 16%; animation-delay: 0.25s; }
.tester__confetti i:nth-child(3) { left: 27%; animation-delay: 0.10s; }
.tester__confetti i:nth-child(4) { left: 38%; animation-delay: 0.35s; }
.tester__confetti i:nth-child(5) { left: 49%; animation-delay: 0.00s; }
.tester__confetti i:nth-child(6) { left: 60%; animation-delay: 0.30s; }
.tester__confetti i:nth-child(7) { left: 70%; animation-delay: 0.15s; }
.tester__confetti i:nth-child(8) { left: 80%; animation-delay: 0.40s; }
.tester__confetti i:nth-child(9) { left: 89%; animation-delay: 0.20s; }
.tester__confetti i:nth-child(10) { left: 95%; animation-delay: 0.45s; }
@keyframes tester-fall {
  0% { opacity: 1; transform: translateY(0) rotate(0deg); }
  100% { opacity: 0; transform: translateY(190px) rotate(340deg); }
}
@media (prefers-reduced-motion: reduce) {
  .tester__check circle, .tester__check path { animation: none; stroke-dashoffset: 0; }
  .tester__confetti { display: none; }
}
