/* ===== Design Tokens — Bleu & Jaune ===== */
:root {
  --bg: #ffffff;
  --bg-elev: #f2f6fd;
  --bg-card: #ffffff;
  --surface-line: rgba(17, 32, 58, 0.1);
  --fg: #0e1830;
  --muted: #46536b;
  --blue-900: #0a1730;
  --blue-800: #0e2557;
  --blue-700: #123a86;
  --blue-600: #1557c2;
  --blue-500: #2d6dd6;
  --blue-400: #6b98e4;
  --blue-300: #a3c1ee;
  --blue-200: #cee0f6;
  --blue-100: #e5eefb;
  --blue-50: #f2f6fd;
  --yellow-700: #8a5c00;
  --yellow-600: #c99400;
  --yellow-500: #c49116;
  --yellow-400: #f7c633;
  --yellow-300: #fad866;
  --yellow-200: #fce89e;
  --yellow-100: #fef3cc;
  --yellow-50: #fffaeb;
  --green: #2ecc71;
  --green-soft: rgba(46,204,113,0.12);
  --amber: #c49116;
  --accent: var(--blue-600);
  --accent-2: var(--blue-700);
  --accent-3: var(--blue-800);
  --accent-soft: rgba(21, 87, 194, 0.1);
  --accent-glow: rgba(21, 87, 194, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  font-synthesis: none;
}

/* ===== Custom scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f3f6; }
::-webkit-scrollbar-thumb { background: var(--blue-200); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-300); }

/* ===== Mouse follower glow ===== */
#cursor-glow {
  position: fixed; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 87, 194,0.06) 0%, rgba(196, 145, 22,0.03) 50%, transparent 70%);
  pointer-events: none; z-index: 9998; transform: translate(-50%, -50%);
  transition: opacity 0.3s; opacity: 0;
}
@media (hover: hover) { #cursor-glow { opacity: 1; } }

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(21, 87, 194,0.15); color: var(--blue-800); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: "Sora", "Plus Jakarta Sans", sans-serif; line-height: 1.12; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.text-accent { color: var(--blue-600); }
.text-yellow { color: var(--yellow-500); }

/* ===== Section divider waves ===== */
.section-divider { display: block; width: 100%; height: 60px; fill: var(--bg-elev); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 0.95rem; border-radius: 999px;
  padding: 12px 22px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--primary { background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); color: #fff; box-shadow: 0 8px 24px rgba(21, 87, 194, 0.35); }
.btn--primary:hover { background: linear-gradient(135deg, var(--blue-700), var(--blue-800)); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(21, 87, 194, 0.45); }
.btn--yellow { background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600)); color: #fff; box-shadow: 0 8px 24px rgba(196, 145, 22, 0.35); }
.btn--yellow:hover { background: linear-gradient(135deg, var(--yellow-600), #8a5c00); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(196, 145, 22, 0.45); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--surface-line); }
.btn--ghost:hover { background: var(--accent-soft); border-color: rgba(21, 87, 194,0.3); transform: translateY(-2px); }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(219, 231, 249, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--surface-line); background: rgba(219, 231, 249, 0.94); box-shadow: 0 4px 20px rgba(17,32,58,0.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  display: grid; place-items: center; border-radius: 12px;
  background: #fff; padding: 6px 10px;
  box-shadow: 0 4px 14px rgba(21, 87, 194, 0.22);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
  line-height: 0;
}
.brand__mark:hover { transform: scale(1.05); box-shadow: 0 6px 18px rgba(21, 87, 194, 0.3); }
.brand__mark img { height: 34px; width: auto; max-width: none; display: block; }
.footer .brand__mark img { height: 32px; }
.brand__accent { color: var(--blue-600); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav__link { color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color 0.2s, background 0.2s; border-radius: 8px; padding: 6px 2px; }
.nav__link i, .nav__link svg { margin-right: 6px; font-size: 0.85em; }
.nav__cta i { margin-right: 6px; }
.nav__link:hover { color: var(--fg); background: var(--accent-soft); padding: 6px 10px; margin: 0 -8px; }
.nav__logout-form { display: contents; }
.nav__link--button { background: none; border: 0; cursor: pointer; font: inherit; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav overlay ── */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 48;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.nav-overlay.is-visible { opacity: 1; }
@media (max-width: 760px) { .nav-overlay { display: block; pointer-events: none; } .nav-overlay.is-visible { pointer-events: auto; } }

/* ===== Animated background shapes ===== */
.hero__shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__shape {
  position: absolute; border-radius: 50%; opacity: 0.6;
  animation: heroShapeAnim 12s var(--ease) infinite;
}
.hero__shape:nth-child(1) {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(21, 87, 194,0.12), transparent);
  top: -180px; right: -100px; animation-delay: 0s; animation-duration: 14s;
}
.hero__shape:nth-child(2) {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(196, 145, 22,0.08), transparent);
  bottom: -80px; left: -80px; animation-delay: -3s; animation-duration: 16s;
}
.hero__shape:nth-child(3) {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(21, 87, 194,0.06), transparent);
  top: 40%; left: 10%; animation-delay: -6s; animation-duration: 12s;
}
@keyframes heroShapeAnim {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-10px, 30px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

/* ===== Hero ===== */
.hero {
  position: relative; padding: 72px 0 80px; overflow: hidden;
  background: linear-gradient(180deg, #f2f6fd 0%, #eaf1fc 40%, #ffffff 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(21, 87, 194,0.15) 0%, transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(196, 145, 22,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0; opacity: 0.025;
  background-image:
    linear-gradient(rgba(21, 87, 194,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 87, 194,0.3) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600;
  color: var(--blue-700); background: rgba(21, 87, 194, 0.08); border: 1px solid rgba(21, 87, 194, 0.25);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
  animation: fadeInDown 0.6s var(--ease) both;
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow-500); box-shadow: 0 0 0 4px rgba(196, 145, 22,0.2); }
.hero__title { font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 800; margin-bottom: 20px; text-wrap: balance; animation: fadeInUp 0.6s var(--ease) 0.15s both; }
.hero__title .text-accent { background: linear-gradient(135deg, var(--blue-600), var(--blue-400), var(--blue-700)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; background-size: 200% 200%; animation: shimmerText 4s var(--ease) infinite; }
.hero__title .text-yellow { background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
@keyframes shimmerText { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero__lead { color: var(--muted); font-size: 1.08rem; max-width: 52ch; margin-bottom: 30px; animation: fadeInUp 0.6s var(--ease) 0.25s both; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; animation: fadeInUp 0.6s var(--ease) 0.35s both; }
.hero__actions .btn--primary { position: relative; overflow: hidden; }
.hero__actions .btn--primary::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%); transition: transform 0.6s;
}
.hero__actions .btn--primary:hover::after { transform: translateX(100%); }
.hero__stats { display: flex; gap: 30px; flex-wrap: wrap; animation: fadeInUp 0.6s var(--ease) 0.45s both; }
.hero__stats li { position: relative; display: flex; flex-direction: column; padding-left: 30px; }
.hero__stats li:first-child { padding-left: 0; }
.hero__stats li:not(:first-child)::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--surface-line) 20%, var(--surface-line) 80%, transparent);
}
.hero__stats strong {
  font-family: "Sora", sans-serif; font-size: 1.9rem; line-height: 1.1;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero__stats span { color: var(--muted); font-size: 0.85rem; margin-top: 2px; }

.hero__media { position: relative; animation: fadeIn 0.8s var(--ease) 0.3s both; perspective: 1000px; }
.hero__media::before {
  content: ''; position: absolute; inset: -12% -8% -8% -12%; z-index: -1; border-radius: 50%;
  background:
    radial-gradient(circle at 70% 25%, rgba(21,87,194,0.22), transparent 60%),
    radial-gradient(circle at 25% 80%, rgba(196,145,22,0.16), transparent 60%);
  filter: blur(48px);
}
.hero__img {
  width: 100%; border-radius: 24px; object-fit: cover; aspect-ratio: 4 / 4.4;
  box-shadow: 0 30px 70px rgba(17,32,58,0.18); border: 1px solid var(--surface-line);
  transition: transform 0.6s var(--ease); transform-style: preserve-3d;
}
.hero__img:hover { transform: scale(1.02) rotateY(-2deg); }
.hero__card {
  position: absolute; background: rgba(255,255,255,0.94); backdrop-filter: blur(10px);
  border: 1px solid var(--surface-line); border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 16px 40px rgba(17,32,58,0.16); animation: float 5s ease-in-out infinite;
  transition: transform 0.3s var(--ease);
}
.hero__card:hover { transform: translateY(-4px) scale(1.03); }
.hero__card--eta { top: 24px; left: -18px; display: flex; flex-direction: column; }
.hero__card-label { color: var(--muted); font-size: 0.72rem; }
.hero__card-value { font-family: "Sora", sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--blue-600); }
.hero__card--status { bottom: 30px; right: -14px; display: flex; align-items: center; gap: 9px; font-size: 0.85rem; font-weight: 600; animation-delay: 1s; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.dot--pulse { box-shadow: 0 0 0 0 rgba(46,204,113,0.6); animation: pulse 2s infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.55); } 70% { box-shadow: 0 0 0 10px rgba(46,204,113,0); } 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== Trust strip ===== */
.strip { border-block: 1px solid var(--surface-line); background: linear-gradient(180deg, #fff, var(--blue-50)); position: relative; }
.strip__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 26px; padding: 26px 20px; }
.strip__item { color: var(--fg); font-weight: 600; font-size: 0.92rem; display: flex; align-items: center; gap: 12px; }
.strip__item::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow-500); flex: none; }

/* ===== Sections ===== */
.section { padding: 92px 0; position: relative; }
.section--alt { background: var(--bg-elev); }
.section__head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue-600); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 20px; height: 1.5px; background: var(--blue-500); opacity: 0.25; border-radius: 2px; }
.section__title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; margin-bottom: 16px; text-wrap: balance; }
.section__head .section__title::after {
  content: ''; display: block; width: 56px; height: 3px; margin: 18px auto 0;
  border-radius: 999px; background: linear-gradient(90deg, var(--blue-500), var(--yellow-500));
}
.section__sub { color: var(--muted); font-size: 1.05rem; text-wrap: pretty; }

/* ===== Cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--bg-card); border: 1px solid var(--surface-line); border-radius: var(--radius);
  padding: 28px; transition: transform 0.4s var(--ease-spring), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, transparent 60%, rgba(21, 87, 194,0.03));
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--yellow-500));
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 20px 50px rgba(17,32,58,0.08); }
.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; }
.card__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--accent-soft); color: var(--blue-600); margin-bottom: 18px; transition: transform 0.3s var(--ease), background 0.3s var(--ease); }
.card:hover .card__icon { transform: scale(1.1) rotate(-3deg); background: rgba(21, 87, 194,0.15); }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 56px; left: calc(12.5% + 11px); right: calc(12.5% + 11px);
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--yellow-500), var(--blue-500));
  pointer-events: none; border-radius: 2px;
}
@media (max-width: 980px) { .steps::before { display: none; } }
.step {
  position: relative; padding: 28px; background: var(--bg-card); border: 1px solid var(--surface-line);
  border-radius: var(--radius); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  overflow: hidden;
}
.step::after {
  content: ''; position: absolute; bottom: 0; left: 20%; right: 20%; height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--yellow-500));
  border-radius: 2px; opacity: 0; transition: opacity 0.3s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(17,32,58,0.06); }
.step:hover::after { opacity: 1; }
.step__num {
  font-family: "Sora", sans-serif; font-size: 2.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--blue-500), var(--yellow-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: 6px; line-height: 1;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; }

/* ===== Showcase ===== */
.showcase__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; overflow: hidden; }
.showcase__media { position: relative; }
.showcase__media::before {
  content: ''; position: absolute; inset: -30px; z-index: -1; border-radius: 40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(21,87,194,0.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(196, 145, 22,0.14), transparent 60%);
  filter: blur(40px);
}
.showcase__media::after {
  content: ''; position: absolute; inset: 12px; border-radius: 22px;
  border: 2px dashed rgba(21, 87, 194,0.15); z-index: -1; transform: rotate(2deg);
  transition: transform 0.5s var(--ease);
}
.showcase__media:hover::after { transform: rotate(0deg); }
.showcase__media img {
  width: 100%; border-radius: 22px; border: 1px solid var(--surface-line);
  box-shadow: 0 24px 60px rgba(17,32,58,0.16);
  transition: transform 0.5s var(--ease);
}
.showcase__media:hover img { transform: scale(1.02) rotate(-0.5deg); }
.showcase__content .section__title { margin-top: 10px; }

/* ===== Phone mockup (app tracking) ===== */
.phone-mock {
  position: relative; margin: 0 auto; max-width: 280px;
  background: linear-gradient(160deg, #16233d, var(--blue-900));
  border-radius: 40px; padding: 14px 12px 0; overflow: hidden;
  box-shadow: 0 30px 70px rgba(10,23,48,0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
  transition: transform 0.5s var(--ease);
}
.showcase__media:hover .phone-mock { transform: scale(1.02) rotate(-0.5deg); }
.phone-mock__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 18px; background: var(--blue-900); border-radius: 0 0 12px 12px; z-index: 3;
}
.phone-mock__topbar {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: #fff; font-family: "Sora", sans-serif; font-weight: 700; font-size: 0.92rem;
  padding: 30px 18px 14px; border-radius: 26px 26px 0 0; text-align: center;
}
.phone-mock__map {
  position: relative; height: 190px; overflow: hidden;
  background: linear-gradient(160deg, var(--blue-100), var(--blue-50));
}
.phone-mock__grid {
  position: absolute; inset: 0; opacity: 0.5;
  background-image:
    linear-gradient(rgba(21,87,194,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,87,194,0.12) 1px, transparent 1px);
  background-size: 26px 26px;
}
.phone-mock__route { position: absolute; inset: 0; width: 100%; height: 100%; }
.phone-mock__route path { animation: dashMove 3s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -28; } }
.phone-mock__pin {
  position: absolute; left: 78%; top: 82%; transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--yellow-500); color: #fff; display: grid; place-items: center;
  font-size: 0.8rem; animation: pulseYellow 2s infinite;
}
@keyframes pulseYellow {
  0% { box-shadow: 0 0 0 0 rgba(196, 145, 22,0.55); }
  70% { box-shadow: 0 0 0 12px rgba(196, 145, 22,0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 145, 22,0); }
}
.phone-mock__eta {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(6px);
  border-radius: 12px; padding: 8px 14px;
  box-shadow: 0 10px 24px rgba(10,23,48,0.16);
  display: flex; flex-direction: column; font-size: 0.7rem; color: var(--muted);
}
.phone-mock__eta strong { font-family: "Sora", sans-serif; font-size: 1.2rem; color: var(--blue-600); }
.phone-mock__steps {
  display: flex; justify-content: space-between; background: #fff; padding: 18px 14px 22px;
  position: relative;
}
.phone-mock__steps::before {
  content: ''; position: absolute; top: 24px; left: 34px; right: 34px; height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--yellow-500));
}
.phone-mock__step {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.62rem; color: var(--muted); font-weight: 600; flex: 1;
}
.phone-mock__dot { width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 2px solid var(--blue-200); z-index: 1; }
.phone-mock__step.is-done .phone-mock__dot { background: var(--blue-600); border-color: var(--blue-600); }
.phone-mock__step.is-active .phone-mock__dot { background: var(--yellow-500); border-color: var(--yellow-500); box-shadow: 0 0 0 4px rgba(196, 145, 22,0.25); }
.phone-mock__step.is-done, .phone-mock__step.is-active { color: var(--fg); }
.checklist { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 30px; }
.checklist li { position: relative; padding-left: 34px; color: var(--fg); font-weight: 500; transition: transform 0.2s var(--ease); }
.checklist li:hover { transform: translateX(4px); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(21, 87, 194, 0.1); border: 1px solid rgba(21, 87, 194, 0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231557c2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

.showcase__lead { color: var(--muted); font-size: 0.98rem; line-height: 1.7; margin-top: 14px; }
.showcase__content .checklist { margin-top: 18px; }

/* ===== App mobile — bientôt disponible ===== */
.app-soon {
  border: 1px solid var(--surface-line); border-radius: var(--radius);
  padding: 22px 22px 24px;
  background:
    radial-gradient(420px 200px at 100% 0%, rgba(196, 145, 22, 0.06), transparent 60%),
    linear-gradient(180deg, var(--bg-card), rgba(21, 87, 194, 0.035));
}
.app-soon__head {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--fg); font-weight: 600; margin-bottom: 18px;
}
.app-soon__head strong { color: var(--blue-600); }
.app-soon__pulse {
  width: 9px; height: 9px; border-radius: 50%; background: var(--yellow-500); flex: none;
  animation: appSoonPulse 2s var(--ease) infinite;
}
@keyframes appSoonPulse {
  0% { box-shadow: 0 0 0 0 rgba(196, 145, 22, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(196, 145, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 145, 22, 0); }
}
.app-soon__stores { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.app-soon__store {
  display: inline-flex; align-items: center; gap: 12px; cursor: default;
  background: var(--accent-soft); border: 1px solid rgba(21, 87, 194, 0.18);
  padding: 11px 18px; border-radius: 14px; opacity: 0.9;
}
.app-soon__store i { font-size: 1.4rem; color: var(--blue-600); }
.app-soon__store > span { display: flex; flex-direction: column; line-height: 1.15; font-size: 0.98rem; font-weight: 700; color: var(--fg); }
.app-soon__store small { font-weight: 500; font-size: 0.64rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.5px; }
.app-soon__note { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }
@media (max-width: 560px) {
  .app-soon__stores { flex-direction: column; }
  .app-soon__store { width: 100%; }
}

/* ===== Testimonials ===== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--bg-card); border: 1px solid var(--surface-line); border-radius: var(--radius);
  padding: 28px; position: relative;
}
.testimonial::before { content: '"'; position: absolute; top: 12px; right: 20px; font-size: 4rem; line-height: 1; color: var(--blue-500); opacity: 0.1; font-family: 'Sora', sans-serif; }
.testimonial__stars { color: var(--yellow-500); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial blockquote { color: var(--muted); font-size: 0.93rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-soft); color: var(--blue-600); display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; }
.testimonial__name { font-weight: 600; font-size: 0.9rem; }
.testimonial__role { color: var(--muted); font-size: 0.78rem; }

/* ===== Pricing ===== */
.pricing { max-width: 760px; margin: 0 auto; display: grid; gap: 30px; }
.pricing__bar { display: flex; height: 64px; border-radius: 14px; overflow: hidden; border: 1px solid var(--surface-line); }
.pricing__fill { display: grid; place-items: center; color: #fff; font-weight: 700; transition: flex 0.6s var(--ease); }
.pricing__fill--driver { flex: 0 0 75%; background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); }
.pricing__fill--platform { flex: 0 0 25%; background: linear-gradient(135deg, var(--yellow-500), var(--yellow-600)); color: #fff; }
.pricing__example { background: var(--bg-card); border: 1px solid var(--surface-line); border-radius: var(--radius); padding: 28px; }
.pricing__rows { display: grid; gap: 12px; margin: 16px 0; }
.pricing__row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--surface-line); }
.pricing__row:last-child { border-bottom: 0; }
.pricing__row span { color: var(--muted); }
.pricing__row strong { font-family: "Sora", sans-serif; font-size: 1.1rem; }
.pricing__note { color: var(--muted); font-size: 0.82rem; }

/* ===== B2B — Entreprises ===== */
.b2b { padding: 64px 0; }
.b2b__panel {
  position: relative; overflow: hidden; border-radius: 28px;
  background: linear-gradient(135deg, #0a1730 0%, #0e2557 30%, #123a86 65%, #1557c2 100%);
  padding: 56px;
}
.b2b__panel::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(650px 380px at 15% 0%, rgba(255,255,255,0.08), transparent 60%),
              radial-gradient(450px 300px at 90% 100%, rgba(196, 145, 22,0.14), transparent 55%);
  pointer-events: none;
}
.b2b__inner { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.eyebrow--light { color: var(--yellow-400); }
.eyebrow--light::before, .eyebrow--light::after { background: var(--yellow-400); opacity: 0.4; }
.b2b__title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; color: #fff; margin: 12px 0 16px; text-wrap: balance; }
.b2b__lead { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.7; max-width: 54ch; margin-bottom: 28px; }
.b2b__media { display: flex; flex-direction: column; gap: 16px; }
.b2b__card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 16px 20px; backdrop-filter: blur(6px);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.b2b__card:hover { transform: translateX(4px); background: rgba(255,255,255,0.12); }
.b2b__card i { font-size: 1.3rem; color: var(--yellow-400); width: 28px; text-align: center; flex-shrink: 0; }
.b2b__card strong { display: block; color: #fff; font-family: 'Sora', sans-serif; font-size: 0.98rem; }
.b2b__card span { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

/* ===== Livreur teaser strip ===== */
.livreur-teaser { background: var(--bg-elev); border-block: 1px solid var(--surface-line); }
.livreur-teaser__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; flex-wrap: wrap;
}
.livreur-teaser__text { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 0.9rem; flex: 1; min-width: 240px; }
.livreur-teaser__text i { color: var(--blue-600); font-size: 1.1rem; flex-shrink: 0; }
.livreur-teaser__text strong { color: var(--fg); }
.livreur-teaser__link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--blue-600); font-weight: 700;
  font-size: 0.88rem; white-space: nowrap; transition: gap 0.2s var(--ease);
}
.livreur-teaser__link:hover { gap: 12px; }

/* ===== Modal — Devis entreprise ===== */
.modal-devis { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-devis.is-open { display: flex; }
.modal-devis__backdrop { position: absolute; inset: 0; background: rgba(10,23,48,0.55); backdrop-filter: blur(4px); }
.modal-devis__panel {
  position: relative; background: #fff; border-radius: 22px; width: 100%; max-width: 520px;
  max-height: 92vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: authCardIn 0.35s var(--ease);
  padding: 0;
}
.modal-devis__panel--success { text-align: center; padding: 44px 32px; }

/* Header — gradient charte graphique */
.modal-devis__header {
  position: relative; text-align: center; color: #fff; overflow: hidden;
  padding: 34px 32px 26px; border-radius: 22px 22px 0 0;
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 45%, var(--blue-600) 100%);
}
.modal-devis__header::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(320px 200px at 15% -10%, rgba(255,255,255,0.14), transparent 60%),
              radial-gradient(260px 180px at 100% 110%, rgba(196, 145, 22,0.28), transparent 60%);
  pointer-events: none;
}
.modal-devis__icon {
  position: relative; width: 54px; height: 54px; border-radius: 14px; margin: 0 auto 14px;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.22);
  color: var(--yellow-400); display: grid; place-items: center; font-size: 1.35rem;
}
.modal-devis__header h3 { position: relative; font-family: 'Sora', sans-serif; font-size: 1.2rem; margin-bottom: 6px; }
.modal-devis__header p { position: relative; color: rgba(255,255,255,0.82); font-size: 0.9rem; }

.modal-devis__close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 0; color: #fff; cursor: pointer; z-index: 1;
  display: grid; place-items: center; transition: background 0.2s, color 0.2s;
}
.modal-devis__close:hover { background: rgba(255,255,255,0.28); }

.modal-devis__body { padding: 28px 32px 30px; }
.modal-devis__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.modal-devis__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-devis__row .modal-devis__field { margin-bottom: 0; }
.modal-devis__row { margin-bottom: 16px; }
.modal-devis__field label { font-weight: 700; font-size: 0.8rem; color: #2c3a5c; text-transform: uppercase; letter-spacing: 0.03em; }
.modal-devis__required { color: #e74c3c; }

.modal-devis__input-wrap { position: relative; display: flex; align-items: center; }
.modal-devis__input-icon {
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  color: var(--blue-400); font-size: 0.9rem; pointer-events: none; transition: color 0.2s;
}
.modal-devis__input-wrap:focus-within .modal-devis__input-icon { color: var(--blue-600); }
.modal-devis__input-wrap--textarea .modal-devis__input-icon { top: 16px; transform: none; }
.modal-devis__field input, .modal-devis__field textarea, .modal-devis__field select {
  width: 100%; padding: 12px 16px 12px 42px; border-radius: 12px; border: 1.5px solid rgba(17,32,58,0.12);
  font-family: inherit; font-size: 0.95rem; outline: none; transition: all 0.25s ease; resize: vertical;
}
.modal-devis__field select { appearance: none; -webkit-appearance: none; background: #fff; cursor: pointer; }
.modal-devis__field input:focus, .modal-devis__field textarea:focus, .modal-devis__field select:focus {
  border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(21, 87, 194,0.1);
}
.modal-devis__field input.is-invalid, .modal-devis__field textarea.is-invalid, .modal-devis__field select.is-invalid { border-color: #e74c3c; }

/* ── Calendrier de rendez-vous B2B ── */
.rdv-help { font-size: 0.8rem; color: var(--muted); margin: -2px 0 8px; }
.rdv-calendar { border: 1.5px solid rgba(17,32,58,0.12); border-radius: 12px; padding: 12px; }
.rdv-calendar__loading { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.85rem; padding: 8px 4px; }
.rdv-calendar__empty { color: var(--muted); font-size: 0.85rem; margin: 4px; }
.rdv-spin { width: 14px; height: 14px; border: 2px solid rgba(17,32,58,0.15); border-top-color: var(--blue-600); border-radius: 50%; animation: authSpin 0.7s linear infinite; }
.rdv-days { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 8px; border-bottom: 1px solid rgba(17,32,58,0.08); scrollbar-width: thin; }
.rdv-day { flex: 0 0 auto; padding: 7px 12px; border-radius: 999px; border: 1.5px solid rgba(17,32,58,0.12); background: #fff; font-family: inherit; font-size: 0.78rem; font-weight: 600; color: #2c3a5c; cursor: pointer; white-space: nowrap; text-transform: capitalize; transition: all 0.15s ease; }
.rdv-day:hover { border-color: var(--blue-600); }
.rdv-day.is-on { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.rdv-slots { display: flex; flex-wrap: wrap; gap: 6px; max-height: 132px; overflow-y: auto; }
.rdv-slot { padding: 7px 10px; border-radius: 8px; border: 1.5px solid rgba(17,32,58,0.12); background: #fff; font-family: inherit; font-size: 0.8rem; font-weight: 600; color: #2c3a5c; cursor: pointer; transition: all 0.15s ease; }
.rdv-slot:hover { border-color: var(--blue-600); }
.rdv-slot.is-on { background: var(--blue-600); border-color: var(--blue-600); color: #fff; }
.modal-devis__error { color: #e74c3c; font-size: 0.78rem; min-height: 1em; }
.modal-devis__general-error {
  background: rgba(231,76,60,0.08); border: 1px solid rgba(231,76,60,0.2); color: #e74c3c;
  padding: 10px 14px; border-radius: 10px; font-size: 0.85rem; margin-bottom: 16px;
}
.modal-devis__submit { width: 100%; position: relative; }
.modal-devis__submit .spinner {
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
  border-radius: 50%; display: none; animation: authSpin 0.6s linear infinite;
}
.modal-devis__submit.is-loading { pointer-events: none; opacity: 0.85; }
.modal-devis__submit.is-loading .spinner { display: inline-block; }
.modal-devis__submit.is-loading .btn-text { display: none; }
@keyframes authSpin { to { transform: rotate(360deg); } }
.modal-devis__success-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--green-soft); color: var(--green); display: grid; place-items: center; font-size: 1.6rem;
}
.modal-devis__panel--success h3 { font-family: 'Sora', sans-serif; font-size: 1.25rem; margin-bottom: 10px; }
.modal-devis__panel--success p { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
.modal-devis__panel--success .modal-devis__close { background: var(--bg-elev); color: var(--muted); }
.modal-devis__panel--success .modal-devis__close:hover { background: var(--blue-100); color: var(--blue-700); }

@media (max-width: 760px) {
  .b2b__panel { padding: 36px 24px; }
  .b2b__inner { grid-template-columns: 1fr; gap: 32px; }
  .modal-devis__row { grid-template-columns: 1fr; gap: 0; }
  .modal-devis__row .modal-devis__field { margin-bottom: 16px; }
  .modal-devis__header { padding: 28px 24px 22px; }
  .modal-devis__body { padding: 24px 22px 26px; }
}

/* ===== Zones ===== */
.zones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.zone { position: relative; background: var(--bg-card); border: 1px solid var(--surface-line); border-radius: var(--radius); padding: 26px; transition: transform 0.4s var(--ease-spring), box-shadow 0.3s var(--ease); overflow: hidden; }
.zone:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(17,32,58,0.08); }
.zone::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-500), var(--yellow-500)); opacity: 0; transition: opacity 0.3s var(--ease); }
.zone:hover::before { opacity: 1; }
.zone--soon::before { background: linear-gradient(90deg, var(--muted), var(--surface-line)); }
.zone h3 { font-size: 1.3rem; margin-bottom: 10px; }
.zone p { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }
.zone__tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: var(--green-soft); color: var(--green); }
.zone__tag--soon { background: rgba(196, 145, 22,0.1); color: var(--yellow-600); }
.zone--soon { opacity: 0.85; border-style: dashed; }

/* ===== CTA ===== */
.cta { padding: 90px 0; }
.cta__inner {
  text-align: center;
  background: linear-gradient(135deg, #0a1730 0%, #0e2557 30%, #123a86 60%, #1557c2 100%);
  border-radius: 28px; padding: 72px 28px;
  position: relative; overflow: hidden;
}
.cta__inner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 350px at 20% 0%, rgba(255,255,255,0.1), transparent 60%),
              radial-gradient(400px 250px at 80% 100%, rgba(196, 145, 22,0.08), transparent 50%);
}
.cta__inner::after {
  content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 145, 22,0.06), transparent);
  top: -80px; right: -80px;
  animation: ctaOrb 8s var(--ease) infinite;
}
@keyframes ctaOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.1); }
}
.cta__title { position: relative; color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 14px; }
.cta__sub { position: relative; color: rgba(255,255,255,0.85); max-width: 56ch; margin: 0 auto 32px; font-size: 1.05rem; }
.cta__actions { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.12); color: #fff;
  padding: 14px 24px; border-radius: 14px; font-weight: 700;
  transition: transform 0.3s var(--ease-spring), background 0.3s var(--ease);
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1);
}
.store-btn:hover { transform: translateY(-4px) scale(1.02); background: rgba(255,255,255,0.2); }
.store-btn span { display: flex; flex-direction: column; line-height: 1.15; font-size: 1.05rem; }
.store-btn small { font-weight: 500; font-size: 0.68rem; opacity: 0.7; }
.cta__stores { position: relative; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.store-btn--soon { cursor: default; opacity: 0.72; background: rgba(255,255,255,0.08); }
.store-btn--soon:hover { transform: none; background: rgba(255,255,255,0.08); }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item {
  background: var(--bg-card); border: 1px solid var(--surface-line); border-radius: var(--radius);
  padding: 4px 24px; transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq__item:hover { box-shadow: 0 4px 20px rgba(17,32,58,0.04); }
.faq__item[open] { border-color: rgba(21, 87, 194,0.4); box-shadow: 0 4px 24px rgba(21, 87, 194,0.06); }
.faq__item summary {
  list-style: none; cursor: pointer; font-family: "Sora", sans-serif; font-weight: 700;
  font-size: 1.05rem; padding: 20px 40px 20px 0; position: relative; outline: none;
  transition: color 0.2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(21, 87, 194,0.1); transition: all 0.3s var(--ease);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231557c2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); background-color: rgba(21, 87, 194,0.2); }
.faq__item summary:focus-visible { color: var(--blue-600); }
.faq__item p { color: var(--muted); font-size: 0.98rem; padding: 0 0 22px; line-height: 1.7; }

/* ===== Floating mobile CTA ===== */
.floating-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(14px);
  border-top: 1px solid var(--surface-line); padding: 12px 20px;
  box-shadow: 0 -8px 30px rgba(17,32,58,0.08);
  animation: slideUp 0.4s var(--ease);
}
.floating-cta__inner { display: flex; gap: 10px; }
.floating-cta .btn { flex: 1; font-size: 0.9rem; padding: 12px 16px; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@media (max-width: 760px) { .floating-cta { display: block; } body { padding-bottom: 68px; } }

/* ===== Footer ===== */
.footer { background: var(--blue-900); border-top: 1px solid rgba(255,255,255,0.06); padding-top: 60px; color: rgba(255,255,255,0.7); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer .brand { color: #fff; }
.footer .brand__mark { box-shadow: 0 4px 12px rgba(21, 87, 194,0.3); }
.footer .brand__accent { color: var(--blue-400); }
.footer__tag { color: rgba(255,255,255,0.5); font-size: 0.92rem; margin-top: 16px; max-width: 32ch; }
.footer__col h4 { font-size: 0.95rem; margin-bottom: 16px; color: #fff; }
.footer__col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.92rem; padding: 5px 0; transition: color 0.2s; }
.footer__col a i, .footer__col h4 i, .footer__col p i { margin-right: 8px; width: 16px; text-align: center; }
.footer__legal a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer__legal a:hover { color: var(--yellow-400); }
.footer__col a:hover { color: var(--yellow-400); }
.footer__small { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-top: 10px; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 22px 20px; border-top: 1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.is-visible .card:nth-child(1) { transition-delay: 0s; }
.reveal.is-visible .card:nth-child(2) { transition-delay: 0.08s; }
.reveal.is-visible .card:nth-child(3) { transition-delay: 0.16s; }
.reveal.is-visible .card:nth-child(4) { transition-delay: 0.24s; }
.reveal.is-visible .card:nth-child(5) { transition-delay: 0.32s; }
.reveal.is-visible .card:nth-child(6) { transition-delay: 0.4s; }
.reveal.is-visible .step:nth-child(1) { transition-delay: 0s; }
.reveal.is-visible .step:nth-child(2) { transition-delay: 0.1s; }
.reveal.is-visible .step:nth-child(3) { transition-delay: 0.2s; }
.reveal.is-visible .step:nth-child(4) { transition-delay: 0.3s; }

.card, .step, .zone { transition: transform 0.4s var(--ease-spring), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease) !important; }
.reveal .card, .reveal .step, .reveal .zone { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease) !important; }
.reveal.is-visible .card, .reveal.is-visible .step, .reveal.is-visible .zone { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .cards, .zones, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero__inner, .showcase__inner, .showcase__inner--reverse { grid-template-columns: 1fr; gap: 40px; }
  .showcase__inner--reverse .showcase__media { order: -1; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--surface-line);
    padding: 16px 20px 22px; transform: translateY(-130%); transition: transform 0.35s var(--ease);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); z-index: 49;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 12px 0; border-bottom: 1px solid var(--surface-line); margin: 0 !important; border-radius: 0; }
  .nav__link:hover { padding: 12px 10px !important; margin: 0 -10px !important; }
  .nav__cta { margin: 14px 0 0; text-align: center; }
  .nav-toggle { display: flex; }
  .hero__card--eta { left: 10px; }
  .hero__card--status { right: 10px; }
}
@media (max-width: 560px) {
  .cards, .zones, .steps, .footer__inner, .testimonials { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 60px; }
  .hero__stats { gap: 24px; }
  .cta__inner { padding: 44px 20px; border-radius: 20px; }
}

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