:root {
  --bg: #f4f7fb;
  --bg-strong: #eef3fb;
  --panel: #ffffff;
  --text: #10203f;
  --muted: #5e6d88;
  --line: rgba(16, 32, 63, 0.1);
  --blue: #0d2f76;
  --blue-strong: #123f97;
  --red: #c92033;
  --shadow: 0 24px 60px rgba(10, 26, 64, 0.12);
  --shadow-soft: 0 14px 36px rgba(10, 26, 64, 0.08);
  --radius: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-sans: "Manrope", "Aptos", "Segoe UI", sans-serif;
  --font-display: "Sora", "Manrope", "Aptos", sans-serif;
  --ring: 0 0 0 4px rgba(18, 63, 151, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(13, 47, 118, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(201, 32, 51, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 44%, #ffffff 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1,
h2 {
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

::selection {
  background: rgba(201, 32, 51, 0.18);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 47, 118, 0.03), transparent 30%),
    linear-gradient(180deg, rgba(201, 32, 51, 0.04), transparent 70%);
  pointer-events: none;
}

.section-alt > .container {
  position: relative;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  box-shadow: var(--ring);
}

.eyebrow,
.section-kicker,
.form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--red);
}

.eyebrow::before,
.section-kicker::before,
.form-kicker::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #ff6a72);
  box-shadow: 0 0 0 6px rgba(201, 32, 51, 0.1);
}

.lead,
.section-head p,
.card p,
.contact-list,
.fineprint,
.faq-item p,
.form-intro p {
  color: var(--muted);
}

.lead {
  max-width: 60ch;
  margin-top: 1.2rem;
  font-size: 1.08rem;
}

.section-head {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  max-width: 14ch;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 32, 51, 0.16);
  background: linear-gradient(90deg, rgba(201, 32, 51, 0.08), rgba(13, 47, 118, 0.06));
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
}

.badge::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: #fff;
  box-shadow: 0 18px 36px rgba(18, 63, 151, 0.2);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(13, 47, 118, 0.14);
  color: var(--blue);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(201, 32, 51, 0.24);
  color: var(--red);
}

.btn-small {
  min-height: 2.8rem;
  padding-inline: 1.05rem;
}

:where(a, button, input, select, textarea, summary, [role="button"], [tabindex]):focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
  box-shadow: var(--ring);
}

/* Focus visible plus marqué sur fond sombre (split chooser, footer) */
.split-side:focus-visible,
.site-footer a:focus-visible {
  outline-color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(180, 190, 210, 0.18);
  background: rgba(220, 225, 235, 0.55);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1.2rem;
  background: #0d1a35;
  border: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
  overflow: hidden;
}

.brand-mark img { height: 72px; width: auto; }

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0d1a35;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}

.nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-list a {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-list a:hover {
  background: rgba(13, 47, 118, 0.06);
  color: var(--blue);
}

/* Bouton fermer le menu : visible seulement dans le volet mobile */
.nav-close-li {
  display: none;
}

.nav-toggle {
  display: none;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(13, 47, 118, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-weight: 800;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* ── HERO — dark full-screen ──────────────────────────── */
.hero {
  padding: 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 92% 4%, rgba(210,28,52,.68), transparent 55%),
    radial-gradient(ellipse 55% 45% at 8% 90%, rgba(13,47,118,.52), transparent 55%),
    repeating-linear-gradient(115deg, transparent 0 60px, rgba(255,255,255,.055) 60px 61px),
    linear-gradient(160deg, #060d1f 0%, #0d1a35 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 7rem 1rem 5rem;
}

.hero-copy {
  display: grid;
  gap: 1.25rem;
}

/* Eyebrow pill */
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: .42rem 1.1rem .42rem .7rem;
  font-size: .78rem;
  color: rgba(255,255,255,.88);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  justify-content: center;
}
.hero-copy .eyebrow::before,
.hero-copy .eyebrow::after { display: none; }

.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e8394a;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(232,57,74,.8);
}

/* H1 géant */
.hero h1 {
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 0;
}

.hero-accent {
  background: linear-gradient(100deg, #fff 0%, #ff8fa0 38%, #e8394a 70%, #c0313f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Lead */
.hero-copy .lead {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 52ch;
  margin: 0 auto;
}
.hero-copy .lead strong { color: #fff; }

/* Boutons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: .25rem;
}

/* Animation shimmer gauche→droite */
@keyframes btn-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.btn-shimmer {
  position: relative;
  overflow: hidden;
  border-color: transparent !important;
  border-radius: 999px;
  padding: .95rem 2rem;
  font-size: 1rem;
  color: #fff !important;
  background-size: 300% auto;
  background-image: linear-gradient(90deg,
    #c0313f 0%,
    #8b2fc9 40%,
    #0f2a6b 75%,
    #c0313f 100%);
  animation: btn-shimmer 10s linear infinite;
  box-shadow: 0 8px 28px rgba(140,40,160,.35);
  transition: box-shadow .25s, transform .18s;
}
.btn-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 35%,
    rgba(255,255,255,.18) 50%,
    transparent 65%);
  background-size: 300% auto;
  animation: btn-shimmer 10s linear infinite;
  border-radius: inherit;
  pointer-events: none;
}
.btn-shimmer:hover {
  box-shadow: 0 10px 36px rgba(140,40,160,.52);
  transform: translateY(-1px);
}

/* Legacy hero primary (fallback si pas de .btn-shimmer) */
.hero .btn-primary:not(.btn-shimmer) {
  background: linear-gradient(135deg, #c0313f, #e8394a);
  border-color: transparent;
  border-radius: 999px;
  padding: .95rem 2rem;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 8px 28px rgba(232,57,74,.38);
}
.hero .btn-primary:not(.btn-shimmer):hover {
  background: linear-gradient(135deg, #a8283b, #d03040);
  box-shadow: 0 10px 36px rgba(232,57,74,.5);
}

.hero .btn-ghost {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  padding: .95rem 1.8rem;
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}

/* Trust pill */
.hero-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: .5rem 1.2rem;
  font-size: .88rem;
  color: rgba(255,255,255,.78);
  margin-top: .25rem;
}
.hero-trust .stars { color: #f5b400; letter-spacing: .1em; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.hero-stats li {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 47, 118, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 248, 253, 0.9)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.stat-number {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--blue);
}

.stat-label {
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(13, 47, 118, 0.08);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(13, 47, 118, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(201, 32, 51, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 253, 0.96));
  box-shadow: var(--shadow);
}

.hero-panel-header {
  display: flex;
  gap: 0.45rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(13, 47, 118, 0.08);
}

.panel-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: rgba(16, 32, 63, 0.18);
}

.panel-dot:first-child {
  background: rgba(201, 32, 51, 0.7);
}

.panel-dot:nth-child(2) {
  background: rgba(13, 47, 118, 0.68);
}

.hero-panel-body {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
}

.hero-highlight {
  padding: 1.2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 47, 118, 0.08);
}

.hero-highlight-label,
.mini-label,
.card-tag {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-highlight-title {
  margin-top: 0.45rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
}

.hero-progress {
  height: 0.8rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: rgba(13, 47, 118, 0.08);
  overflow: hidden;
}

.hero-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.hero-checks {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.hero-checks li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--muted);
}

.hero-checks li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--red);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.mini-card {
  padding: 1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(13, 47, 118, 0.08);
}

.mini-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
}

.mini-card-accent {
  background: linear-gradient(180deg, rgba(201, 32, 51, 0.08), rgba(255, 255, 255, 0.92));
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 252, 255, 0.96));
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(201, 32, 51, 0), rgba(201, 32, 51, 0.42), rgba(13, 47, 118, 0));
  opacity: 0;
  transition: opacity 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 47, 118, 0.14);
  box-shadow: 0 22px 48px rgba(10, 26, 64, 0.12);
}

.card:hover::before {
  opacity: 1;
}

.card-feature {
  background:
    radial-gradient(circle at top right, rgba(201, 32, 51, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(13, 47, 118, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
  border-color: rgba(201, 32, 51, 0.12);
}

.card-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.94));
}

.compact-cards {
  margin-top: 1rem;
}

.list {
  display: grid;
  gap: 0.45rem;
}

.list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--red);
}

.price strong {
  font-size: 1.4rem;
  color: var(--text);
}

.price-highlight {
  border-color: rgba(201, 32, 51, 0.22);
  box-shadow: 0 22px 48px rgba(201, 32, 51, 0.12);
}

/* ═══════════════════════════════════════════════
   ROUTE PRICING — route centrale + panneaux
   ═══════════════════════════════════════════════ */
.route-section { background: #eef0f6; overflow: visible; }
.route-section-head { text-align: left; max-width: none; }
.route-section-head .eyebrow { justify-content: flex-start; }
.route-section-head .eyebrow::before { display: block; }

/* Grille 3 colonnes : cards | route 58px | cards */
.route-wrapper {
  display: grid;
  grid-template-columns: 1fr 58px 1fr;
  grid-template-rows: auto auto auto auto;
  row-gap: 1.8rem;
  column-gap: 0;
  position: relative;
  align-items: stretch;
  overflow: visible;
}

/* ── La route ── */
.route-road {
  grid-column: 2;
  grid-row: 1 / 6;
  align-self: stretch;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: visible;
  z-index: 3;
}
.route-road::before {
  content: "";
  position: absolute;
  top: -1rem; bottom: -1rem;
  width: 44px;
  background: #1e2235;
  border-radius: 8px;
  z-index: 0;
}
.route-dashes {
  position: absolute;
  top: -1rem; bottom: -1rem;
  width: 4px;
  background: repeating-linear-gradient(to bottom, #f5d020 0 22px, transparent 22px 42px);
  z-index: 2;
}

/* ── Voiture ── */
.route-car-wrap {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 4;
  transition: top .55s cubic-bezier(.4,0,.2,1);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.4));
}

/* ── Panneaux décoratifs ── */
.road-deco {
  position: absolute;
  z-index: 5;
  transform: translateY(-50%);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
.road-deco-r { right: -46px; }
.road-deco-l { left: -46px; }
/* Panneaux sur tige : ancrés par le bas (la tige plonge vers la route) */
.road-deco-tall { transform: translateY(-82%); }

/* ── Maison de départ + ligne d'arrivée ── */
.route-marker {
  display: flex; flex-direction: column; align-items: center;
  gap: .45rem; position: relative; z-index: 6;
}
.route-start { padding-bottom: .2rem; }
.route-finish { padding-top: .2rem; }
.route-marker svg { filter: drop-shadow(0 4px 8px rgba(10,20,60,.18)); }
.route-marker-tag {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .03em; text-transform: uppercase;
  color: #0f1c40; background: #fff;
  border: 1px solid rgba(15,28,64,.12);
  padding: .26rem .75rem; border-radius: 999px;
  white-space: nowrap; text-decoration: none;
  box-shadow: 0 6px 16px rgba(10,20,60,.12);
}
.route-finish-tag {
  background: #0f1c40; color: #fff; border-color: transparent;
  transition: background .18s;
}
.route-finish-tag:hover { background: #16265a; }

/* Drapeau à damier */
.route-finish-flag {
  width: 50px; height: 32px; border-radius: 4px;
  border: 2px solid #0f1c40;
  background-color: #fff;
  background-image:
    conic-gradient(#111 90deg, transparent 90deg 180deg, #111 180deg 270deg, transparent 270deg);
  background-size: 16px 16px;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
}

/* ── Sortie gauche ── */
.route-left {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.route-left .route-sign { order: 1; flex: 1; min-width: 0; }
.route-left .route-ramp { order: 2; }

/* ── Sortie droite ── */
.route-right {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.route-right .route-ramp { order: 1; }
.route-right .route-sign { order: 2; flex: 1; min-width: 0; }

/* Bretelle d'accès à la route */
.route-ramp {
  width: 29px;
  height: 4px;
  background: #1e2235;
  flex-shrink: 0;
}
.route-exit-star .route-ramp { background: #f5d020; }

/* ── Panneau standard ── */
.route-sign {
  background: #0f1c40;
  border-radius: 14px;
  color: #fff;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.1);
  transition: transform .22s ease, box-shadow .22s ease;
  cursor: default;
}
.route-left .route-sign:hover  { transform: translateX(-5px); box-shadow:  5px 0 0 0 #f5d020; }
.route-right .route-sign:hover { transform: translateX( 5px); box-shadow: -5px 0 0 0 #f5d020; }

.route-sign-inner { padding: 1.6rem 1.8rem; display: grid; gap: 1rem; }
.route-sign-header { display: grid; gap: .25rem; }
.route-num {
  font-size: .62rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.route-sign h3 { font-size: 1.15rem; font-weight: 800; color: #fff; margin: 0; }
.route-price-block { display: flex; align-items: baseline; gap: .4rem; }
.route-price { font-size: 2rem; font-weight: 900; color: #f5d020; letter-spacing: -.02em; }
.route-ttc { font-size: .75rem; color: rgba(255,255,255,.4); font-weight: 600; }

.route-features { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.route-features li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .86rem; color: rgba(255,255,255,.72);
}
.route-features li::before { content: "→"; color: #f5d020; font-size: .7rem; flex-shrink: 0; }

.route-cta {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: .58rem 1.3rem;
  font-size: .86rem; font-weight: 700;
  color: #fff; text-decoration: none;
  transition: background .18s;
}
.route-cta:hover { background: rgba(255,255,255,.18); }

/* ── Panneau vedette ── */
.route-sign-star {
  background: linear-gradient(140deg, #1a0a38, #2e1065);
  border-color: rgba(245,208,32,.3);
  box-shadow: 0 10px 40px rgba(130,50,255,.18);
}
.route-left .route-sign-star:hover  { box-shadow:  5px 0 0 0 #f5d020, 0 10px 40px rgba(130,50,255,.3); }
.route-right .route-sign-star:hover { box-shadow: -5px 0 0 0 #f5d020, 0 10px 40px rgba(130,50,255,.3); }
.route-star-badge {
  background: rgba(245,208,32,.12);
  border-bottom: 1px solid rgba(245,208,32,.22);
  padding: .45rem 1.8rem;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: #f5d020;
}
.route-cta-star {
  background-image: linear-gradient(90deg, #c0313f 0%, #8b2fc9 50%, #0f2a6b 100%);
  background-size: 300% auto;
  animation: btn-shimmer 10s linear infinite;
  border-color: transparent;
}

/* ── Accordion ── */
.route-more { margin-top: .5rem; }
.route-more-trigger {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #1e2235; color: #fff;
  border-radius: 999px; padding: .68rem 1.4rem;
  font-size: .86rem; font-weight: 700;
  cursor: pointer; list-style: none; border: none;
  transition: background .18s;
}
.route-more-trigger::-webkit-details-marker,
.route-more-trigger::marker { display: none; }
.route-more-trigger:hover { background: #2d3455; }
.route-more[open] .route-more-trigger svg { transform: rotate(180deg); }
.route-more-trigger svg { transition: transform .25s; flex-shrink: 0; }

.route-more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.route-mini-sign {
  background: #0f1c40;
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  display: grid; gap: .55rem; color: #fff;
}
.route-mini-num {
  font-size: .58rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.32);
}
.route-mini-sign h4 { font-size: .92rem; font-weight: 800; margin: 0; color: #fff; }
.route-mini-price { font-size: 1.4rem; font-weight: 900; color: #f5d020; letter-spacing: -.02em; }
.route-mini-feat { list-style: none; padding: 0; margin: 0; display: grid; gap: .28rem; }
.route-mini-feat li { font-size: .78rem; color: rgba(255,255,255,.62); display: flex; gap: .4rem; align-items: center; }
.route-mini-feat li::before { content: "→"; color: #f5d020; font-size: .62rem; flex-shrink: 0; }
.route-mini-sign a { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.55); text-decoration: none; }
.route-mini-sign a:hover { color: #f5d020; }

/* ── Mobile ── */
@media (max-width: 720px) {
  .route-wrapper {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
  .route-road { display: none; }
  .route-ramp { display: none; }
  .route-left,
  .route-right { flex-direction: column; align-items: stretch; }
  .route-left .route-sign,
  .route-right .route-sign { order: 1; }
  [style*="grid-column:1"],
  [style*="grid-column:3"] { grid-column: 1 !important; grid-row: auto !important; }
  [style*="grid-column:1/-1"] { grid-column: 1 !important; }
}

.testimonial-card blockquote {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-card figcaption {
  color: var(--muted);
  font-weight: 600;
}

.note-box {
  margin-top: 1.2rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(13, 47, 118, 0.08);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 251, 0.96));
  color: var(--muted);
}

.zone-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
  align-items: start;
}

/* ═══════════════════════════════════════════════
   GPS CARD — carte de navigation animée
   ═══════════════════════════════════════════════ */
.gps-card {
  background: #0a1330;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.08);
  padding: 1rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 24px 60px rgba(10,20,60,.28);
}

/* Barre supérieure type appli GPS */
.gps-topbar {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .2rem .4rem;
}
.gps-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #f5d020;
  box-shadow: 0 0 8px rgba(245,208,32,.8);
}
.gps-label {
  font-size: .8rem; font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
}
.gps-live {
  margin-left: auto;
  font-size: .62rem; font-weight: 800;
  letter-spacing: .12em;
  color: #4ade80;
  animation: gps-blink 1.8s ease-in-out infinite;
}
@keyframes gps-blink { 0%,100%{opacity:1} 50%{opacity:.35} }

/* Carte */
.gps-map {
  position: relative;
  height: 260px;
  border-radius: 1.1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(30,86,200,.22), transparent 60%),
    linear-gradient(160deg, #0d1a3c, #0a1228);
  border: 1px solid rgba(255,255,255,.06);
}

/* Quadrillage de rues */
.gps-grid {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(120,160,255,.07) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(120,160,255,.07) 31px 32px);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 55%, transparent 85%);
  mask-image: radial-gradient(circle at 50% 50%, #000 55%, transparent 85%);
}

/* Ondes radar */
.gps-radar {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 0; height: 0;
}
.gps-wave {
  position: absolute; left: 0; top: 0;
  width: 220px; height: 220px;
  margin: -110px 0 0 -110px;
  border-radius: 50%;
  border: 1.5px solid rgba(245,208,32,.4);
  opacity: 0;
  animation: gps-radar 3.6s ease-out infinite;
}
.gps-wave:nth-child(2) { animation-delay: 1.2s; }
.gps-wave:nth-child(3) { animation-delay: 2.4s; }
@keyframes gps-radar {
  0%   { transform: scale(.15); opacity: .9; }
  70%  { opacity: .15; }
  100% { transform: scale(1); opacity: 0; }
}

/* Tracé itinéraire */
.gps-route {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.gps-route path {
  fill: none;
  stroke: rgba(245,208,32,.55);
  stroke-width: 2;
  stroke-dasharray: 4 5;
  stroke-linecap: round;
  animation: gps-dash 18s linear infinite;
}
@keyframes gps-dash { to { stroke-dashoffset: -180; } }

/* Pins */
.gps-pin {
  position: absolute;
  transform: translate(-50%,-100%);
  display: flex; flex-direction: column; align-items: center;
  opacity: 0;
  animation: gps-drop .5s cubic-bezier(.22,.68,0,1.3) forwards;
  animation-delay: var(--d, 0s);
  animation-play-state: paused;
}
.gps-map.is-live .gps-pin { animation-play-state: running; }
@keyframes gps-drop {
  0%   { opacity: 0; transform: translate(-50%,-180%); }
  100% { opacity: 1; transform: translate(-50%,-100%); }
}
.gps-pin-marker {
  width: 13px; height: 13px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: #3b82f6;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.gps-pin-tag {
  margin-top: 6px;
  font-size: .72rem; font-weight: 800;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  padding: .18rem .55rem;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* Pin central = la base */
.gps-pin-base { animation-delay: 0s; z-index: 2; }
.gps-pin-base .gps-pin-marker {
  width: 17px; height: 17px;
  background: #f5d020;
  border-color: #0a1330;
}
.gps-pin-base .gps-pin-tag {
  background: #f5d020; color: #0a1330;
  border-color: transparent;
}

/* Readout (stats) */
.gps-readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
.gps-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .8rem;
  padding: .7rem .5rem;
  text-align: center;
  display: grid; gap: .15rem;
}
.gps-stat-val {
  font-size: 1.3rem; font-weight: 900;
  color: #f5d020; letter-spacing: -.02em;
}
.gps-stat-val small { font-size: .68rem; font-weight: 700; }
.gps-stat-key {
  font-size: .66rem; font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .04em;
}

.gps-card .coverage-chips span {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
}
.gps-card .fineprint { color: rgba(255,255,255,.45); padding: 0 .3rem; }

.coverage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.coverage-chips span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 47, 118, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-weight: 700;
}

.faq-head {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 0;
  border: 1px solid rgba(13, 47, 118, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 1.15rem 3.2rem 1.15rem 1.15rem;
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.35rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.15rem 1.15rem;
  border-top: 1px solid rgba(13, 47, 118, 0.06);
}

.contact-copy {
  display: grid;
  gap: 1.2rem;
}

.contact-list {
  display: grid;
  gap: 0.55rem;
}

.contact-list a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-list a:hover {
  color: var(--red);
}

.slots-card {
  gap: 1rem;
}

.slots-head {
  display: grid;
  gap: 0.6rem;
}

.slots-grid {
  display: grid;
  gap: 0.85rem;
}

.slot-day {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 47, 118, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.slot-day h4 {
  margin-bottom: 0.75rem;
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.slot {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(13, 47, 118, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
  cursor: pointer;
}

.slot:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 47, 118, 0.32);
  box-shadow: 0 10px 22px rgba(13, 47, 118, 0.1);
}

.slot.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: #fff;
  box-shadow: 0 16px 32px rgba(18, 63, 151, 0.24);
}

.slot-picked {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 32, 51, 0.16);
  background: linear-gradient(180deg, rgba(201, 32, 51, 0.06), rgba(255, 255, 255, 0.98));
}

#slot-picked-label {
  color: var(--red);
  font-weight: 800;
}

.form-card,
.booking-form,
.form-intro,
.form-section {
  display: grid;
}

.form-card,
.booking-form {
  gap: 1rem;
}

.form-intro,
.form-section {
  gap: 0.55rem;
}

.form-section {
  padding: 1rem;
  border: 1px solid rgba(13, 47, 118, 0.08);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 254, 0.96));
}

.form-section-title,
.summary-title {
  color: var(--blue);
  font-weight: 850;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

label,
legend {
  font-weight: 750;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(13, 47, 118, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

textarea {
  min-height: 8.2rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(18, 63, 151, 0.36);
  box-shadow: var(--ring);
}

.fieldset {
  padding: 1rem;
  border: 1px solid rgba(13, 47, 118, 0.08);
  border-radius: var(--radius-sm);
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.checks label,
.checkbox label {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 650;
}

.checks input,
.checkbox input {
  width: 1.05rem;
  min-height: 1.05rem;
  height: 1.05rem;
  padding: 0;
  margin: 0;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox label {
  align-items: start;
}

.honeypot {
  display: none;
}

#selected-slot[readonly] {
  background: rgba(243, 246, 252, 0.9);
  color: var(--muted);
}

.booking-summary {
  padding: 1rem;
  border: 1px solid rgba(201, 32, 51, 0.16);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(201, 32, 51, 0.05), rgba(255, 255, 255, 0.98));
}

.summary-title {
  margin-bottom: 0.8rem;
}

.summary-list {
  display: grid;
  gap: 0.5rem;
}

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.summary-list strong {
  color: var(--text);
  text-align: right;
}

.form-actions {
  display: grid;
  gap: 0.8rem;
}

.form-feedback {
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 750;
}

.form-feedback.is-success {
  border: 1px solid rgba(22, 163, 74, 0.2);
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
}

.form-feedback.is-error {
  border: 1px solid rgba(201, 32, 51, 0.2);
  background: rgba(201, 32, 51, 0.08);
  color: #9f1239;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(16, 32, 63, 0.06);
  background: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover {
  color: var(--red);
}

@media (max-width: 1080px) {
  .hero-stats,
  .cards-3,
  .zone-grid,
  .contact-grid,
  .faq-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .section-head h2 {
    max-width: 18ch;
  }
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .nav {
    justify-self: end;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  /* ── Menu mobile = volet de plaques d'immatriculation ── */
  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 45;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    min-width: 0;
    padding: 4.8rem 1rem 1.6rem;
    border: none;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: #0f1c40;
    box-shadow: 0 26px 50px rgba(6, 13, 31, 0.5);
    transform: translateY(-110%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .nav-list.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-list li {
    display: flex;
  }

  /* Bouton fermer (haut du volet) */
  .nav-close-li {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0.1rem;
  }
  .nav-close {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.42rem 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease;
  }
  .nav-close:hover,
  .nav-close:focus-visible {
    background: rgba(255, 255, 255, 0.2);
  }

  /* La plaque */
  .nav-list a {
    flex: 1;
    position: relative;
    display: grid;
    place-items: center;
    min-height: 3.1rem;
    padding: 0 2.6rem;
    text-align: center;
    background: linear-gradient(#fcfcf7, #e6e6d9);
    border: 2.5px solid #0a0a0a;
    border-radius: 9px;
    overflow: hidden;
    color: #111;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1.05rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition: filter 0.15s ease;
  }

  /* Bande UE gauche : drapeau (cercle d'étoiles) + F, en SVG */
  .nav-list a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2.05rem;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 64'%3E%3Crect width='40' height='64' fill='%23003399'/%3E%3Cg fill='%23ffcc00'%3E%3Ccircle cx='20' cy='8' r='1.5'/%3E%3Ccircle cx='26' cy='9.6' r='1.5'/%3E%3Ccircle cx='30.4' cy='14' r='1.5'/%3E%3Ccircle cx='32' cy='20' r='1.5'/%3E%3Ccircle cx='30.4' cy='26' r='1.5'/%3E%3Ccircle cx='26' cy='30.4' r='1.5'/%3E%3Ccircle cx='20' cy='32' r='1.5'/%3E%3Ccircle cx='14' cy='30.4' r='1.5'/%3E%3Ccircle cx='9.6' cy='26' r='1.5'/%3E%3Ccircle cx='8' cy='20' r='1.5'/%3E%3Ccircle cx='9.6' cy='14' r='1.5'/%3E%3Ccircle cx='14' cy='9.6' r='1.5'/%3E%3C/g%3E%3Ctext x='20' y='52' fill='white' font-family='Arial,sans-serif' font-size='16' font-weight='bold' text-anchor='middle'%3EF%3C/text%3E%3C/svg%3E") center / 100% 100% no-repeat;
    border-right: 2px solid #0a0a0a;
  }

  /* Bande département droite (95 — Val-d'Oise) */
  .nav-list a::after {
    content: "95";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    width: 2rem;
    background: #003399;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    border-left: 2px solid #0a0a0a;
  }

  /* Contact = plaque provisoire rose */
  .nav-list li:last-child a {
    background: linear-gradient(#ffd4e3, #f6a8c6);
  }

  /* Hover doux : on garde la plaque, juste un très léger assombrissement */
  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: linear-gradient(#f4f4ec, #dcdccd);
    color: #111;
    filter: none;
  }
  .nav-list li:last-child a:hover,
  .nav-list li:last-child a:focus-visible {
    background: linear-gradient(#ffc8db, #f098ba);
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4rem 0;
  }

  .cards-2x,
  .cards-3,
  .hero-stats,
  .hero-mini-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .slot-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-list li {
    flex-direction: column;
    gap: 0.2rem;
  }

  .summary-list strong {
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .slot-list {
    grid-template-columns: 1fr;
  }

  .slot {
    width: 100%;
  }
}

/* ============================================================
   Accessibilité — taille tactile minimale (WCAG 2.5.5)
   ============================================================ */
.btn,
.nav-list a,
.nav-toggle,
.footer-links a,
.mode-btn,
.faq-item summary {
  min-height: 44px;
}

@media (max-width: 768px) {
  .mode-btn {
    min-height: 44px;
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
  }
}

/* ============================================================
   Accessibilité — préférence de mouvement réduit
   Désactive ou atténue les animations pour personnes sensibles
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   Toggle "Afficher le détail des prestations"
   ============================================================ */
.pricing-toggle {
  margin-top: 1.2rem;
}

.pricing-toggle > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #1b4cb8);
  color: #fff;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1px solid rgba(13, 47, 118, 0.2);
  box-shadow: 0 14px 30px rgba(13, 47, 118, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  min-height: 48px;
}

.pricing-toggle > summary::-webkit-details-marker,
.pricing-toggle > summary::marker {
  display: none;
  content: "";
}

.pricing-toggle > summary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(13, 47, 118, 0.3);
}

.pricing-toggle-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.pricing-toggle-icon svg {
  width: 100%;
  height: 100%;
}

.pricing-toggle[open] .pricing-toggle-icon {
  transform: rotate(180deg);
}

.pricing-toggle[open] > summary .pricing-toggle-label::after {
  content: " (masquer)";
  opacity: 0.85;
  font-weight: 600;
}

/* ============================================================
   Bouton WhatsApp flottant
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 199;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.6;
  animation: wa-pulse 2.4s ease-in-out infinite;
}

@keyframes wa-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@media (max-width: 540px) {
  .whatsapp-float {
    bottom: 1rem;
    left: 1rem;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================================
   À propos — section humaine (avec emplacement photo)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 47, 118, 0.08), rgba(201, 32, 51, 0.08)),
    #fff;
  border: 1px solid rgba(13, 47, 118, 0.1);
  box-shadow: var(--shadow-soft);
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 0.6rem;
  color: var(--blue);
  opacity: 0.4;
}

.photo-placeholder svg {
  width: 80px;
  height: 80px;
}

.photo-placeholder span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 22ch;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding: 0;
  list-style: none;
}

.about-stats li {
  padding: 1rem 0.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(13, 47, 118, 0.08);
  background: linear-gradient(180deg, #fff, rgba(245, 248, 253, 0.9));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}

.about-stats strong {
  display: block;
  font-size: 1.05rem;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.about-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-photo {
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ============================================================
   Trust badges — section engagements
   ============================================================ */
.trust-bar {
  background: linear-gradient(135deg, rgba(13, 47, 118, 0.04), rgba(201, 32, 51, 0.03));
  border-top: 1px solid rgba(13, 47, 118, 0.08);
  border-bottom: 1px solid rgba(13, 47, 118, 0.08);
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  align-items: start;
}

/* Animation d'entrée */
@keyframes trust-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.trust-item {
  opacity: 0;
}
.trust-item.is-visible {
  animation: trust-fade-up .5s cubic-bezier(.22,.68,0,1.2) forwards;
}
.trust-item.is-visible:nth-child(1) { animation-delay: .05s; }
.trust-item.is-visible:nth-child(2) { animation-delay: .13s; }
.trust-item.is-visible:nth-child(3) { animation-delay: .21s; }
.trust-item.is-visible:nth-child(4) { animation-delay: .29s; }
.trust-item.is-visible:nth-child(5) { animation-delay: .37s; }
.trust-item.is-visible:nth-child(6) { animation-delay: .45s; }

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  opacity: 0;
}

.trust-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(13, 47, 118, 0.1), rgba(201, 32, 51, 0.08));
  color: var(--blue);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-text {
  display: grid;
  gap: 0.15rem;
}

.trust-text strong {
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-text span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}
