/* =====================================================================
   Velora Auto — Nettoyage automobile premium à domicile
   Expérience cinématique au scroll (séquence d'images sur canvas).
   Direction : premium, minimaliste, sombre mais doux, lumière tamisée.
   ===================================================================== */

:root {
  --bg: #14110B;
  --bg-2: #1B1710;
  --ink: #F4EEE1;
  --muted: #C9BEA6;
  --faint: rgba(244, 238, 225, 0.74);
  --line: rgba(242, 235, 219, 0.12);
  --line-soft: rgba(242, 235, 219, 0.07);
  --warm: 255, 224, 170;
  --panel: rgba(20, 16, 11, 0.55);

  --font: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --pad: clamp(22px, 5vw, 72px);
}

* { box-sizing: border-box; }
/* L'attribut hidden gagne TOUJOURS (sinon un display posé par une classe —
   ex. .options label { display:inline-flex } — le neutralise : c'est ce qui
   laissait visibles des options de devis censées être masquées). */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Aucun débordement horizontal : `clip` n'altère pas le sticky (contrairement
   à hidden) et empêche le dézoom/pan hors du site sur mobile. */
html, body { overflow-x: clip; max-width: 100%; }
@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: rgba(var(--warm), 0.25); }
:focus-visible { outline: 2px solid rgba(var(--warm), 0.7); outline-offset: 3px; border-radius: 3px; }

h1, h2, h3 { font-weight: 400; letter-spacing: -0.02em; margin: 0; }

/* ---------------- Boutons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 100px; font-weight: 500; line-height: 1;
  letter-spacing: 0.01em; cursor: pointer; white-space: nowrap;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  font-size: 14.5px; padding: 13px 24px; border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn-lg { font-size: 15.5px; padding: 16px 32px; }
.btn-solid { background: var(--ink); color: #15110A; }
.btn-solid:hover { background: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(244, 238, 225, 0.24); }
.btn-ghost:hover { border-color: rgba(242, 235, 219, 0.4); }

/* ---------------- Navigation ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: background-color .4s var(--ease), padding .35s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(20, 16, 11, 0.72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  padding-top: 16px; padding-bottom: 16px;
}
/* ---- Barre COMPACTE de la 2e partie du site (page prestations) ----
   Cette page n'embarque pas le moteur de l'accueil : personne ne lui posait
   la classe `is-scrolled`, la barre restait donc TRANSPARENTE et son menu se
   superposait au contenu pendant le défilement. On lui donne ici un fond en
   dur, et on la réduit fortement : 115 px (14 % de l'écran) → ~64 px. */
.nav--compact {
  padding: 11px var(--pad);
  background: rgba(18, 15, 10, 0.92);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav--compact .brand-logo { height: 42px; }
.nav--compact .brand-logo.is-fallback { height: 30px; }
.nav--compact .nav-links { gap: 26px; }
.nav--compact .nav-links a { font-size: 13.5px; }
.nav--compact .nav-actions { gap: 14px; }
.nav--compact .btn { padding: 9px 18px; font-size: 13.5px; }
.nav--compact .nav-phone { font-size: 13.5px; }
@media (max-width: 860px) {
  .nav--compact { padding: 8px var(--pad); }
  .nav--compact .brand-logo { height: 34px; }
}

.nav .brand { font-size: 19px; font-weight: 600; letter-spacing: 0.24em; padding-left: 0.24em; }
.nav-links { display: flex; gap: 38px; }
.nav-links a { font-size: 14px; color: var(--faint); letter-spacing: 0.02em; transition: color .25s var(--ease); }
.nav-links a:hover { color: var(--ink); }

/* =====================================================================
   CINÉMA AU SCROLL
   ===================================================================== */
/* ---- L'EXPÉRIENCE : une vidéo plein écran, aucun lien avec le défilement ----
   L'ancien système (images épinglées + scrub au scroll) a été remplacé : la
   vidéo est décodée par la puce vidéo de l'appareil, donc fluide partout, et
   le scroll de la page redevient un scroll de page tout à fait ordinaire. */
.cine {
  position: relative;
  height: 100vh; height: 100svh;
  min-height: 540px;
  overflow: hidden;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.cine-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;          /* remplit l'écran sans déformer, portrait comme paysage */
  display: block;
  background: var(--bg);
}
.cine-veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(125% 80% at 50% 42%, transparent 56%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(180deg, rgba(10, 8, 5, 0.62) 0%, transparent 26%, transparent 58%, rgba(10, 8, 5, 0.72) 100%);
  transition: opacity 0.5s var(--ease);
}
.cine.is-playing .cine-veil { opacity: 0.55; }   /* on s'efface devant le film */

/* -- Écran d'accueil -- */
.cine-intro {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 var(--pad);
  max-width: 780px;
}
.cine-intro[hidden] { display: none; }

.cine-play {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 30px 0 22px;
  padding: 15px 30px;
  font: inherit; font-size: 15px; letter-spacing: 0.02em;
  color: #14110B; background: var(--ink);
  border: 0; border-radius: 100px; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}
.cine-play:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55); }
.cine-play:active { transform: scale(0.98); }
.cine-play-icon {
  width: 0; height: 0;
  border-left: 11px solid currentColor;
  border-top: 7px solid transparent; border-bottom: 7px solid transparent;
  margin-left: 2px;
}

/* Lisibilite du titre par-dessus l'image : voile doux, uniquement sur
   l'ecran d'accueil (il disparait des que le film demarre). */
.cine-intro::before {
  content: ""; position: absolute; z-index: -1;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 148%; height: 168%;
  background: radial-gradient(closest-side, rgba(10, 8, 5, 0.72), rgba(10, 8, 5, 0.34) 62%, transparent 100%);
  pointer-events: none;
}

/* -- Chapitres : le film se met en pause et présente la prestation -- */
.cine-chapters { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.chap {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; padding: clamp(70px, 11vh, 110px) var(--pad) clamp(70px, 10vh, 100px);
  background: rgba(9, 7, 4, 0.86);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.chap.is-on { opacity: 1; visibility: visible; pointer-events: auto; }

.chap-inner {
  display: grid; gap: clamp(20px, 3vw, 40px); align-items: center;
  width: 100%; max-width: 1040px;
}
@media (min-width: 861px) { .chap-inner { grid-template-columns: 1fr 1fr; } }

.chap-text { min-width: 0; }
.chap-idx {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(var(--warm), 0.95); margin: 0;
}
.chap-text h2 { font-size: clamp(24px, 3.4vw, 38px); margin: 10px 0 0; text-wrap: balance; }
.chap-lead { color: var(--ink); font-size: clamp(14px, 1.6vw, 17px); line-height: 1.55; margin: 12px 0 0; }
.chap-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.chap-list li {
  position: relative; padding-left: 20px;
  color: var(--muted); font-size: clamp(13px, 1.4vw, 14.5px); line-height: 1.5;
}
.chap-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: rgba(var(--warm), 0.85);
}

/* Comparateur du chapitre : il se joue TOUT SEUL (balayage avant → après),
   et le visiteur peut le reprendre à la main à tout moment. Dès qu'il y
   touche, la classe .is-manual coupe l'animation et rend la position au
   curseur — les deux ne pilotent donc jamais le volet en même temps.
   La lecture est en pause pendant un chapitre : aucun conflit possible. */
/* UNE SEULE source de vérité : la position `--split`. L'image ET la ligne la
   lisent toutes les deux, donc elles ne peuvent PAS se désynchroniser — même
   si l'animation ne joue pas (téléphone en « animations réduites ») ou si le
   visiteur reprend la main en cours de route. */
@property --split {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 50%;
}
.ba-auto { margin-top: 0; }
.chap.is-on .ba-auto { animation: ba-split 2.8s var(--ease) 0.25s both; }
@keyframes ba-split {
  0%, 12%   { --split: 100%; }   /* on part du « avant » plein cadre */
  74%, 100% { --split: 46%; }    /* et on s'arrête sur une vraie comparaison */
}
/* Reprise en main : l'animation s'efface, `--split` posé au doigt prend le relais. */
.chap.is-on .ba-auto.is-manual { animation: none; }
/* Poignée discrète tant que le balayage se joue, pleine dès la prise en main */
.ba-auto .ba-knob { transform: translate(-50%, -50%) scale(0.72); opacity: 0.75; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.ba-auto.is-manual .ba-knob { transform: translate(-50%, -50%) scale(1); opacity: 1; }

/* Bouton « Continuer » : la barre se remplit = reprise automatique */
.chap-next {
  position: relative; overflow: hidden;
  padding: 13px 30px; min-width: 190px;
  font: inherit; font-size: 14px; color: var(--ink);
  background: rgba(242, 235, 219, 0.08);
  border: 1px solid var(--line); border-radius: 100px; cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.chap-next:hover { border-color: rgba(242, 235, 219, 0.34); background: rgba(242, 235, 219, 0.14); }
.chap-next-label { position: relative; z-index: 2; }
.chap-next-fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: rgba(var(--warm), 0.28);
}
.chap.is-on .chap-next-fill { animation: chap-fill 6s linear 0.25s both; }
@keyframes chap-fill { to { width: 100%; } }

/* Animations réduites : plus de balayage ni de compte à rebours. Le volet
   reste parfaitement cohérent — image et ligne lisent toujours `--split`,
   que le JS positionne alors directement au milieu. */
@media (prefers-reduced-motion: reduce) {
  .chap.is-on .ba-auto,
  .chap.is-on .chap-next-fill { animation: none; }
}

/* -- Passer + progression -- */
.cine-skip {
  position: absolute; z-index: 3;
  right: var(--pad); bottom: clamp(26px, 5vh, 42px);
  padding: 9px 18px;
  font: inherit; font-size: 12.5px; color: var(--muted);
  background: rgba(10, 8, 5, 0.55); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 100px; cursor: pointer;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cine-skip:hover { color: var(--ink); border-color: rgba(242, 235, 219, 0.3); }
.cine-skip[hidden] { display: none; }

.cine-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  height: 2px; background: rgba(242, 235, 219, 0.12);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.cine-bar.is-on { opacity: 1; }
.cine-bar span { display: block; height: 100%; width: 0; background: rgba(var(--warm), 0.9); }

/* -- Écran de fin -- */
.cine-end {
  position: absolute; inset: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; text-align: center; padding: 0 var(--pad);
  background: rgba(10, 8, 5, 0.72);
  animation: cine-end-in 0.6s var(--ease) both;
}
.cine-end[hidden] { display: none; }
.cine-end h2 { font-size: clamp(26px, 3.6vw, 40px); margin: 0; text-wrap: balance; }
.cine-end p { color: var(--muted); font-size: 15px; margin: 12px 0 0; max-width: 46ch; }

/* UN SEUL appel à l'action, impossible à manquer : grand, clair, avec un halo
   qui respire et une flèche qui avance au survol. C'est la porte d'entrée
   vers la seconde partie du site (forfaits, devis, avis, contact). */
.cine-cta {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 30px; padding: 19px 40px;
  font-size: clamp(15px, 1.9vw, 18px); font-weight: 500; letter-spacing: 0.01em;
  color: #14110B; background: var(--ink);
  border-radius: 100px; text-decoration: none;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(var(--warm), 0.5);
  animation: cta-halo 2.6s ease-in-out 0.6s infinite;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cine-cta:hover, .cine-cta:focus-visible {
  transform: translateY(-3px); animation-play-state: paused;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.62), 0 0 0 6px rgba(var(--warm), 0.22);
}
.cine-cta:active { transform: scale(0.985); }
.cine-cta-arrow { font-size: 1.15em; transition: transform 0.25s var(--ease); }
.cine-cta:hover .cine-cta-arrow { transform: translateX(5px); }
@keyframes cta-halo {
  0%, 100% { box-shadow: 0 14px 42px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(var(--warm), 0.45); }
  50%      { box-shadow: 0 14px 42px rgba(0, 0, 0, 0.55), 0 0 0 14px rgba(var(--warm), 0); }
}
@media (prefers-reduced-motion: reduce) { .cine-cta { animation: none; } }
.cine-replay {
  margin-top: 22px; padding: 8px 16px;
  font: inherit; font-size: 13px; color: var(--muted);
  background: none; border: 0; cursor: pointer;
}
.cine-replay:hover { color: var(--ink); }
@keyframes cine-end-in { from { opacity: 0; } to { opacity: 1; } }
.presta-item .panel { width: 100%; max-width: 720px; }

.kicker {
  font-size: 12.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 26px;
}
.cine-intro h1 {
  font-size: clamp(38px, 7vw, 92px); line-height: 1.02; text-wrap: balance;
  margin: 0;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.45);
}
.cine-intro .lead { max-width: 48ch; }
.hero-actions { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }
@keyframes cue { 0%{transform:scaleY(0);transform-origin:top} 45%{transform:scaleY(1);transform-origin:top} 55%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ---- Panneau de section ---- */
.panel {
  width: min(42ch, 92vw);
  --panel-measure: 100%;
  background: linear-gradient(180deg, rgba(22, 17, 11, 0.88), rgba(16, 12, 8, 0.82));
  -webkit-backdrop-filter: blur(16px) saturate(1.05); backdrop-filter: blur(16px) saturate(1.05);
  border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 30px 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.panel h2 { font-size: clamp(26px, 3.2vw, 38px); margin: 16px 0 0; text-wrap: balance; max-width: var(--panel-measure); }
.panel p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 14px 0 0; max-width: var(--panel-measure); }

/* Desktop : les avant/après prennent de l'ampleur (vitrine du résultat) */
@media (min-width: 1100px) {
  .panel {
    width: min(700px, 88vw);
    padding: 36px 38px 32px;
    --panel-measure: 48ch; /* le texte garde une largeur de lecture confortable */
  }
  .panel .ba { margin-top: 28px; border-radius: 16px; }
  .ba-knob { width: 52px; height: 52px; }
  .ba-knob::before { font-size: 17px; }
  .ba-tag { font-size: 11.5px; padding: 6px 13px; }
}

/* =====================================================================
   COMPARATEUR AVANT / APRÈS (intégré, premium)
   ===================================================================== */
.ba {
  position: relative; margin-top: 24px; width: 100%;
  aspect-ratio: 16 / 10; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); background: #0c0a06;
  cursor: ew-resize; user-select: none; touch-action: pan-y;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.ba-after, .ba-before { position: absolute; inset: 0; background-size: cover; background-position: center; }
/* « Avant » = vrai visuel sale (généré, même cadrage que l'après) */
.ba-before { clip-path: inset(0 calc(100% - var(--split, 50%)) 0 0); }
.ba-tag {
  position: absolute; bottom: 12px; z-index: 3;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff;
  padding: 5px 11px; border-radius: 20px;
  background: rgba(0, 0, 0, 0.42); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.ba-tag--before { left: 12px; }
.ba-tag--after { right: 12px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--split, 50%); z-index: 4;
  width: 2px; background: rgba(255, 255, 255, 0.9); transform: translateX(-1px); pointer-events: none;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.5);
}
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.96); color: #15110A;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
}
.ba-knob::before { content: "⟷"; font-size: 15px; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.film-progress.is-on { opacity: 1; }
.swipe-cue.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }
@keyframes sc-drop {
  0%        { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
  40%       { opacity: 1; }
  75%, 100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* =====================================================================
   SITE SCINDÉ : l'accueil ne porte QUE l'expérience. Elle se conclut sur
   son propre écran de fin (revoir / visiter le reste du site) — il n'y a
   donc plus rien à faire défiler en dessous, hormis le mini pied de page.
   prestations.html = en-tête de page + monde forfaits complet.
   ===================================================================== */
.mini-footer {
  position: relative; z-index: 2; background: var(--bg);
  display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center;
  padding: 26px var(--pad) 30px;
  color: var(--muted); font-size: 12.5px;
  border-top: 1px solid var(--line-soft);
}
.mini-footer nav { display: flex; gap: 8px 18px; flex-wrap: wrap; justify-content: center; }
.mini-footer a { color: var(--muted); }
.mini-footer a:hover { color: var(--ink); }
@media (max-width: 860px) {
  .mini-footer { padding-bottom: calc(30px + 72px); }   /* place pour la barre d'action mobile */
}

.page-head { padding: clamp(88px, 12vh, 116px) var(--pad) 0; text-align: center; }
.page-head h1 { font-size: clamp(28px, 4vw, 44px); margin: 12px 0 0; text-wrap: balance; }
.page-back { display: inline-block; margin-top: 14px; color: var(--muted); font-size: 13.5px; }
.page-back:hover { color: var(--ink); }

/* =====================================================================
   MONDE FORFAITS (sombre, cohérent)
   ===================================================================== */
.world { position: relative; z-index: 2; background: var(--bg); }

.lead-in { text-align: center; padding: clamp(80px, 12vh, 140px) var(--pad) 10px; }
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin: 0 0 18px; }
.lead-in h2 { font-size: clamp(28px, 4vw, 46px); margin: 0 auto; max-width: 16ch; text-wrap: balance; }
.lead-in-sub { font-size: 16px; color: var(--muted); margin: 16px auto 0; max-width: 52ch; line-height: 1.6; }

/* ---------------- Forfaits — parcours guidé ---------------- */
.packs { padding: clamp(40px, 6vh, 64px) var(--pad) clamp(70px, 10vh, 110px); }

/* Étape 1 : catégories */
.cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}
.cat {
  appearance: none; text-align: left; cursor: pointer;
  display: flex; flex-direction: column; gap: 7px;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.025), transparent);
  border: 1px solid var(--line); border-radius: 16px;
  color: var(--ink); font-family: var(--font);
  transition: border-color .3s var(--ease), background-color .3s var(--ease),
              transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cat:hover { border-color: rgba(242, 235, 219, 0.3); transform: translateY(-2px); }
.cat[aria-selected="true"] {
  border-color: rgba(var(--warm), 0.55);
  background: linear-gradient(180deg, rgba(var(--warm), 0.07), rgba(var(--warm), 0.02));
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
}
.cat-icon { width: 58px; height: 26px; color: var(--muted); transition: color .3s var(--ease); }
.cat[aria-selected="true"] .cat-icon { color: rgba(var(--warm), 0.95); }
.cat-name { font-size: 16.5px; font-weight: 500; letter-spacing: -0.01em; }
.cat-price { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: rgba(var(--warm), 0.9); }
.cat-ex { font-size: 12.5px; color: var(--faint); line-height: 1.45; }

.cats-hint {
  text-align: center; font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint);
  margin: 34px 0 0;
  transition: opacity .3s var(--ease);
}

/* Étape 2 : forfaits */
.tiers { margin-top: clamp(40px, 6vh, 56px); }
.tiers.is-in { animation: tiers-in .6s var(--ease) both; }
@keyframes tiers-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.tiers-head h3 {
  font-size: clamp(22px, 2.6vw, 30px); font-weight: 400; letter-spacing: -0.015em;
  margin: 0 0 26px; display: flex; align-items: baseline; gap: 10px;
}
.tiers-head #tiers-cat { color: rgba(var(--warm), 0.95); font-weight: 400; }

.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.tier {
  position: relative;
  display: flex; flex-direction: column;
  padding: 30px 28px 26px;
  border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.025), transparent);
}
.tier--featured {
  border-color: rgba(var(--warm), 0.5);
  background: linear-gradient(180deg, rgba(var(--warm), 0.08), rgba(var(--warm), 0.015));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.tier-badge {
  position: absolute; top: -11px; left: 26px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #15110A; background: rgba(var(--warm), 0.95);
  padding: 5px 12px; border-radius: 20px;
}
.tier-badge--alt { background: var(--ink); }
.tier h4 { font-size: 21px; font-weight: 500; margin: 0; }
.tier-price { margin: 12px 0 2px; display: flex; align-items: baseline; gap: 8px; }
.tier-price .from { font-size: 12.5px; color: var(--faint); }
.tier-price .amount {
  font-size: clamp(30px, 3vw, 38px); font-weight: 400; letter-spacing: -0.02em;
  transition: opacity .25s var(--ease);
}
.tier-price.is-updating .amount { opacity: 0; }
.tier-pitch { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 10px 0 18px; min-height: 44px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier li { font-size: 14px; display: flex; gap: 11px; align-items: baseline; color: var(--ink); }
.tier li::before { content: ""; width: 4.5px; height: 4.5px; border-radius: 50%; background: rgba(var(--warm), 0.85); flex: 0 0 auto; transform: translateY(-2px); }
.tier li.tier-prev { color: var(--faint); font-size: 12.5px; font-family: var(--mono); letter-spacing: 0.05em; }
.tier li.tier-prev::before { background: transparent; width: 0; }
.tier-cta { display: flex; gap: 10px; }
.tier-cta .btn { flex: 1; }

/* Options à la carte */
/* Suppléments : présentés en LISTE DE PRIX alignée plutôt qu'en pastilles qui
   s'enroulaient de façon irrégulière. Les colonnes s'ajustent à la largeur
   disponible, les prix sont alignés à droite et se lisent d'un coup d'œil —
   pour une hauteur équivalente. */
.addons {
  margin-top: 18px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
  gap: 0 26px;
  padding: 14px 20px 16px;
  border: 1px solid var(--line-soft); border-radius: 14px;
  background: rgba(242, 235, 219, 0.018);
}
.addons-label {
  grid-column: 1 / -1;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--faint);
  margin-bottom: 8px;
}
.addons-label em { font-style: normal; text-transform: none; letter-spacing: 0.02em; }
.addon {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px; color: var(--ink);
}
.addon > span:first-child { min-width: 0; }
.addon em { font-style: normal; color: var(--faint); }
.addon-price {
  font-family: var(--mono); font-size: 12.5px;
  color: rgba(var(--warm), 0.95); white-space: nowrap;
}
.options label em { font-style: normal; color: var(--faint); }

/* Sur mesure — mis en avant */
.custom-banner {
  position: relative; margin-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 30px 34px;
  border: 1px solid rgba(var(--warm), 0.5); border-radius: 18px;
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(var(--warm), 0.12), transparent 60%),
    linear-gradient(180deg, rgba(var(--warm), 0.08), rgba(var(--warm), 0.02));
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.4);
}
.custom-badge {
  position: absolute; top: -11px; left: 30px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #15110A; background: rgba(var(--warm), 0.95);
  padding: 5px 13px; border-radius: 20px;
}
.custom-banner h4 { font-size: clamp(20px, 2.4vw, 25px); font-weight: 500; margin: 0 0 8px; }
.custom-banner p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 60ch; }
.custom-banner .btn { flex: 0 0 auto; }
.custom-banner-text { min-width: 0; }
.custom-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; }
.custom-tags li { font-family: var(--mono); font-size: 11px; letter-spacing: 0.03em; padding: 6px 12px; border-radius: 100px; border: 1px solid rgba(var(--warm), 0.4); color: rgba(var(--warm), 0.92); background: rgba(var(--warm), 0.06); }

.price-note {
  margin: 22px 4px 0; font-size: 12.5px; color: var(--faint); text-align: center;
}

/* Intro / idéal pour / outro forfaits */
.tiers-intro { text-align: center; max-width: 70ch; margin: 0 auto 28px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.tiers-intro strong { color: var(--ink); font-weight: 500; }
.tier-ideal {
  font-size: 13px; line-height: 1.55; color: var(--muted);
  margin: 4px 0 20px; padding-top: 16px; border-top: 1px solid var(--line-soft);
}
.tier-ideal strong { color: rgba(var(--warm), 0.95); font-weight: 500; }
.packs-outro { text-align: center; font-size: 14.5px; color: var(--muted); margin: 26px auto 0; max-width: 56ch; }
.packs-outro strong { color: rgba(var(--warm), 0.95); font-weight: 500; }

/* Tableau comparatif */
.compare-wrap { margin-top: 28px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
/* `separate` et non `collapse` : la 1re colonne est sticky dans un conteneur à
   défilement horizontal, et sticky + border-collapse:collapse déclenche des
   bandes noires non rasterisées pendant le swipe (bug de rendu Chrome mobile).
   Rendu identique : seules des bordures basses par cellule sont utilisées. */
.compare { width: 100%; min-width: 600px; border-collapse: separate; border-spacing: 0; font-size: 13.5px; }
.compare th, .compare td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); color: var(--muted); }
.compare thead th { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); border-bottom-color: var(--line); }
.compare td:first-child, .compare th:first-child { color: var(--ink); font-weight: 400; }
.compare .col-feat { background: rgba(var(--warm), 0.06); }
.compare thead .col-feat { color: rgba(var(--warm), 0.95); }
.compare .yes { color: rgba(var(--warm), 0.95); font-weight: 500; }
.compare .no { color: rgba(244, 238, 225, 0.42); }

/* Prestations cochables (sur mesure) */
.prestations { border: 1px solid var(--line-soft); border-radius: 12px; padding: 14px 16px 12px; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.prestations legend { padding: 0 6px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.prestations legend em { font-style: normal; text-transform: none; letter-spacing: 0; color: var(--faint); }
.prestations label { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink); cursor: pointer; }
.prestations input[type="checkbox"] { accent-color: rgb(var(--warm)); width: 15px; height: 15px; }

/* Estimation dynamique */
.estimate {
  margin: 0; padding: 18px 20px; border-radius: 14px;
  border: 1px solid rgba(var(--warm), 0.55);
  background: linear-gradient(180deg, rgba(var(--warm), 0.18), rgba(var(--warm), 0.06)), #17120c;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}
.estimate-label { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(var(--warm), 0.95); margin-bottom: 10px; }
.estimate-label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: rgba(var(--warm), 0.95); box-shadow: 0 0 0 3px rgba(var(--warm), 0.18); }
.estimate-body { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.estimate-line { display: flex; justify-content: space-between; gap: 14px; }
.estimate-line > span:last-child { color: var(--ink); text-align: right; }
.estimate-price { margin-top: 10px; font-size: clamp(20px, 3vw, 27px); font-weight: 500; color: rgba(var(--warm), 0.97); letter-spacing: -0.01em; }
.estimate-msg { color: var(--ink); font-size: 14.5px; line-height: 1.55; }
.estimate-note { font-size: 12px; line-height: 1.5; color: var(--faint); margin: 10px 0 0; }
.estimate-next { margin: 12px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--ink); }
/* Devis simplifié : ligne « Inclus » + note « pas d'auto-évaluation » */
.incl-line { margin: -6px 0 0; padding: 11px 14px; border-radius: 11px; border: 1px solid rgba(var(--warm), 0.35); background: rgba(var(--warm), 0.07); font-size: 13.5px; line-height: 1.55; color: var(--ink); }
.incl-line strong { color: rgba(var(--warm), 0.95); font-weight: 600; }
.state-note { margin: 2px 0 0; font-size: 12.5px; line-height: 1.55; color: var(--muted); }
.state-note strong { color: var(--ink); font-weight: 600; }
.estimate-next strong { color: rgba(var(--warm), 0.97); font-weight: 600; }
.form-final { margin: 10px 0 0; font-size: 12px; line-height: 1.45; color: var(--faint); }
.pres-opt .pres-tag.incl { color: rgba(var(--warm), 0.9); }
.prestations { flex-direction: column; align-items: stretch; gap: 12px; }
.options label em { font-style: normal; color: var(--faint); }

/* ---------------- Modale devis ---------------- */
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8, 6, 4, 0.7); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.modal-card {
  position: relative; width: min(640px, 100%); max-height: min(88vh, 880px); overflow: auto;
  background: linear-gradient(180deg, #201A12, #17130C);
  border: 1px solid var(--line); border-radius: 20px;
  padding: 34px 34px 30px;
  --qb-px: 34px; --qb-pb: 30px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  animation: tiers-in .45s var(--ease) both;
}
/* La barre de prix sticky occupe le bas → pas de padding bas sur la modale devis */
#quote-modal .modal-card { padding-bottom: 0; }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  font-size: 20px; line-height: 1; cursor: pointer;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.modal-close:hover { border-color: rgba(242, 235, 219, 0.4); }
.modal-card h3 { font-size: 24px; font-weight: 400; margin: 0 38px 6px 0; }
.modal-sub { font-size: 14px; color: var(--muted); margin: 0 0 24px; line-height: 1.55; }

/* Modale d'appel (ordinateur) */
.modal-card--call { width: min(460px, 100%); text-align: center; padding-top: 40px; }
.modal-card--call h3 { margin: 0 0 4px; }
.call-sub { font-size: 14px; color: var(--muted); margin: 4px 0 0; }
.call-number {
  display: inline-block; margin: 6px 0 2px; white-space: nowrap;
  font-size: clamp(30px, 6vw, 42px); font-weight: 600; letter-spacing: 0.01em;
  color: rgba(var(--warm), 0.97); text-decoration: none;
}
.call-email { font-size: clamp(18px, 4vw, 26px); white-space: normal; word-break: break-word; }
.call-note { font-size: 13.5px; color: var(--faint); margin: 8px auto 0; max-width: 34ch; line-height: 1.5; }
.call-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }
.call-copied { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: rgba(var(--warm), 0.95); margin: 14px 0 0; }
.call-copied[hidden] { display: none; }

/* Champ anti-spam (honeypot) — jamais visible pour l'utilisateur */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* Élément réservé au mobile (ex. bouton « Envoyer un SMS ») */
.mobile-only { display: none; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field > span, .options legend {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.field > span em { font-style: normal; text-transform: none; letter-spacing: 0; color: var(--faint); }
.field input[type="text"], .field input[type="tel"], .field input[type="email"],
.field select, .field textarea {
  width: 100%; padding: 12px 14px;
  background: rgba(255, 252, 245, 0.04);
  border: 1px solid var(--line); border-radius: 10px;
  color: var(--ink); font-family: var(--font); font-size: 14.5px;
  transition: border-color .25s var(--ease);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.field select option { background: #1B1710; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: rgba(var(--warm), 0.6); }
.field textarea { resize: vertical; min-height: 90px; }
.field input[type="file"] { color: var(--muted); font-size: 13px; padding: 10px 0 0; border: none; background: none; }
.field small { font-size: 12px; color: var(--faint); }
/* Options du devis : de vraies CARTES sélectionnables plutôt que des cases à
   cocher nues alignées à la va-vite. Elles se répartissent en colonnes selon
   la largeur disponible, et la carte entière s'allume quand elle est cochée. */
.options {
  border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 14px 16px 16px; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: 10px;
}
.options legend { padding: 0 6px; }
.options label {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 13.5px; line-height: 1.4; color: var(--ink); cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.options label:hover { border-color: rgba(var(--warm), 0.5); }
/* État coché : la classe est posée par forfaits.js. On ne dépend pas de
   `:has()` — le rendu est ainsi identique sur tous les navigateurs. */
.options label.is-checked {
  border-color: rgba(var(--warm), 0.85);
  background: rgba(var(--warm), 0.12);
  box-shadow: inset 0 0 0 1px rgba(var(--warm), 0.28);
}
.options label:focus-within { outline: 2px solid rgba(var(--warm), 0.7); outline-offset: 2px; }
/* Le prix passe à la ligne, en clair : la carte reste lisible même étroite. */
.options label em { display: block; margin-top: 3px; font-size: 12.5px; }
/* L'option « retirer le moteur » porte une explication : pleine largeur. */
#opt-motout-row { grid-column: 1 / -1; }
.options input[type="checkbox"] {
  accent-color: rgb(var(--warm)); width: 16px; height: 16px;
  margin: 1px 0 0; flex: none;
}
/* Devis sur mesure : « type de demande » en pastilles cliquables (flottes, moto/quad, mobilier…) */
.customkind { border: 1px solid var(--line-soft); border-radius: 12px; padding: 14px 16px; margin: 0; }
.customkind legend { padding: 0 6px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.ck-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 4px; }
.ck-chip { display: inline-flex; }
.ck-chip input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.ck-chip span { display: inline-block; padding: 9px 14px; border-radius: 100px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02); font-size: 13px; color: var(--ink); cursor: pointer; transition: border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease); -webkit-tap-highlight-color: transparent; }
.ck-chip span:hover { border-color: rgba(var(--warm), 0.5); }
.ck-chip input:checked + span { border-color: rgba(var(--warm), 0.85); background: rgba(var(--warm), 0.14); color: rgba(var(--warm), 0.98); box-shadow: inset 0 0 0 1px rgba(var(--warm), 0.3); }
.ck-chip input:focus-visible + span { outline: 2px solid rgba(var(--warm), 0.7); outline-offset: 2px; }
.ck-hint { margin: 12px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--muted); }
.form-note { font-size: 13px; color: rgba(var(--warm), 0.9); margin: 0; line-height: 1.5; }
.form-note[hidden] { display: none; }
.form-note.is-error { color: #ff9d8c; }
.form-note .fn-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.form-note .fn-actions .btn { font-size: 14px; padding: 11px 16px; }

.trust { text-align: center; padding: 0 var(--pad) clamp(64px, 9vh, 96px); }

.contact { padding: 0 var(--pad) clamp(72px, 10vh, 110px); }
.contact-inner { border-top: 1px solid var(--line-soft); padding-top: clamp(56px, 8vh, 72px); display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: end; }
.contact h2 { font-size: clamp(28px, 4vw, 48px); max-width: 14ch; text-wrap: balance; }
.contact p { color: var(--muted); font-size: 16px; margin: 18px 0 0; max-width: 44ch; line-height: 1.6; }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-meta { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 80px; padding-top: 24px; border-top: 1px solid var(--line-soft); font-size: 13px; color: var(--faint); }

/* ---------------- Nav : téléphone ---------------- */
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-size: 14px; color: var(--faint); letter-spacing: 0.03em; transition: color .25s var(--ease); white-space: nowrap; }
.nav-phone:hover { color: var(--ink); }
.addons-label em { font-style: normal; text-transform: none; letter-spacing: 0.02em; color: var(--faint); }

/* ---------------- Zone d'intervention ---------------- */
.zone { padding: 0 var(--pad) clamp(64px, 9vh, 96px); }
.zone-inner { border-top: 1px solid var(--line-soft); padding-top: clamp(56px, 8vh, 72px); text-align: center; }
.zone h2 { font-size: clamp(26px, 3.4vw, 40px); margin: 0 auto; max-width: 22ch; text-wrap: balance; }
.zone-text { font-size: 16px; color: var(--muted); margin: 16px auto 0; max-width: 56ch; line-height: 1.6; }
.zone-list {
  list-style: none; padding: 0; margin: 30px auto 0; max-width: 880px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 9px 10px;
}
.zone-list li {
  font-size: 13px; color: var(--muted);
  padding: 8px 16px; border: 1px solid var(--line-soft); border-radius: 100px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.zone-list li:hover { border-color: rgba(var(--warm), 0.4); color: var(--ink); }

/* ---------------- FAQ ---------------- */
.faq { padding: 0 var(--pad) clamp(64px, 9vh, 96px); }
.faq-inner { border-top: 1px solid var(--line-soft); padding-top: clamp(56px, 8vh, 72px); max-width: 760px; margin: 0 auto; }
.faq .eyebrow, .faq h2 { text-align: center; }
.faq h2 { font-size: clamp(26px, 3.4vw, 40px); margin: 0 auto 28px; max-width: 22ch; text-wrap: balance; }
.faq details {
  border: 1px solid var(--line-soft); border-radius: 14px;
  margin-top: 10px; overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq details[open] { border-color: rgba(var(--warm), 0.35); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 18px 22px; font-size: 15.5px; font-weight: 500; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 19px; color: var(--muted); transition: transform .25s var(--ease); flex: 0 0 auto; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 22px 18px; font-size: 14.5px; line-height: 1.65; color: var(--muted); }

.faq-link {
  flex-basis: 100%;
  font-size: 13.5px; color: var(--faint);
  transition: color .25s var(--ease);
}
.faq-link:hover { color: var(--ink); }

/* ---------------- Footer ---------------- */
.site-footer { padding: 0 var(--pad) 34px; }
.footer-grid {
  border-top: 1px solid var(--line-soft); padding-top: clamp(44px, 6vh, 60px);
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px;
}
.footer-logo { font-size: 17px; font-weight: 600; letter-spacing: 0.24em; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 14px 0 0; max-width: 38ch; }
.footer-contacts a { color: var(--ink); font-size: 15px; line-height: 1.9; transition: color .25s var(--ease); }
.footer-contacts a:hover { color: rgba(var(--warm), 0.95); }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color .25s var(--ease); }
.footer-links a:hover { color: var(--ink); }
.site-footer .footer-meta { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--faint); }

/* ---------------- Pages légales ---------------- */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 120px var(--pad) 80px; }
.legal-wrap h1 { font-size: clamp(30px, 4.5vw, 44px); margin: 0 0 10px; }
.legal-wrap h2 { font-size: 21px; font-weight: 500; margin: 36px 0 0; }
.legal-wrap p, .legal-wrap li { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 12px 0 0; }
.legal-wrap ul { padding-left: 20px; margin: 8px 0 0; }
.legal-wrap a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-back { display: inline-block; margin-bottom: 26px; font-size: 14px; color: var(--muted); }
.legal-back:hover { color: var(--ink); }

.contact-lines { display: flex; flex-direction: column; gap: 4px; margin: 16px 0 0; }
.contact-lines a { font-size: clamp(16px, 1.8vw, 20px); font-weight: 500; color: rgba(var(--warm), 0.95); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(var(--warm), 0.35); transition: color .25s var(--ease); }
.contact-lines a:hover { color: var(--ink); }
.price-note--accent { color: rgba(var(--warm), 0.85); }
.footer-social { font-size: 13px; color: var(--faint); margin: 16px 0 0; }

/* ---------------- Pourquoi choisir ---------------- */
.why { padding: clamp(70px, 11vh, 130px) var(--pad) clamp(20px, 4vh, 40px); }
.why-head { text-align: center; margin-bottom: clamp(34px, 5vh, 50px); }
.why-head h2 { font-size: clamp(26px, 3.6vw, 42px); margin: 0 auto; max-width: 20ch; text-wrap: balance; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.why-card {
  padding: 28px 26px; border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.025), transparent);
}
.why-card svg { width: 26px; height: 26px; color: rgba(var(--warm), 0.9); }
.why-card h3 { font-size: 18px; font-weight: 500; margin: 16px 0 0; }
.why-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 9px 0 0; }

/* ---------------- Notre méthode ---------------- */
.method { padding: clamp(64px, 9vh, 110px) var(--pad); }
.method-head { text-align: center; margin-bottom: clamp(34px, 5vh, 50px); }
.method-head h2 { font-size: clamp(26px, 3.6vw, 42px); margin: 0 auto; max-width: 22ch; text-wrap: balance; }
.method-steps { list-style: none; padding: 0; margin: 0 auto; max-width: 1100px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
.method-steps li { padding: 26px 24px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(180deg, rgba(255, 252, 245, 0.02), transparent); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  font-family: var(--mono); font-size: 14px; color: #15110A;
  background: rgba(var(--warm), 0.92);
}
.method-steps h3 { font-size: 17px; font-weight: 500; margin: 14px 0 0; }
.method-steps p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 8px 0 0; }

/* ---------------- Résultats visibles ---------------- */
.results { padding: clamp(64px, 9vh, 110px) var(--pad); border-top: 1px solid var(--line-soft); }
.results-head { text-align: center; margin-bottom: clamp(30px, 4vh, 44px); }
.results-head h2 { font-size: clamp(26px, 3.6vw, 42px); margin: 0 auto; max-width: 18ch; text-wrap: balance; }
.results-text { font-size: 16px; color: var(--muted); margin: 14px auto 0; max-width: 56ch; line-height: 1.6; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.result-tile { margin: 0; }
.result-tile .ba { margin-top: 0; }
.result-tile figcaption { margin-top: 12px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-align: center; }
.results-note { text-align: center; font-size: 12.5px; color: var(--faint); margin: 18px 0 0; }

/* ---------------- Avis clients ---------------- */
.reviews { padding: clamp(64px, 9vh, 110px) var(--pad); border-top: 1px solid var(--line-soft); }
.reviews-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.reviews-inner h2 { font-size: clamp(24px, 3.2vw, 38px); margin: 0 auto; max-width: 20ch; text-wrap: balance; }
.reviews-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------------- FAQ accueil + page ---------------- */
.faq-home { padding: 0 var(--pad) clamp(64px, 9vh, 96px); }
.faq-home .faq-inner { border-top: 1px solid var(--line-soft); padding-top: clamp(56px, 8vh, 72px); max-width: 760px; margin: 0 auto; }
.faq-home .eyebrow, .faq-home h2 { text-align: center; }
.faq-home h2 { font-size: clamp(24px, 3.2vw, 38px); margin: 0 auto 26px; max-width: 24ch; text-wrap: balance; }
.faq-home details, .faq-list details {
  border: 1px solid var(--line-soft); border-radius: 14px; margin-top: 10px; overflow: hidden;
  transition: border-color .25s var(--ease);
}
.faq-home details[open], .faq-list details[open] { border-color: rgba(var(--warm), 0.35); }
.faq-home summary, .faq-list summary {
  cursor: pointer; list-style: none; padding: 18px 22px; font-size: 15.5px; font-weight: 500; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-home summary::-webkit-details-marker, .faq-list summary::-webkit-details-marker { display: none; }
.faq-home summary::after, .faq-list summary::after { content: "+"; font-size: 19px; color: var(--muted); transition: transform .25s var(--ease); flex: 0 0 auto; }
.faq-home details[open] summary::after, .faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-home details p, .faq-list details p { margin: 0; padding: 0 22px 18px; font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.faq-all { display: inline-block; margin-top: 22px; font-size: 14px; color: rgba(var(--warm), 0.9); }
.faq-all:hover { color: var(--ink); }
.faq-list { margin-top: 24px; }

/* ---------------- Zone : phrase + bouton ---------------- */
.zone-other { font-size: 14.5px; color: var(--muted); margin: 26px auto 0; max-width: 52ch; }
.zone .btn { margin-top: 18px; }

/* ---------------- WhatsApp flottant ---------------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------------- Barre mobile fixe ---------------- */
.mobile-bar { display: none; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 980px) {
  .tier-grid { grid-template-columns: 1fr; gap: 22px; }
  .tier--featured { order: -1; }
  .tier-pitch { min-height: 0; }
  .custom-banner { flex-direction: column; align-items: flex-start; }
  .why-grid, .method-steps, .results-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  /* Tout le bloc d'actions du nav est masqué sur mobile : « Demander un devis »
     et le téléphone vivent déjà dans la barre fixe du bas — pas de doublon. */
  .nav-actions { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .modal-card { padding: 26px 20px 22px; --qb-px: 20px; --qb-pb: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  /* Hero allégé sur mobile : « Demander un devis » et « Appeler » sont déjà
     présents en permanence dans la barre fixe du bas — on retire les boutons
     en double + le paragraphe long pour ne pas surcharger le 1er écran, et on
     remonte « Faites défiler » au-dessus de la barre pour qu'il reste visible. */
  .cine-intro .lead { display: none; }
  .hero-actions { display: none; }

  /* Barre d'action fixe en bas (accès devis + appel en < 10 s) */
  .mobile-bar {
    display: flex; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 75;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(16, 12, 7, 0.92);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-top: 1px solid var(--line-soft);
  }
  .mb-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 13px 6px; border-radius: 100px; font-weight: 500; font-size: 13.5px;
    border: 1px solid var(--line); background: transparent; color: var(--ink); font-family: var(--font); cursor: pointer;
    text-decoration: none;
  }
  .mb-primary { background: var(--ink); color: #15110A; border-color: var(--ink); }
  .mb-wa { color: #25D366; border-color: rgba(37, 211, 102, 0.5); }
  .mb-wa svg { width: 17px; height: 17px; flex: 0 0 auto; }
  /* le bouton « Envoyer un SMS » n'apparaît que sur mobile */
  .mobile-only { display: inline-flex; align-items: center; justify-content: center; }
  /* WhatsApp flottant masqué sur mobile : il surchargeait le coin bas-droit
     juste au-dessus de la barre. WhatsApp reste accessible dans Contact + footer. */
  .wa-float { display: none; }
  .site-footer { padding-bottom: 86px; }
}
@media (max-width: 560px) {
  .panel { padding: 24px 22px 22px; }
  .ba { aspect-ratio: 16 / 10; } /* mêmes proportions que les visuels : aucune déformation */
  .nav { padding: 16px 18px; }
  .cine-intro h1 { font-size: clamp(34px, 10vw, 44px); }
  .why-grid, .method-steps, .results-grid { grid-template-columns: 1fr; }
}

/* Voile cinématique en PORTRAIT (téléphone/tablette) : dégradé sombre haut+bas
   calé sur la voiture agrandie → les bords fondent dans le studio (plus de
   bandes noires franches), le milieu reste clair pour bien voir la voiture.
   Le bandeau HAUT est volontairement appuyé : combiné au rognage de 15 % du
   haut de l'image (hero-cinema.js), il fond le « plafond » du décor IA —
   dont le style varie selon les scènes — dans une ombre d'ambiance. */
@media (orientation: portrait) and (max-width: 920px) {
  .cine-veil {
    background: linear-gradient(180deg,
      rgba(10, 8, 5, 0.94) 0%, rgba(10, 8, 5, 0.62) 14%,
      rgba(10, 8, 5, 0.25) 24%, transparent 36%,
      transparent 72%, rgba(10, 8, 5, 0.55) 87%, rgba(10, 8, 5, 0.95) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* =====================================================================
   Ajouts UX / conversion
   ===================================================================== */

/* ---- Hero : pastilles prestations + prix + lien tarifs (mobile) ---- */
.hero-services {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 10px;
}
.hero-services li {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); padding: 7px 14px; border: 1px solid var(--line); border-radius: 100px;
  background: rgba(20, 16, 11, 0.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero-services .hs-home { color: #15110A; background: rgba(var(--warm), 0.92); border-color: transparent; font-weight: 500; }
.hero-price { margin: 18px auto 0; font-size: clamp(14px, 1.6vw, 16px); color: var(--muted); }
.hero-price strong { color: rgba(var(--warm), 0.97); font-weight: 600; }

/* ---- Bloc confiance / engagements (remplace l'ancienne section avis) ---- */
.trust { padding: clamp(64px, 9vh, 110px) var(--pad); border-top: 1px solid var(--line-soft); }
.trust-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.trust-inner h2 { font-size: clamp(26px, 3.4vw, 40px); margin: 0 auto; max-width: 22ch; text-wrap: balance; }
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin: clamp(28px, 4vh, 44px) auto 0; text-align: left;
}
.trust-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 24px 24px 22px;
  background: linear-gradient(180deg, rgba(var(--warm), 0.05), rgba(var(--warm), 0.012));
}
.trust-card h3 { font-size: 17px; font-weight: 500; margin: 0 0 8px; color: var(--ink); }
.trust-card h3::before {
  content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: rgba(var(--warm), 0.9); margin-right: 10px; vertical-align: middle;
}
.trust-card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }
.trust-card strong { color: var(--ink); font-weight: 500; }
.trust-conditions { font-size: 14px; line-height: 1.65; color: var(--muted); max-width: 72ch; margin: 26px auto 0; }
.trust-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---- Formulaire devis : blocs guidés ---- */
.form-section { margin-bottom: 20px; }
.form-section + .form-section { padding-top: 18px; border-top: 1px solid var(--line-soft); }
.form-section-title {
  display: flex; align-items: center; gap: 11px; margin: 0 0 14px;
  font-size: 15px; font-weight: 500; color: var(--ink);
}
.form-section-title .fs-num {
  flex: 0 0 auto; width: 23px; height: 23px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 12px; color: #15110A; background: rgba(var(--warm), 0.95);
}
.form-hint {
  margin: 4px 0 0; padding: 14px 16px;
  background: rgba(var(--warm), 0.05); border: 1px solid var(--line-soft); border-radius: 12px;
}
.form-hint p { margin: 0 0 12px; font-size: 13px; line-height: 1.55; color: var(--muted); }
.wa-photos { font-size: 13.5px; padding: 10px 16px; }

/* ---- Logo (mark + wordmark) ---- */
.nav .brand { display: inline-flex; align-items: center; gap: 9px; padding-left: 0; }
.brand-word i, .footer-logo i { font-style: normal; color: rgba(var(--warm), 0.95); }
.footer-logo { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.footer-logo .brand-mark { height: 40px; width: auto; }
/* Logo client (image fournie) */
.brand-logo { height: 70px; width: auto; display: block; }
.brand-logo.is-fallback { height: 44px; }
.footer-logo-img { height: 145px; width: auto; display: block; }
.footer-logo-img.is-fallback { height: 78px; }
@media (max-width: 560px) {
  .brand-logo { height: 56px; }
  .footer-logo-img { height: 118px; }
}

/* ---- Périmètre sous le nom de forfait ---- */
.tier-scope {
  display: block; margin-top: 5px; font-size: 13px; font-weight: 400; letter-spacing: 0;
  color: var(--muted); text-transform: none;
}

/* ---- Bande « Offre lancement » ---- */
.launch { padding: clamp(30px, 5vh, 52px) var(--pad) 0; }
.launch-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px 24px; flex-wrap: wrap;
  padding: 18px 24px; border-radius: 16px;
  border: 1px solid rgba(var(--warm), 0.35);
  background: linear-gradient(180deg, rgba(var(--warm), 0.09), rgba(var(--warm), 0.02));
}
.launch-tag {
  flex: 0 0 auto; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #15110A; background: rgba(var(--warm), 0.95); padding: 6px 12px; border-radius: 100px;
}
.launch-text { flex: 1; min-width: 260px; }
.launch-title { margin: 0; font-size: clamp(17px, 2.2vw, 21px); font-weight: 500; letter-spacing: 0.01em; color: rgba(var(--warm), 0.97); }
.launch-desc { margin: 7px 0 0; font-size: 14px; line-height: 1.55; color: var(--muted); }
.launch-fine { margin: 9px 0 0; font-size: 12px; line-height: 1.45; color: var(--faint); }
.launch-inner .btn { flex: 0 0 auto; }

/* ---- Barre de prix « sticky » : estimation live + envoi toujours visibles ---- */
.modal-foot {
  position: sticky; bottom: 0; z-index: 3;
  margin: 18px calc(-1 * var(--qb-px, 34px)) 0;
  padding: 13px var(--qb-px, 34px) var(--qb-pb, 30px);
  background: #1b160e;
  border-top: 1px solid var(--line);
  box-shadow: 0 -16px 30px rgba(0, 0, 0, 0.4);
}
.quote-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.qb-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.qb-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.qb-amount { font-size: clamp(20px, 3vw, 26px); font-weight: 500; color: rgba(var(--warm), 0.97); letter-spacing: -0.01em; line-height: 1.1; }
.qb-sub { font-size: 12.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.qb-action { flex: 0 0 auto; }
.qb-action .btn { white-space: nowrap; }
@media (max-width: 560px) {
  .qb-amount { font-size: 19px; }
  .qb-sub { display: none; }
  .qb-action .btn { padding: 12px 16px; font-size: 14px; }
}

/* ---- Avis Google ---- */
.reviews-inner { max-width: 1100px; }
.reviews-score { display: inline-flex; align-items: baseline; justify-content: center; gap: 10px 12px; flex-wrap: wrap; margin: 18px auto 0; }
.rs-note { font-size: 30px; font-weight: 600; line-height: 1; color: rgba(var(--warm), 0.97); }
.rs-stars { color: rgba(var(--warm), 0.95); letter-spacing: 2px; font-size: 18px; }
.rs-sub { color: var(--muted); font-size: 13.5px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px;
  margin: clamp(28px, 4vh, 40px) auto 0; text-align: left;
}
.review-card {
  display: flex; flex-direction: column; gap: 12px; padding: 22px 22px 20px;
  border: 1px solid rgba(var(--warm), 0.22); border-radius: 16px;
  background: linear-gradient(180deg, rgba(var(--warm), 0.045), rgba(var(--warm), 0.012));
}
.review-stars { color: rgba(var(--warm), 0.95); letter-spacing: 2px; font-size: 15px; }
.review-text { margin: 0; flex: 1; font-size: 14.5px; line-height: 1.6; color: var(--ink); }
.review-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.review-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.review-date { font-size: 12px; color: var(--faint); }
.review-src {
  margin-left: auto; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 3px 9px;
}

/* ---- Footer : liens Google ---- */
.footer-google { margin: 14px 0 0; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted); }
.footer-google a { color: rgba(var(--warm), 0.9); }
.footer-google a:hover { color: var(--ink); }

/* Périmètre + durée estimée sous le prix des forfaits */
.tier-meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); margin: 9px 0 0;
}

/* ============================================================
   OPTIMISATION MOBILE (≤ 600 px) — n'affecte que le mobile
   ============================================================ */
@media (max-width: 600px) {
  /* 1 · Header / logo : compact, hauteur stable, sans chevauchement */
  .nav, .nav.is-scrolled { padding-top: 9px; padding-bottom: 9px; }
  .brand-logo { height: 40px; }
  .brand-logo.is-fallback { height: 32px; }
  .footer-logo-img { height: 104px; }

  /* 2 · Hero allégé : titre + promesse courte + prix + lien tarifs */
  .hero-services { display: none; }
  .kicker { margin: 0 0 12px; font-size: 10.5px; letter-spacing: 0.22em; }
  .cine-intro h1 { font-size: clamp(28px, 8.4vw, 38px); }
  .hero-price { margin-top: 14px; font-size: 15px; }

  /* 3 · Cinéma plus court → accès rapide aux infos commerciales */

  /* 4 · Barre mobile : Devis + Appeler larges, WhatsApp compact (icône) */
  .mobile-bar { gap: 8px; }
  .mb-btn { font-size: 13px; padding: 12px 6px; }
  .mb-wa { flex: 0 0 auto; width: 50px; padding: 12px 0; }
  .mb-wa span { display: none; }
  .site-footer { padding-bottom: 92px; }

  /* 5 · Offre de lancement compacte */
  .launch { padding-top: clamp(22px, 4vh, 34px); }
  .launch-inner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px; }
  .launch-desc { display: none; }
  .launch-title { font-size: 18px; }
  .launch-fine { margin-top: 4px; }
  .launch-inner .btn { width: 100%; }

  /* 6 · Avis Google : note + 3 avis + bouton (au lieu de 6 cartes) */
  .reviews-grid .review-card:nth-child(n+4) { display: none; }

  /* 7 · Forfaits : 4 points max, textes courts (Brillance déjà en 1er) */
  .tier { padding: 22px 20px 20px; }
  .tier ul li:nth-child(n+5) { display: none; }
  .tier-ideal { display: none; }
  .tier-pitch { margin-bottom: 12px; }

  /* 8 · Choix du véhicule : rangée horizontale scrollable compacte */
  .cats {
    display: flex; flex-wrap: nowrap; overflow-x: auto;
    gap: 10px; padding-bottom: 8px;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  }
  .cat { flex: 0 0 auto; width: 152px; scroll-snap-align: start; padding: 13px 15px; gap: 5px; }
  .cat-ex { display: none; }
  .cat-icon { width: 44px; height: 20px; }
  .cat-name { font-size: 15px; }
  .cats-hint { margin-top: 16px; font-size: 11px; }

  /* 9 · Formulaire / modale devis : plein écran, confort tactile */
  #quote-modal { padding: 0; align-items: stretch; }
  #quote-modal .modal-card { width: 100%; max-height: 100svh; border-radius: 0; padding: 22px 18px 0; --qb-px: 18px; --qb-pb: calc(26px + env(safe-area-inset-bottom)); }
  .modal-close { top: 10px; right: 10px; }

  /* 10 · Sections secondaires plus compactes */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card:nth-child(3), .why-card:nth-child(5) { display: none; }
  .why-card { padding: 18px; }
  .method-steps { gap: 14px; }
  .results-grid { gap: 12px; }

  /* 7b · Performance : effets coûteux allégés pendant le scroll */
  /* Les panneaux sont animés (opacity/translate) au scroll : un backdrop-filter
     y recalcule le flou à chaque frame = gros jank. On le retire sur mobile. */
  .panel {
    -webkit-backdrop-filter: none; backdrop-filter: none;
    background: linear-gradient(180deg, rgba(20, 15, 10, 0.97), rgba(15, 11, 7, 0.95));
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  }
  .mobile-bar { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(16, 12, 7, 0.97); }
  .nav.is-scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(20, 16, 11, 0.93); }
}

/* ============================================================
   STABILITÉ MOBILE (≤600px) — espacements EN PIXELS, zéro vh.
   Sur Chrome mobile, vh = grand viewport : il change quand la barre
   apparaît/disparaît → toutes les sections se recalculent → la page
   saute. Ici on fige tout en px → la hauteur du document ne bouge
   plus, donc plus aucun saut. (N'affecte jamais le desktop.)
   ============================================================ */
@media (max-width: 600px) {
  /* Le navigateur n'essaie pas d'ancrer le scroll dans la zone animée (cinéma). */

  /* Hero : padding-top fixe (plus de svh dans le calcul). */

  /* Sections commerciales : tous les paddings/marges verticaux en PIXELS. */
  .lead-in { padding-top: 46px; padding-bottom: 8px; }
  .packs { padding-top: 28px; padding-bottom: 58px; }
  .tiers { margin-top: 30px; }
  .why { padding-top: 50px; padding-bottom: 22px; }
  .why-head { margin-bottom: 26px; }
  .method { padding-top: 50px; padding-bottom: 50px; }
  .method-head { margin-bottom: 26px; }
  .results { padding-top: 50px; padding-bottom: 50px; }
  .results-head { margin-bottom: 22px; }
  .reviews { padding-top: 50px; padding-bottom: 50px; }
  .trust { padding-top: 50px; padding-bottom: 50px; }
  .contact { padding-bottom: 54px; }
  .contact-inner { padding-top: 42px; }
  .zone { padding-bottom: 50px; }
  .zone-inner { padding-top: 42px; }
  .faq-home { padding-bottom: 50px; }
  .faq-home .faq-inner { padding-top: 42px; }
  .launch { padding-top: 24px; padding-bottom: 0; }
  .site-footer { padding-top: 40px; }
  .trust-grid, .reviews-grid { margin-top: 24px; }
}

@media (max-width: 860px) {
  .hero-services { gap: 7px 8px; margin-top: 18px; }
  .hero-services li { font-size: 10.5px; padding: 6px 12px; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   POLISH VISUEL (priorité mobile) — entrée du hero en cascade,
   révélation des cartes au scroll, tableau comparatif confortable,
   retour tactile. Uniquement opacity/transform (composité → fluide),
   et tout est neutralisé en prefers-reduced-motion.
   ===================================================================== */

/* -- Entrée du hero : les éléments apparaissent en cascade au chargement -- */
.cine-intro .kicker, .cine-intro h1, .cine-intro .lead,
.cine-intro .hero-services, .cine-intro .hero-price, .cine-intro .hero-tarifs-m {
  animation: hero-in 0.9s var(--ease) both;
}
.cine-intro h1 { animation-delay: 0.1s; }
.cine-intro .lead { animation-delay: 0.22s; }
.cine-intro .hero-services { animation-delay: 0.3s; }
.cine-intro .hero-price { animation-delay: 0.38s; }
.cine-intro .hero-tarifs-m { animation-delay: 0.48s; }
@keyframes hero-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* -- Révélation au scroll (classe .rv posée par contact.js) -- */
.rv { opacity: 0; transform: translateY(16px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.rv.rv-in { opacity: 1; transform: none; }

/* -- Tableau comparatif sur mobile : colonne des prestations épinglée
      + fondu au bord droit (indice « ça défile ») -- */
@media (max-width: 760px) {
  .compare th:first-child, .compare td:first-child {
    position: sticky; left: 0; z-index: 1;
    background: var(--bg);            /* opaque, IDENTIQUE au fond de page (aucune bande visible) */
    background-clip: padding-box;
    max-width: 42vw;                  /* la colonne épinglée ne mange jamais la moitié de l'écran */
    /* bord droit adouci : ombre volontaire au lieu d'une arête brute */
    box-shadow: 10px 0 14px -10px rgba(0, 0, 0, 0.55);
  }
  /* Fondu « ça défile » : porté par la COQUE (qui ne défile pas) → il reste
     collé au bord droit VISIBLE. Posé sur le conteneur défilant, il voyageait
     avec le contenu au swipe → grosse bande sombre au milieu du tableau. */
  .compare-shell { position: relative; }
  .compare-shell::after {
    content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 30px;
    background: linear-gradient(90deg, transparent, rgba(15, 11, 7, 0.9));
    pointer-events: none;
  }
  .kicker { text-wrap: balance; }
}

/* -- Retour tactile : léger enfoncement au tap (appareils tactiles) -- */
@media (pointer: coarse) {
  .btn:active, .cat:active, .mb-btn:active, .tier .btn:active { transform: scale(0.97); }
  .ck-chip input:active + span { transform: scale(0.97); }
}

@media (prefers-reduced-motion: reduce) {
  .cine-intro .kicker, .cine-intro h1, .cine-intro .lead,
  .cine-intro .hero-services, .cine-intro .hero-price, .cine-intro .hero-tarifs-m { animation: none; }
  .rv { opacity: 1; transform: none; transition: none; }
}
.hero-static .hero-services { justify-content: center; }
/* Entrée en cascade (réutilise hero-in défini plus haut) */
.hero-static .kicker, .hero-static h1, .hero-static .hero-services,
.hero-static .hero-promise, .hero-static .hero-price, .hero-static-actions {
  animation: hero-in 0.9s var(--ease) both;
}
.hero-static .hero-services { animation-delay: 0.22s; }
.hero-static .hero-price { animation-delay: 0.38s; }

.services {
  display: flex; flex-direction: column; align-items: center; gap: 44px;
  padding: 76px var(--pad);
}
.services .panel { width: min(700px, 92vw); }

@media (max-width: 860px) {
  /* « Demander un devis » vit déjà dans la barre fixe du bas sur mobile */
  .hero-static-actions .btn[data-open-quote] { display: none; }
  .services { padding: 52px var(--pad); gap: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-static .kicker, .hero-static h1, .hero-static .hero-services,
  .hero-static .hero-promise, .hero-static .hero-price, .hero-static-actions { animation: none; }
}
