/* ==========================================================================
   LaneAI — Design tokens (structure inspirée d'Allo'Conduite, palette LaneAI)
   ========================================================================== */

:root {
  --color-bg: #0a0a0a;
  --color-bg-card: #151515;
  --color-bg-card-hover: #1a1a1a;
  --color-accent: #da080f;
  --color-accent-soft: rgba(218, 8, 15, 0.16);
  --color-text: #f4f4f5;
  --color-text-muted: #a1a1aa;
  --color-border: #26262a;
  --color-border-soft: rgba(255, 255, 255, 0.08);

  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --radius-lg: 22px;
  --radius-full: 999px;
  --container-width: 1280px;
  --section-spacing: 100px;

  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.3), 0 12px 40px -20px rgba(0, 0, 0, 0.7);
  --shadow-pill: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px -16px rgba(0, 0, 0, 0.55);
}

/* ==========================================================================
   Reset
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--color-bg);
  background-image: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(218, 8, 15, 0.28), transparent 70%);
  background-repeat: no-repeat;
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.container { max-width: var(--container-width); margin-inline: auto; padding-inline: 28px; }
section { padding-block: var(--section-spacing); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 12px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-pill);
  margin-bottom: 20px;
}

.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

h2 {
  font-size: clamp(32px, 4vw, 51px);
  margin-bottom: 16px;
}

/* ==========================================================================
   Boutons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

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

.btn-primary {
  background-color: var(--color-accent);
  color: #ffffff;
  padding: 11px 22px 11px 12px;
}

.btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon svg { width: 13px; height: 13px; }

.btn-secondary {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover { border-color: var(--color-text-muted); }

/* Petit bouton nav : texte + flèche cerclée après le texte */
.btn-nav {
  padding: 9px 9px 9px 18px;
  font-size: 14px;
}

.btn-nav .btn-icon {
  width: 22px;
  height: 22px;
}

.btn-nav .btn-icon svg { width: 11px; height: 11px; }

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: var(--radius-full);
}

.btn-ghost:hover { color: var(--color-text); background-color: var(--color-bg-card); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 20px 0;
}

.header-pill {
  max-width: var(--container-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 68px;
  padding: 8px 8px 8px 26px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 16px 32px -18px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
}

.main-nav ul { display: flex; gap: 4px; }

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.main-nav a:hover {
  color: var(--color-text);
  background-color: var(--color-bg-card);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.nav-burger span {
  width: 16px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  max-width: var(--container-width);
  margin-inline: auto;
  margin-top: 10px;
  padding: 10px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 13px 14px;
  border-radius: 10px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
}

.mobile-nav a:hover { background-color: var(--color-bg-card-hover); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  text-align: center;
  padding-block: 40px 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 8px 18px 8px 14px;
  font-size: 13px;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-pill);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 76px);
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: 24px;
}

.hero h1 mark {
  background: none;
  color: var(--color-accent);
  position: relative;
}

.hero-subtext {
  max-width: 620px;
  margin-inline: auto;
  color: var(--color-text-muted);
  font-size: 18px;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.reassurance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 7px 16px 7px 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  box-shadow: var(--shadow-pill);
}

.reassurance-badge .badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* ==========================================================================
   Vidéo
   ========================================================================== */

.video-embed {
  position: relative;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.video-embed img { width: 100%; height: 100%; object-fit: cover; }

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}

.video-play span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

/* ==========================================================================
   Stats bar
   ========================================================================== */

.stats-bar {
  padding-block: 40px;
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat { text-align: center; }

.stat .stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.stat .stat-label {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-top: 4px;
}

/* ==========================================================================
   Cartes
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.card:hover {
  border-color: rgba(218, 8, 15, 0.4);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.card p { color: var(--color-text-muted); font-size: 15px; line-height: 1.6; }

.step-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

/* ==========================================================================
   Timeline (process)
   ========================================================================== */

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  transform: translateX(-50%);
  background: var(--color-border);
}

.tl-step {
  position: relative;
  min-height: 56px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.tl-step.visible { opacity: 1; transform: translateY(0); }

.tl-dot {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-card {
  width: calc(50% - 52px);
}

.tl-step:nth-child(odd) .tl-card { margin-right: auto; }
.tl-step:nth-child(even) .tl-card { margin-left: auto; }

.tl-dot-inner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--color-bg);
}

.tl-dot-inner svg { width: 20px; height: 20px; }

.tl-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
}

.tl-card .step-num { font-size: 34px; margin-bottom: 0; }

.step-day {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.tl-card h3 { font-size: 19px; margin-bottom: 10px; }
.tl-card p { color: var(--color-text-muted); font-size: 15px; line-height: 1.6; }

.card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
}

/* Cartes produits (avec visuel) */
.product-card {
  display: block;
  padding: 0;
  overflow: hidden;
  color: inherit;
}

.product-card-media {
  aspect-ratio: 1200 / 630;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.product-card-icon { height: 42px; width: auto; }

.product-card-word {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  color: #ffffff;
}

.product-card .case-body { padding: 24px; }
.product-card .case-body h3 { margin-bottom: 12px; }

/* ==========================================================================
   Histoire (fondateur)
   ========================================================================== */

.histoire-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.histoire-layout img { border-radius: var(--radius-lg); }

.histoire-layout blockquote {
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.histoire-layout cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  font-size: 14px;
}

/* ==========================================================================
   Ils nous font confiance (logos clients)
   ========================================================================== */

.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgb(0, 0, 0) 8%, rgb(0, 0, 0) 92%, rgba(0, 0, 0, 0));
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgb(0, 0, 0) 8%, rgb(0, 0, 0) 92%, rgba(0, 0, 0, 0));
}

.marquee {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}

.marquee-wrap:hover .marquee { animation-play-state: paused; }

@keyframes marquee-scroll {
  100% { transform: translateX(-50%); }
}

.trust-logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 18px;
  flex-shrink: 0;
  background-color: #ffffff;
  border-radius: 12px;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.trust-logo-chip:hover { opacity: 1; }

.trust-logo-chip img {
  height: 30px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

/* ==========================================================================
   Témoignages
   ========================================================================== */

.testimonials-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.case-card {
  scroll-snap-align: start;
  flex: 0 0 320px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.case-media {
  position: relative;
  height: 190px;
  background: #000;
  cursor: pointer;
}

.case-media img,
.case-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.case-media .video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
}

.case-media .video-play span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.case-body { padding: 24px; }

.case-name { font-family: var(--font-heading); font-weight: 700; font-size: 17px; }
.case-city { color: var(--color-text-muted); font-size: 13px; margin-bottom: 16px; }
.case-quote { font-size: 15px; line-height: 1.6; margin-bottom: 20px; min-height: 72px; }

.case-stats { display: flex; gap: 24px; border-top: 1px solid var(--color-border); padding-top: 16px; }
.case-stat { display: flex; flex-direction: column; }
.case-stat .val { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: var(--color-accent); }
.case-stat .lbl { font-size: 12px; color: var(--color-text-muted); }

/* ==========================================================================
   France Num
   ========================================================================== */

.france-num-banner {
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.france-num-banner img { max-width: 160px; border-radius: 12px; }
.france-num-banner h3 { font-size: 20px; margin-bottom: 8px; }
.france-num-banner p { color: var(--color-text-muted); font-size: 15px; line-height: 1.6; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
}

.faq-question::after {
  content: "+";
  font-size: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 28px 22px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.open .faq-answer { display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--color-border-soft);
  padding-block: 64px 32px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.site-footer a:hover { color: var(--color-text); }

.footer-columns {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand p { margin-top: 10px; font-size: 14px; line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.footer-col > a, .footer-col > p { display: block; margin-bottom: 10px; }

.footer-socials { display: flex; gap: 10px; margin-top: 14px; }

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { border-color: var(--color-accent); color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid var(--color-border-soft);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

/* ==========================================================================
   Bandeau cookies
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 720px;
  margin-inline: auto;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px 24px;
}

.cookie-banner.visible { display: flex; }

.cookie-banner p { font-size: 14px; color: var(--color-text-muted); flex: 1 1 260px; }
.cookie-banner p a { color: var(--color-accent); }

.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-banner-actions .btn { padding: 9px 18px; font-size: 13px; }

/* ==========================================================================
   Modal contact
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(24, 24, 27, 0.5);
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 36px;
}

.modal h3 { font-size: 22px; margin-bottom: 6px; }
.modal-subtext { color: var(--color-text-muted); font-size: 14px; margin-bottom: 24px; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover { color: var(--color-text); border-color: var(--color-text-muted); }

#contactForm { display: flex; flex-direction: column; gap: 12px; }

.form-row { display: flex; gap: 12px; }

#contactForm input,
#contactForm textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 14px;
  resize: vertical;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.modal-feedback { margin-top: 16px; font-size: 14px; text-align: center; }
.modal-success { color: #15803d; }
.modal-error { color: var(--color-accent); }

@media (max-width: 480px) {
  .form-row { flex-direction: column; }
}

/* ==========================================================================
   Pages légales
   ========================================================================== */

.legal-content { max-width: 760px; margin-inline: auto; padding-block: 64px; }
.legal-content h1 { font-size: 32px; margin-bottom: 32px; }
.legal-content h2 { font-size: 20px; margin-block: 32px 12px; }
.legal-content p, .legal-content li { color: var(--color-text-muted); margin-bottom: 12px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-burger { display: flex; }
  .site-header { padding: 12px 12px 0; }
  .header-pill { height: auto; padding: 8px 8px 8px 16px; flex-wrap: wrap; }
  .logo img { height: 22px; }
  .btn-nav { padding: 9px 14px; font-size: 13px; white-space: nowrap; }
  .btn-nav .btn-icon { display: none; }
  .hero { padding-block: 48px 40px; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .card-grid { grid-template-columns: 1fr; }
  .histoire-layout { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .histoire-layout img { margin-inline: auto; width: 140px; }
  .france-num-banner { flex-direction: column; text-align: center; }
  .footer-columns { grid-template-columns: 1fr; gap: 32px; }
  .tl-card { padding: 22px 20px; }
  .timeline::before { left: 27px; transform: none; }
  .tl-step { padding-left: 68px; min-height: 0; }
  .tl-dot { left: 27px; }
  .tl-card,
  .tl-step:nth-child(odd) .tl-card,
  .tl-step:nth-child(even) .tl-card { width: 100%; margin: 0; }
  .case-card { flex-basis: 82vw; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px 18px; }
  .modal { padding: 26px; }
  :root { --section-spacing: 56px; }
}
