/* ==========================================================================
   BC Trucks — Réparation & Entretien Poids Lourds
   Design system / feuille de style principale
   Typo : Oswald (titres, condensé mécanique) + Barlow (texte courant)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Couleurs */
  --carbon: #101114;
  --carbon-2: #16171b;
  --carbon-3: #1f2024;
  --steel-900: #25262b;
  --steel-700: #31333a;
  --steel-500: #4d4f56;
  --steel-400: #6c6e76;
  --steel-300: #9b9da4;
  --steel-200: #c8cace;
  --off-white: #f6f4f0;
  --white: #ffffff;
  /* Anciennes nuances "bleu nuit" remplacées par des gris charbon neutres */
  --night: #26282d;
  --night-2: #1b1d21;
  --night-3: #33363c;
  /* Accent rouge — calé sur le rouge du logo BC Trucks */
  --orange: #c9342a;
  --orange-600: #ab281f;
  --orange-700: #8c1f18;
  --red: #c9342a;
  /* Gris charbon du logo (lettres "BC" + swoosh + tagline) */
  --logo-charcoal: #3c3d40;

  /* Sémantique */
  --bg: var(--white);
  --bg-soft: #f4f4f5;
  --bg-dark: var(--carbon);
  --text: #1c1f24;
  --text-soft: #565a61;
  --text-invert: var(--off-white);
  --accent: var(--orange);
  --line: #e3e3e1;
  --line-dark: #2a2c31;

  /* Typo */
  --font-display: "Saira", system-ui, "Segoe UI", Arial, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --radius: 6px;
  --radius-lg: 12px;
  --header-h: 76px;

  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(14, 15, 19, 0.08);
  --shadow-md: 0 10px 30px rgba(14, 15, 19, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 15, 19, 0.18);

  /* Transitions */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; }

/* ---------- Typo ---------- */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.55rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); font-weight: 700; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-soft); }

/* Œil-de-section (surtitre) */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.text-soft { color: var(--text-soft); }

.bg-carbon { background: var(--bg-soft); color: var(--text); }
.bg-night { background: var(--white); color: var(--text); }
.bg-steel { background: var(--bg-soft); color: var(--text); }
.bg-light { background: var(--white); }

/* Liseré industriel (bande diagonale) */
.hazard-line { height: 4px; width: 100%;
  background: repeating-linear-gradient(135deg, var(--orange) 0 14px, var(--carbon) 14px 28px);
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 600; font-size: 0.95rem; line-height: 1;
  padding: 15px 26px; border: 2px solid transparent; border-radius: var(--radius);
  transition: transform 0.18s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: 0 0 auto; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(201, 52, 42, 0.28); }
.btn--primary:hover { background: var(--orange-600); box-shadow: 0 12px 28px rgba(201, 52, 42, 0.36); }
.btn--dark { background: var(--carbon); color: var(--off-white); }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn--ghost:hover { background: rgba(255,255,255,0.08); }
.btn--outline-dark { background: transparent; color: var(--carbon); border-color: var(--carbon); }
.btn--outline-dark:hover { background: var(--carbon); color: var(--off-white); }
.btn--lg { padding: 18px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Lien fléché */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em;
  font-weight: 600; font-size: 0.9rem; color: var(--orange);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand__logo { display: block; height: 52px; width: auto; flex: 0 0 auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.03em;
  font-weight: 500; font-size: 0.93rem; color: var(--text-soft);
  padding: 10px 14px; border-radius: var(--radius); transition: color 0.18s, background 0.18s;
}
.main-nav a:hover { color: var(--text); background: var(--bg-soft); }
.main-nav a.is-active { color: var(--text); }
.main-nav a.is-active::after {
  content: ""; display: block; height: 2px; background: var(--orange);
  margin-top: 6px; border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.03em; color: var(--text); font-size: 0.95rem;
}
.header-phone svg { width: 18px; height: 18px; color: var(--orange); }
.header-phone small { display: block; font-family: var(--font-body); text-transform: none;
  letter-spacing: 0; font-weight: 500; font-size: 0.62rem; color: var(--text-soft); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: transparent; border-radius: var(--radius); padding: 0; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 22px; height: 2px;
  background: var(--text); transform: translate(-50%, -50%); transition: 0.25s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: translate(-50%, -50%) rotate(-45deg); }

/* Menu mobile */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 55;
  background: var(--white); color: var(--text);
  transform: translateX(100%); transition: transform 0.3s var(--ease);
  display: flex; flex-direction: column; padding: 24px; overflow-y: auto;
  visibility: hidden;
}
body.nav-open .mobile-nav { transform: translateX(0); visibility: visible; }
.mobile-nav a.m-link {
  font-family: var(--font-display); text-transform: uppercase; font-size: 1.3rem;
  font-weight: 500; padding: 16px 4px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav a.m-link span { color: var(--orange); }
.mobile-nav .btn-row { margin-top: 24px; }
.mobile-nav .btn { width: 100%; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; color: var(--text); overflow: hidden;
  background: var(--white); isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 42%, rgba(255,255,255,0.55) 100%);
}
.hero__inner { padding: clamp(64px, 10vw, 130px) 0 clamp(56px, 8vw, 100px); position: relative; }
.hero__content { max-width: 720px; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--orange); }
.hero .lead { color: var(--text-soft); max-width: 600px; }
.hero .btn-row { margin-top: 30px; }
.hero__strip {
  display: flex; flex-wrap: wrap; gap: 28px 40px; margin-top: 42px;
  padding-top: 26px; border-top: 1px solid var(--line);
}
.hero__stat strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--text); display: block; line-height: 1; }
.hero__stat span { font-size: 0.84rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.08em; }

/* Bandeau de réassurance sous hero */
.assurance-bar { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.assurance-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); }
.assurance-bar__item { background: var(--bg-soft); padding: 22px 20px; display: flex; gap: 12px; align-items: center; color: var(--text); }
.assurance-bar__item svg { width: 26px; height: 26px; color: var(--orange); flex: 0 0 auto; }
.assurance-bar__item b { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 0.95rem; display: block; line-height: 1.1; }
.assurance-bar__item small { color: var(--text-soft); font-size: 0.8rem; }

/* ==========================================================================
   Grilles & cartes
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Carte service */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; display: flex; flex-direction: column; position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: var(--orange); transform: scaleY(0); transform-origin: top; transition: transform 0.28s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #cfccc2; }
.card:hover::before { transform: scaleY(1); }
.card__icon {
  width: 56px; height: 56px; border-radius: var(--radius); background: #fbe7e5;
  display: grid; place-items: center; margin-bottom: 20px; color: var(--orange); flex: 0 0 auto;
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 0.97rem; margin-bottom: 18px; }
.card .link-arrow { margin-top: auto; }

/* Carte sur sections claires alternées */
.bg-carbon .card, .bg-night .card, .bg-steel .card {
  background: var(--white); border-color: var(--line); color: var(--text);
}
.bg-carbon .card p, .bg-night .card p, .bg-steel .card p { color: var(--text-soft); }
.bg-carbon .card:hover, .bg-night .card:hover, .bg-steel .card:hover { border-color: #cfccc2; }

/* Liste de prestations (page services) */
.spec-block { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.spec-block + .spec-block { margin-top: clamp(48px, 7vw, 90px); }
.spec-block__visual {
  position: sticky; top: calc(var(--header-h) + 24px);
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--bg-soft);
}
.spec-block__visual img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.check-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.check-list li:last-child { border-bottom: 0; }
.check-list svg { width: 22px; height: 22px; color: var(--orange); flex: 0 0 auto; margin-top: 2px; }
.check-list b { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.05rem; display: block; }
.check-list span { color: var(--text-soft); font-size: 0.95rem; }

/* Bloc "pour quels véhicules" */
.vehicle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vehicle {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 20px; text-align: center; color: var(--text);
  transition: border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.vehicle:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.vehicle svg { width: 44px; height: 44px; color: var(--orange); margin: 0 auto 14px; }
.vehicle b { font-family: var(--font-display); text-transform: uppercase; font-size: 1rem; display: block; }
.vehicle small { color: var(--text-soft); font-size: 0.82rem; }

/* Avantages "pourquoi nous choisir" */
.feature { display: flex; gap: 18px; }
.feature__num { font-family: var(--font-display); font-size: 2.4rem; line-height: 0.9; color: var(--orange); opacity: 0.55; flex: 0 0 auto; }
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--text-soft); font-size: 0.96rem; margin: 0; }

/* Processus 4 étapes */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 30px; }
.step__no {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--orange); color: #fff; margin-bottom: 16px;
}
.step::before {
  content: ""; position: absolute; top: 53px; left: 46px; right: -24px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--steel-500) 0 8px, transparent 8px 16px);
}
.step:last-child::before { display: none; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 0.93rem; margin: 0; }

/* Split media + texte */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); position: relative; background: var(--bg-soft); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/4; }
.split__media .tag {
  position: absolute; left: 18px; bottom: 18px; background: var(--orange); color: #fff;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em;
  padding: 8px 14px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600;
}
.mini-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: var(--text-soft); }
.mini-list svg { width: 20px; height: 20px; color: var(--orange); flex: 0 0 auto; margin-top: 4px; }

/* Bandeau CTA */
.cta-band { position: relative; overflow: hidden; isolation: isolate; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__overlay { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(246,244,240,0.97), rgba(246,244,240,0.85)); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { color: var(--text); max-width: 620px; }
.cta-band p { color: var(--text-soft); max-width: 560px; }

/* ==========================================================================
   Page intérieure : bandeau titre
   ========================================================================== */
.page-hero { position: relative; color: var(--text); background: var(--white); overflow: hidden; isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7)); }
.page-hero__inner { padding: clamp(48px, 7vw, 92px) 0 clamp(40px, 6vw, 70px); }
.page-hero h1 { max-width: 800px; margin-bottom: 14px; }
.page-hero .lead { color: var(--text-soft); max-width: 640px; }
.breadcrumb { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-display); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ==========================================================================
   Formulaire
   ========================================================================== */
.form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 42px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 0.82rem; font-weight: 600; color: var(--text); }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: #fbfaf7; transition: border-color 0.18s, box-shadow 0.18s; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(201, 52, 42,0.15); background: #fff;
}
.field input::placeholder, .field textarea::placeholder { color: #a8a89e; }
.switch-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; }
.switch { position: relative; width: 52px; height: 28px; flex: 0 0 auto; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--steel-300); border-radius: 999px; transition: background 0.2s; }
.switch .track::before { content: ""; position: absolute; left: 3px; top: 3px; width: 22px; height: 22px; background: #fff; border-radius: 50%; transition: transform 0.2s var(--ease); }
.switch input:checked + .track { background: var(--orange); }
.switch input:checked + .track::before { transform: translateX(24px); }
.switch input:focus-visible + .track { box-shadow: 0 0 0 3px rgba(201, 52, 42,0.25); }
.field-note { font-size: 0.82rem; color: var(--text-soft); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--text-soft); }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--orange); flex: 0 0 auto; }
.form-feedback { display: none; padding: 14px 16px; border-radius: var(--radius); font-weight: 500; margin-top: 4px; }
.form-feedback.is-visible { display: block; }
.form-feedback.is-success { background: #e9f6ec; color: #1d6b34; border: 1px solid #b6e0c0; }
.form-feedback.is-error { background: #fdeceb; color: #a33126; border: 1px solid #f3c3bd; }

/* Encart contact latéral */
.contact-aside { display: flex; flex-direction: column; gap: 18px; }
.info-card { background: var(--white); color: var(--text); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.info-card h3 { margin-bottom: 16px; }
.info-row { display: flex; gap: 13px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row svg { width: 22px; height: 22px; color: var(--orange); flex: 0 0 auto; margin-top: 2px; }
.info-row b { font-family: var(--font-display); text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.05em; color: var(--text-soft); display: block; font-weight: 600; }
.info-row a, .info-row span { color: var(--text); font-size: 1.02rem; }
.info-row a:hover { color: var(--orange); }
.placeholder-tag { display: inline-block; font-size: 0.74rem; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--orange);
  border: 1px dashed var(--orange); border-radius: 4px; padding: 1px 7px; }

/* FAQ / accordéon */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; color: inherit; font-weight: 500; }
.faq-q .ico { width: 24px; height: 24px; flex: 0 0 auto; position: relative; }
.faq-q .ico::before, .faq-q .ico::after { content: ""; position: absolute; background: var(--orange); transition: transform 0.25s var(--ease); }
.faq-q .ico::before { left: 0; top: 11px; width: 24px; height: 2px; }
.faq-q .ico::after { left: 11px; top: 0; width: 2px; height: 24px; }
.faq-item.is-open .ico::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-a__inner { padding: 0 0 22px; color: var(--text-soft); max-width: 760px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--bg-soft); color: var(--text-soft); padding-top: 64px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; max-width: 320px; }
.footer-col h4 { font-family: var(--font-display); text-transform: uppercase; color: var(--text); font-size: 1rem; letter-spacing: 0.05em; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 0.95rem; transition: color 0.18s; }
.footer-col a:hover { color: var(--orange); }
.footer-contact .info-row { border-color: var(--line); }
.footer-contact .info-row svg { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 24px 0 32px; font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--orange); }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ==========================================================================
   Barre mobile sticky (CTA)
   ========================================================================== */
.mobile-bar { display: none; }
@media (max-width: 860px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 50; background: var(--white); border-top: 1px solid var(--line);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
  }
  .mobile-bar .btn { width: 100%; padding: 14px 10px; font-size: 0.9rem; }
  body { padding-bottom: 74px; }
}

/* ==========================================================================
   Animations au scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Utilitaires
   ========================================================================== */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.maxw-720 { max-width: 720px; }
.hidden { display: none; }
.prose p { margin-bottom: 1.2rem; }
.prose h2 { margin: 2.2rem 0 1rem; }
.prose h3 { margin: 1.6rem 0 0.8rem; }
.prose ul.dotted { margin: 0 0 1.2rem; padding-left: 0; }
.prose ul.dotted li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--text-soft); }
.prose ul.dotted li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; background: var(--orange); border-radius: 2px; transform: rotate(45deg); }
.prose a { color: var(--orange-600); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 920px) {
  .main-nav, .header-phone small { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .vehicle-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::before { display: none; }
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .spec-block { grid-template-columns: 1fr; }
  .spec-block__visual { position: static; }
  .assurance-bar .container { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .hero__strip { gap: 22px 30px; }
}
@media (max-width: 420px) {
  .vehicle-grid, .assurance-bar .container { grid-template-columns: 1fr; }
  .brand__logo { height: 42px; }
}
