/* ==========================================================================
   Solus Auto — feuille de style
   Palette tirée du logo : noir, blanc, rouge #DF0B00
   ========================================================================== */

:root {
  --bg: #070707;
  --bg-2: #0d0d0d;
  --bg-3: #141414;
  --bg-4: #1b1b1b;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .18);
  --text: #f3f2ef;
  --muted: #a29f98;
  --dim: #8a8780;
  --line-ctrl: rgba(255, 255, 255, .35);
  --red: #df0b00;
  --red-hi: #ff2d1f;
  --red-soft: rgba(223, 11, 0, .14);
  --wa: #25d366;
  --display: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --body: 'Barlow', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --r: 6px;
  --topbar: 72px;
  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --ease-spring: cubic-bezier(.2, 1.4, .4, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--topbar); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain très léger, pour casser l'aplat numérique */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 800; line-height: 1; letter-spacing: .005em; }
strong { font-weight: 600; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
legend { padding: 0; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 8px; top: -60px; z-index: 100; padding: 10px 14px; background: var(--red); color: #fff; border-radius: var(--r); }
.skip:focus { top: 8px; }

/* ---------- boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 24px;
  font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: .06em; text-transform: uppercase;
  border-radius: var(--r); border: 1px solid transparent; white-space: nowrap;
  position: relative; overflow: hidden;
  transition: background .18s, border-color .18s, transform .18s, color .18s, box-shadow .18s;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .18s; }
.btn:hover svg { transform: translateX(3px); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-hi); box-shadow: 0 8px 24px rgba(223, 11, 0, .28); }
.btn--red:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { border-color: #fff; }
.btn--wa { background: #1daa53; color: #fff; }
.btn--wa:hover { background: #23c25f; box-shadow: 0 8px 24px rgba(29, 170, 83, .28); }
.btn--wa svg { fill: currentColor; stroke: none; }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 16px; }
.btn--lg { min-height: 56px; padding: 0 30px; font-size: 20px; }

/* ---------- barre du haut ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  height: var(--topbar);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
/* le flou est porté par un pseudo-élément : un backdrop-filter sur .topbar ferait de lui
   le bloc conteneur du menu mobile (position: fixed), qui ne pourrait plus couvrir l'écran */
.topbar::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(7, 7, 7, .78);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transition: background .2s;
}
.topbar.is-scrolled { border-bottom-color: var(--line); }
.topbar.is-scrolled::before { background: rgba(7, 7, 7, .9); }
.topbar__in { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand__mark { height: 36px; width: auto; transition: height .25s ease; }
.brand__word { height: 17px; width: auto; margin-top: 2px; transition: height .25s ease; }

.nav { display: flex; gap: 26px; }
.nav a {
  position: relative; padding: 6px 0; white-space: nowrap;
  font-size: 14px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
  transition: color .15s;
}
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--red); transition: right .2s; }
.nav a:hover, .nav a.is-active { color: var(--text); }
.nav a.is-active::after { right: 0; }
.nav__mobile-cta { display: none; }

.topbar__actions { display: flex; align-items: center; gap: 18px; }
.topbar__tel { display: inline-flex; white-space: nowrap; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: .02em; }
.topbar__tel svg { width: 18px; height: 18px; fill: var(--red); }
.topbar__tel:hover { color: #fff; }
.burger { display: none; width: 44px; height: 44px; padding: 0; background: none; border: 0; position: relative; }
.burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: #fff; transition: transform .25s, opacity .2s, top .25s; }
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(64px, 9vw, 130px) 0 clamp(72px, 10vw, 150px);
  overflow: hidden;
  background-color: var(--bg);
  /* photo de l'atelier, assombrie côté texte pour rester lisible, fondue vers le noir en bas */
  background-image:
    linear-gradient(180deg, rgba(7, 7, 7, .5) 0%, rgba(7, 7, 7, 0) 24%, rgba(7, 7, 7, 0) 60%, #070707 100%),
    linear-gradient(90deg, rgba(7, 7, 7, .97) 0%, rgba(7, 7, 7, .92) 32%, rgba(7, 7, 7, .62) 54%, rgba(7, 7, 7, .28) 78%, rgba(7, 7, 7, .34) 100%),
    url("../assets/hero-atelier.jpg");
  background-size: auto, auto, cover;
  background-position: center, center, right center;
  background-repeat: no-repeat;
}
.hero__in { position: relative; }
.hero__copy { max-width: 620px; }
.hero__in > * { min-width: 0; }

.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.eyebrow__dash { width: 28px; height: 2px; background: var(--red); flex: none; }

.hero h1 { font-size: clamp(42px, 5.6vw, 72px); text-transform: uppercase; line-height: .96; }
.hero h1 em { font-style: normal; color: var(--red); }
.lead { margin: 24px 0 32px; max-width: 560px; font-size: clamp(17px, 1.5vw, 19px); color: var(--muted); }
.lead strong { color: var(--text); }

.quick { max-width: 600px; padding: 18px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; }
.quick__label { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.quick__row { display: flex; gap: 10px; }
.quick__row .select { flex: 1; }
.quick__row .btn { flex: none; }

.select { position: relative; }
.select select {
  width: 100%; min-height: 50px; padding: 0 40px 0 14px; appearance: none; -webkit-appearance: none;
  background: var(--bg); border: 1px solid var(--line-ctrl); border-radius: var(--r); color: var(--text);
}
.select::after { content: ""; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.select select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(223, 11, 0, .18); }
.select select option { background: #111; }

.hero__alt { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; max-width: 600px; font-size: 15px; color: var(--muted); }
.hero__alt a { display: inline-flex; align-items: flex-start; gap: 10px; line-height: 1.4; transition: color .15s; }
.hero__alt a:hover { color: var(--text); }
.hero__alt strong { color: var(--text); font-family: var(--display); font-size: 18px; letter-spacing: .02em; }
.wa svg { width: 18px; height: 18px; flex: none; fill: var(--wa); margin-top: 2px; }


/* ---------- bandeau chiffres ---------- */
.strip { padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.strip__in { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__item { padding: 28px 28px 26px; border-left: 1px solid var(--line); }
.strip__item:first-child { border-left: 0; padding-left: 0; }
.strip__item strong { display: block; font-family: var(--display); font-weight: 800; font-size: 40px; line-height: 1; letter-spacing: .01em; }
.strip__item span { display: block; margin-top: 6px; font-size: 15px; color: var(--muted); }

/* ---------- têtes de section ---------- */
section { padding: clamp(72px, 9vw, 120px) 0; }
.sec-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.sec-head--left { margin-inline: 0; text-align: left; }
.sec-num { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px; font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: .22em; color: var(--red-hi); }
.sec-num::before { content: ""; width: 26px; height: 2px; background: var(--red); }
.sec-head h2 { font-size: clamp(34px, 4.6vw, 58px); text-transform: uppercase; }
.sec-head p { margin: 16px 0 0; font-size: 18px; color: var(--muted); }
.sec-head p a { color: var(--text); border-bottom: 1px solid var(--red); }

/* ---------- réparer ou remplacer ---------- */
.diag { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.diag__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.diag__q { position: relative; padding: 22px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; }
.diag__q legend { float: left; width: 100%; margin-bottom: 14px; font-family: var(--display); font-weight: 700; font-size: 22px; text-transform: uppercase; letter-spacing: .02em; }
.diag__q legend + label { clear: left; }
.diag__q label { display: block; margin-top: 8px; cursor: pointer; }
.diag__q input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; opacity: 0; }
.diag__q span { display: block; padding: 12px 14px 12px 40px; position: relative; border: 1px solid var(--line-ctrl); border-radius: var(--r); font-size: 15px; color: var(--muted); transition: border-color .15s, background .15s, color .15s; }
.diag__q span::before { content: ""; position: absolute; left: 14px; top: 50%; width: 14px; height: 14px; border: 2px solid var(--dim); border-radius: 50%; transform: translateY(-50%); transition: border-color .15s, box-shadow .15s; }
.diag__q input:checked + span { border-color: var(--red); background: var(--red-soft); color: var(--text); }
.diag__q input:checked + span::before { border-color: var(--red); }
.diag__q span::after { content: ""; position: absolute; left: 17px; top: 50%; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: var(--red); transform: scale(0); transition: transform .18s cubic-bezier(.2, 1.1, .3, 1); }
.diag__q input:checked + span::after { transform: scale(1); }
.diag__q input:focus-visible + span, .field--radios input:focus-visible + span { outline: 2px solid var(--red-hi); outline-offset: 2px; }
@supports not selector(:focus-visible) { .diag__q input:focus + span, .field--radios input:focus + span { outline: 2px solid var(--red-hi); outline-offset: 2px; } }
.diag__result { grid-column: 1 / -1; padding: 26px 30px; border-left: 4px solid var(--red); background: var(--bg-3); border-radius: 0 8px 8px 0; }
.diag__result > div { transition: opacity .24s ease-out, transform .24s var(--ease-out); }
.diag__result > div.is-leaving { opacity: 0; transform: translateY(-4px); transition-duration: .12s; transition-timing-function: ease-in; }
.diag__result > div.is-entering { opacity: 0; transform: translateY(6px); transition: none; }
.diag__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-top: 20px !important; }
.diag__alt { font-size: 15px; color: var(--muted); border-bottom: 1px solid var(--line-2); transition: color .15s, border-color .15s; }
.diag__alt:hover { color: var(--text); border-color: var(--text); }
.diag__result p { margin: 0; color: var(--muted); max-width: 760px; }
.diag__verdict { font-family: var(--display); font-weight: 800; font-size: 30px; line-height: 1.05; text-transform: uppercase; color: var(--text) !important; margin-bottom: 6px !important; }

/* ---------- prestations ---------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; display: flex; flex-direction: column; padding: 28px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; transition: border-color .2s; }
.card:hover { border-color: var(--line-2); }
.card--main { grid-column: span 2; grid-row: span 2; background: linear-gradient(160deg, #171717, #0f0f0f); }
.card__icon { width: 46px; height: 46px; margin-bottom: 20px; color: var(--red); }
.card__icon svg { width: 100%; height: 100%; }
.card h3 { font-size: 27px; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.card--main h3 { font-size: clamp(30px, 3vw, 40px); }
.card p { color: var(--muted); font-size: 16px; }
.card--main p { font-size: 17px; max-width: 600px; }
.checks { margin: 8px 0 18px; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 28px; font-size: 16px; }
.checks li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 12px; height: 6px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(-45deg); }
.card__note { margin: 4px 0 24px; padding: 16px 18px; background: rgba(223, 11, 0, .07); border: 1px solid rgba(223, 11, 0, .28); border-radius: var(--r); font-size: 15px; color: var(--muted); }
.card__note strong { display: block; margin-bottom: 4px; font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: .02em; text-transform: uppercase; color: var(--text); }
.card__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }

/* ---------- étapes ---------- */
.steps { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: step; position: relative; }
.steps__list::before { content: ""; position: absolute; left: 0; right: 0; top: 30px; height: 1px; background: var(--line-2); }
.steps__list li { position: relative; padding-top: 84px; }
.steps__n { position: absolute; top: 0; left: 0; width: 60px; height: 60px; display: grid; place-items: center; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 50%; font-family: var(--display); font-weight: 800; font-size: 30px; color: var(--red); }
.steps__list li:first-child .steps__n { background: var(--red); color: #fff; border-color: var(--red); }
.steps__list h3 { font-size: 26px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.steps__list p { color: var(--muted); font-size: 16px; margin: 0; }

/* ---------- assurance ---------- */
.assurance__in { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.assurance__in > * { min-width: 0; }
.assurance__copy p { color: var(--muted); font-size: 17px; }
.assurance__copy p strong { color: var(--text); }
.assurance__copy .sec-head { margin-bottom: 24px; }
.docs { margin: 28px 0 18px; padding: 22px 24px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; }
.docs__title { margin: 0 0 12px; font-family: var(--display); font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: .03em; color: var(--text) !important; }
.docs ul { display: grid; gap: 8px; }
.docs li { position: relative; padding-left: 22px; font-size: 16px; color: var(--text); }
.docs li::before { content: ""; position: absolute; left: 0; top: 10px; width: 10px; height: 2px; background: var(--red); }
.footnote { font-size: 13px !important; color: var(--dim) !important; }

.assurance__logos { padding: 28px 0 32px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; }
.assurance__logos-title { margin: 0 28px 22px; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.marquee { overflow: hidden; max-width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 70s linear infinite; }
.assurance__logos.is-idle .marquee__track { animation-play-state: paused; }
.marquee__track span { padding: 0 28px; font-family: var(--display); font-weight: 800; font-size: 40px; line-height: 1; text-transform: uppercase; letter-spacing: .02em; color: #3a3936; white-space: nowrap; position: relative; }
.marquee__track span::after { content: ""; position: absolute; right: -3px; top: 50%; width: 6px; height: 6px; background: var(--red); border-radius: 50%; transform: translateY(-50%); }
@keyframes marquee { to { transform: translateX(-50%); } }
.assurance__facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 28px 28px 0; padding-top: 24px; border-top: 1px solid var(--line); }
.assurance__facts div { padding-right: 14px; }
.assurance__facts div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.assurance__facts strong { display: block; font-family: var(--display); font-weight: 800; font-size: 30px; line-height: 1; color: var(--text); }
.assurance__facts span { display: block; margin-top: 6px; font-size: 13px; line-height: 1.4; color: var(--muted); }
.nowrap { white-space: nowrap; }
.marquee:hover .marquee__track { animation-play-state: paused; }
/* sans souris (tactile) ou si l'utilisateur refuse les animations : liste fixe, sans doublons */
@media (prefers-reduced-motion: reduce), (hover: none) {
  .marquee { mask-image: none; -webkit-mask-image: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; gap: 10px 0; padding: 0 16px; }
  .marquee__track span { font-size: 24px; padding: 0 14px; }
  .marquee__track span:nth-child(n+15) { display: none; }
}

/* ---------- avis ---------- */
.avis { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rating { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 18px; }
.rating strong { font-family: var(--display); font-weight: 800; font-size: 40px; line-height: 1; }
.stars { color: #ffb400; font-size: 22px; letter-spacing: 2px; }
.rating a { font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--line-2); }
.avis__todo { margin: -24px auto 28px; max-width: 720px; padding: 10px 16px; text-align: center; font-size: 14px; color: #ffb3ad; background: rgba(223, 11, 0, .12); border: 1px dashed rgba(223, 11, 0, .5); border-radius: var(--r); }
.avis__note { margin: 22px 0 0; text-align: center; font-size: 13px; color: var(--dim); }
.rating a:hover { color: var(--text); border-color: var(--text); }
.avis__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { margin: 0; padding: 26px 26px 22px; background: var(--bg-3); border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: 0 8px 8px 0; display: flex; flex-direction: column; }
.quote p { font-size: 17px; margin-bottom: 18px; }
.quote p::before { content: "« "; color: var(--red); }
.quote p::after { content: " »"; color: var(--red); }
.quote footer { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }
.quote footer strong { font-family: var(--display); font-size: 19px; letter-spacing: .02em; }
.quote footer span { font-size: 13px; color: var(--dim); }
.quote footer time { font-size: 12px; color: var(--dim); margin-top: 4px; }

/* ---------- zones ---------- */
.zones__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.zones .sec-head { margin-bottom: 0; }
.depts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.depts li { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; font-size: 16px; }
.depts li strong { font-family: var(--display); font-weight: 800; font-size: 30px; line-height: 1; color: var(--red); min-width: 44px; }

/* ---------- faq ---------- */
.faq { background: var(--bg-2); border-top: 1px solid var(--line); }
.faq__in { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.faq .sec-head { position: sticky; top: calc(var(--topbar) + 24px); margin-bottom: 0; }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list details:first-child { border-top: 1px solid var(--line); }
.faq__list summary { list-style: none; cursor: pointer; position: relative; padding: 22px 48px 22px 0; font-family: var(--display); font-weight: 700; font-size: 24px; line-height: 1.15; letter-spacing: .01em; transition: color .15s; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::before, .faq__list summary::after { content: ""; position: absolute; right: 10px; top: 50%; width: 18px; height: 2px; background: var(--red); transform: translateY(-50%); transition: transform .25s; }
.faq__list summary::after { transform: translateY(-50%) rotate(90deg); }
.faq__list details.is-open summary::after, html:not(.js) .faq__list details[open] summary::after { transform: translateY(-50%) rotate(0); }
.faq__list details.is-open summary { color: #fff; }
.faq__list summary:hover { color: #fff; }
.faq__list details > div { display: grid; grid-template-rows: 0fr; color: var(--muted); max-width: 640px; transition: grid-template-rows .4s var(--ease-out); }
.faq__list details > div > p { margin: 0; min-height: 0; overflow: hidden; padding-bottom: 0; transition: padding-bottom .4s var(--ease-out); }
.faq__list details.is-open > div, html:not(.js) .faq__list details[open] > div { grid-template-rows: 1fr; }
.faq__list details.is-open > div > p, html:not(.js) .faq__list details[open] > div > p { padding-bottom: 22px; }

/* ---------- rendez-vous ---------- */
.rdv { position: relative; overflow: hidden; overflow: clip; }
.rdv::before { content: ""; position: absolute; right: -10%; top: -20%; width: 50vw; height: 50vw; max-width: 700px; max-height: 700px; background: radial-gradient(closest-side, rgba(223, 11, 0, .14), transparent 70%); pointer-events: none; }
.rdv__in { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.rdv__side { position: sticky; top: calc(var(--topbar) + 24px); }
.rdv__points { margin-top: 28px; display: grid; gap: 14px; }
.rdv__points li { position: relative; padding-left: 24px; color: var(--muted); }
.rdv__points li::before { content: ""; position: absolute; left: 0; top: 11px; width: 10px; height: 2px; background: var(--red); }
.rdv__points strong { color: var(--text); }
.rdv__points a { color: var(--text); border-bottom: 1px solid var(--red); }

.form { padding: clamp(22px, 3vw, 36px); background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label, .field legend { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.field .opt { font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--dim); }
.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field input[type="date"], .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; background: var(--bg); border: 1px solid var(--line-ctrl); border-radius: var(--r); color: var(--text);
  transition: border-color .15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(223, 11, 0, .18); }
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input[type="date"] { color-scheme: dark; }
.field input[type="file"] { width: 100%; padding: 10px 0; font-size: 15px; color: var(--muted); }
.field input[type="file"]::file-selector-button { margin-right: 12px; padding: 8px 14px; font: inherit; font-weight: 600; color: var(--text); background: var(--bg-4); border: 1px solid var(--line-2); border-radius: var(--r); cursor: pointer; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea, .field--radios.is-invalid span { border-color: var(--red-hi); }
.field.is-invalid > label::after, .field.is-invalid > legend::after { content: " — à compléter"; color: #ff8a80; text-transform: none; letter-spacing: 0; font-weight: 400; }
.field--radios { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.field--radios legend { width: 100%; }
.field--radios label { margin: 0; cursor: pointer; text-transform: none; letter-spacing: 0; font-weight: 400; font-size: inherit; }
.field--radios input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; opacity: 0; }
.field--radios span { display: inline-block; padding: 10px 16px; border: 1px solid var(--line-ctrl); border-radius: 999px; font-size: 15px; color: var(--muted); transition: border-color .15s, background .15s, color .15s; }
.field--radios input:checked + span { border-color: var(--red); background: var(--red-soft); color: var(--text); }

.consent { display: block; margin: 6px 0 22px; font-size: 14px; line-height: 1.5; color: var(--muted); }
.consent input { margin-top: 3px; accent-color: var(--red); width: 18px; height: 18px; flex: none; }
.consent a { color: var(--text); border-bottom: 1px solid var(--line-2); }
.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.form__status { margin: 0; font-size: 15px; color: var(--muted); }
.form__status.is-error { color: #ff6b61; }
.form__status.is-ok { color: #4cd67a; }
.form__done { padding: 36px 28px; text-align: center; }
.form__done h3 { font-size: 34px; text-transform: uppercase; margin-bottom: 12px; }
.form__done p { color: var(--muted); max-width: 480px; margin-inline: auto; }
.form__done .btn { margin-top: 10px; }
.form__done:focus { outline: none; }

/* ---------- contact ---------- */
.contact { background: var(--bg-2); border-top: 1px solid var(--line); }
.contact__in { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 18px; }
.contact__block { padding: 30px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 8px; }
.contact__block h2 { font-size: 28px; text-transform: uppercase; font-weight: 700; margin-bottom: 20px; }
.contact__list { display: grid; gap: 16px; }
.contact__k { display: block; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); margin-bottom: 2px; }
.contact__list a { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: .01em; }
.contact__list a:hover { color: var(--red-hi); }
.contact__list address { font-style: normal; font-size: 16px; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: 10px 0; border-bottom: 1px solid var(--line); text-align: left; font-weight: 500; }
.hours td { text-align: right; font-family: var(--display); font-size: 20px; }
.contact__note { margin: 16px 0 0; font-size: 14px; color: var(--muted); }
.contact__block--cta { background: var(--red); border-color: var(--red); color: #fff; display: flex; flex-direction: column; align-items: flex-start; }
.contact__big { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 3vw, 40px); line-height: .98; text-transform: uppercase; margin-bottom: 12px; }
.contact__block--cta p { color: #fff; }
.contact__block--cta .btn { margin-top: auto; background: #fff; color: var(--red); }
.contact__block--cta .btn:hover { background: #111; color: #fff; }

/* ---------- pied de page ---------- */
.footer { padding: 64px 0 110px; border-top: 1px solid var(--line); }
.footer__in { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand p { margin: 18px 0 0; max-width: 320px; font-size: 15px; color: var(--muted); }
.footer__brand img { width: 140px; height: auto; }
.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: var(--muted); }
.footer__col a:hover { color: var(--text); }
.footer__title { margin: 0 0 6px; font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: .08em; text-transform: uppercase; color: var(--text); }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--dim); }
.footer__legal a:hover { color: var(--text); }

/* ---------- barre mobile ---------- */
.mbar { display: none; }

/* ---------- apparition au défilement ---------- */
.reveal { opacity: 0; transition: opacity .4s var(--ease-out); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .nav { gap: 18px; }
  .nav a { font-size: 13px; }
}

@media (max-width: 1024px) {
  .nav {
    position: fixed; top: var(--topbar); left: 0; right: 0; bottom: 0; z-index: 49;
    flex-direction: column; gap: 0; padding: 16px var(--gutter) 32px;
    background: rgba(7, 7, 7, .98); border-top: 1px solid var(--line);
    transform: translateX(100%); visibility: hidden; transition: transform .28s ease, visibility 0s .28s; overflow-y: auto;
  }
  .nav.is-open { transform: none; visibility: visible; transition-delay: 0s; }
  .nav a { padding: 16px 0; font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: .03em; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav__mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
  .nav__mobile-cta a { border: 0; padding: 0 24px; font-size: 18px; }
  .nav__mobile-cta .btn { letter-spacing: .06em; }
  .nav__mobile-cta .btn--red { color: #fff; }
  .nav__mobile-cta .btn--ghost { color: var(--text); border: 1px solid var(--line-2); }
  .burger { display: block; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .card--main { grid-column: span 2; grid-row: auto; }
  .steps__list { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .steps__list::before { display: none; }
  .assurance__in, .zones__in, .faq__in, .rdv__in { grid-template-columns: 1fr; }
  .assurance__logos, .faq .sec-head, .rdv__side { position: static; }
  .avis__grid { grid-template-columns: 1fr; }
  .contact__in { grid-template-columns: 1fr 1fr; }
  .contact__block--cta { grid-column: span 2; }
  .footer__in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .topbar__tel span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .topbar__actions .btn { display: none; }
  .page .topbar__actions .btn { display: inline-flex; }
  .topbar__tel svg { width: 22px; height: 22px; }
  .hero {
    padding-top: 44px;
    background-image:
      linear-gradient(180deg, rgba(7, 7, 7, .88) 0%, rgba(7, 7, 7, .74) 45%, #070707 97%),
      url("../assets/hero-atelier.jpg");
    background-size: auto, cover;
    background-position: center, 66% center;
  }
  .btn { white-space: normal; }
  .quick__row { flex-direction: column; }
  .quick__row .btn { width: 100%; font-size: 17px; }
  .form__foot .btn { width: 100%; }
  .strip__in { grid-template-columns: 1fr 1fr; }
  .strip__item { padding: 22px 18px; }
  .strip__item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .strip__item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .strip__item strong { font-size: 32px; }
  .diag__grid { grid-template-columns: 1fr; }
  .diag__result { padding: 22px; }
  .services__grid { grid-template-columns: 1fr; }
  .card--main { grid-column: auto; }
  .steps__list { grid-template-columns: 1fr; gap: 28px; }
  .steps__list li { padding: 0 0 0 78px; min-height: 60px; }
  .depts { grid-template-columns: 1fr 1fr; }
  .assurance__facts { grid-template-columns: 1fr; gap: 14px; margin-inline: 20px; }
  .assurance__facts div + div { padding-left: 0; border-left: 0; }
  .assurance__logos-title { margin-inline: 20px; }
  .depts li { padding: 12px 14px; font-size: 14px; }
  .depts li strong { font-size: 24px; min-width: 34px; }
  .faq__list summary { font-size: 20px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .contact__in { grid-template-columns: 1fr; }
  .contact__block--cta { grid-column: auto; }
  .footer { padding-bottom: 120px; }
  .footer__in { grid-template-columns: 1fr; gap: 28px; }

  .mbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 48;
    display: grid; grid-template-columns: 1fr 1.4fr;
    background: rgba(10, 10, 10, .97); border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mbar a { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 56px; font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: .05em; text-transform: uppercase; border-left: 1px solid var(--line); }
  .mbar a:first-child { border-left: 0; }
  .mbar svg { width: 18px; height: 18px; fill: currentColor; }
  .mbar__rdv { background: #1daa53; color: #fff; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 40px; }
  .depts { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Pages annexes (merci, mentions légales, confidentialité)
   ========================================================================== */
.page__main { padding: clamp(56px, 8vw, 110px) 0; min-height: 60vh; }
.page__narrow { max-width: 760px; }
.page__main h1 { font-size: clamp(38px, 5.5vw, 64px); text-transform: uppercase; margin: 12px 0 20px; }
.page__text h2 { font-size: 26px; text-transform: uppercase; font-weight: 700; margin: 40px 0 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.page__text p, .page__text li { color: var(--muted); }
.page__text p strong, .page__text li strong { color: var(--text); }
.page__text a { color: var(--text); border-bottom: 1px solid var(--red); }
.page__text ul { display: grid; gap: 8px; padding-left: 0; margin-bottom: 1em; }
.page__text li { position: relative; padding-left: 22px; }
.page__text li::before { content: ""; position: absolute; left: 0; top: 12px; width: 10px; height: 2px; background: var(--red); }
.page .lead a { color: var(--text); }
.footer--slim { padding: 0 0 40px; border-top: 0; }
.footer--slim .footer__legal { margin-top: 0; }

/* ==========================================================================
   Finitions & animations
   ========================================================================== */
:focus-visible { outline: 2px solid var(--red-hi); outline-offset: 3px; }
.contact__block--cta :focus-visible { outline-color: #fff; }
::selection { background: var(--red); color: #fff; }
h1, h2, h3 { text-wrap: balance; }
html { scrollbar-color: #2c2c2c var(--bg); }

/* barre du haut compacte après défilement */
.topbar.is-scrolled .brand__mark { height: 30px; }
.topbar.is-scrolled .brand__word { height: 15px; }

/* entrée du hero, en cascade */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes lineUp { from { transform: translateY(105%); } to { transform: none; } }
@keyframes artIn { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }
.hero__copy > * { animation: rise .5s var(--ease-out) both; }
.hero__copy > :nth-child(1) { animation-delay: 0s; }
.hero__copy > :nth-child(2) { animation: none; }
.hero__copy > :nth-child(3) { animation-delay: .35s; }
.hero__copy > :nth-child(4) { animation-delay: .45s; }
.hero__copy > :nth-child(5) { animation-delay: .55s; }
.h1-line { display: block; padding-bottom: .1em; margin-bottom: -.1em; clip-path: inset(-4% 100% -10% -1%); animation: wipeIn .8s var(--ease-out) both; }
.h1-line:nth-child(1) { animation-delay: .1s; }
.h1-line:nth-child(2) { animation-delay: .3s; }
@keyframes wipeIn { to { clip-path: inset(-4% -1% -10% -1%); } }

/* flash au moment de l'impact */
@keyframes flash { 0% { opacity: 0; transform: scale(.3); } 15% { opacity: .55; transform: scale(.8); } 100% { opacity: 0; transform: scale(1.6); } }
.flash { transform-origin: 300px 180px; opacity: 0; animation: flash .55s ease-out .8s both; }

/* boutons rouges : état d'envoi */
.btn.is-loading { color: transparent !important; pointer-events: none; }
.btn.is-loading::before { content: ""; position: absolute; width: 22px; height: 22px; left: 50%; top: 50%; margin: -11px 0 0 -11px; border: 2px solid rgba(255, 255, 255, .35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* cartes : l'icône s'allume au survol, rien d'autre */
.card__icon { transition: color .25s; }
@media (hover: hover) and (pointer: fine) {
  .card:hover .card__icon { color: var(--red-hi); }
}

/* icônes qui se dessinent à l'apparition */
@keyframes draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
.card.in .card__icon [pathLength], .card.seen .card__icon [pathLength] { stroke-dasharray: 1; stroke-dashoffset: 0; }
.card.in .card__icon [pathLength], .card.seen .card__icon [pathLength] { animation: draw .7s var(--ease-out) calc(var(--d, 0ms) + .2s) both; }

/* bandeau chiffres : trait rouge qui se dessine */
.strip__item::after { content: ""; display: block; width: 0; height: 2px; margin-top: 14px; background: var(--red); transition: width .7s var(--ease-out) .3s; }
.strip__item.in::after, .strip__item.seen::after { width: 36px; }

/* étapes : la ligne se trace, les numéros arrivent */
.steps__list::before { transform: scaleX(0); transform-origin: left; transition: transform 1s linear .2s; }
.steps__list.is-visible::before { transform: scaleX(1); }
.steps__n { transition: transform .5s var(--ease-spring) .25s; }
.steps__list li.reveal .steps__n { transform: scale(.5); }
.steps__list li.in .steps__n, .steps__list li.seen .steps__n { transform: scale(1); }


/* avis : les étoiles arrivent une à une */
.stars i { font-style: normal; display: inline-block; }
.js .rating:not(.is-visible) .stars i { opacity: 0; }
.rating.is-visible .stars i { animation: pop .35s var(--ease-spring) both; }
.rating.is-visible .stars i:nth-child(1) { animation-delay: .1s; }
.rating.is-visible .stars i:nth-child(2) { animation-delay: .2s; }
.rating.is-visible .stars i:nth-child(3) { animation-delay: .3s; }
.rating.is-visible .stars i:nth-child(4) { animation-delay: .4s; }
.rating.is-visible .stars i:nth-child(5) { animation-delay: .5s; }

/* formulaire : coche de confirmation */
.form__check { width: 72px; height: 72px; margin: 0 auto 18px; }
.form__check circle { stroke: var(--red); stroke-width: 2; fill: none; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw .7s ease-out both; }
.form__check path { stroke: #fff; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw .45s ease-out .55s both; }

.contact__block--cta { position: relative; overflow: hidden; }


@media (prefers-reduced-motion: reduce) {
  .hero__copy > *, .h1-line > span, .hero__art, .hero__tag, .flash, .btn--red::after, .stars i, .contact__block--cta::before,
  .card.in .card__icon [pathLength], .cta-crack path, .steps__n::after, .photo-preview, .photo-preview::after { animation: none !important; }
  .diag__result > div, .diag__q span::after, .mbar, .sec-head .mask, .sec-head .sec-num, .sec-head p { transition: none !important; }
  .cta-crack path { stroke-dashoffset: 0; }
  .flash { opacity: 0; }
  .stars i { opacity: 1 !important; }
  .card.in .card__icon [pathLength] { stroke-dashoffset: 0; }
  .steps__list::before { transform: none; transition: none; }
  .steps__list li.reveal .steps__n { transform: none; }
  .strip__item::after { width: 36px; transition: none; }
  .faq__list details > div, .faq__list details > div > p { transition: none; }
  .hero__art-3d { transform: none !important; transition: none; }
  .topbar, .brand__mark, .brand__word { transition: none; }
}

/* ==========================================================================
   Finitions (suite) : têtes de section, étapes, états, formulaire, barre mobile
   ========================================================================== */
/* têtes de section : le titre se dévoile de gauche à droite (comme un passage d'essuie-glace),
   le trait rouge du numéro se trace, le sous-titre suit en fondu */
.sec-head.reveal { opacity: 1; transform: none; }
.sec-head h2 { padding-bottom: .08em; margin-bottom: -.08em; }
.sec-head.reveal h2 { clip-path: inset(-5% 100% -10% -2%); }
.sec-head.in h2 { clip-path: inset(-5% -2% -10% -2%); transition: clip-path .65s var(--ease-out) .05s; }
.sec-head.reveal .sec-num::before { width: 0; }
.sec-head.in .sec-num::before { width: 26px; transition: width .45s var(--ease-out) .1s; }
.sec-head.reveal .sec-num, .sec-head.reveal > p { opacity: 0; transition: opacity .45s var(--ease-out); }
.sec-head.in .sec-num, .sec-head.in > p { opacity: 1; }
.sec-head.in > p { transition-delay: .2s; }

/* étapes : un anneau s'élargit sur chaque pastille quand le trait l'atteint */
.steps__n::after { content: ""; position: absolute; inset: -1px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .6); opacity: 0; pointer-events: none; }
@keyframes ring-soft { from { opacity: .8; transform: scale(1); } to { opacity: 0; transform: scale(1.6); } }
.steps__list.is-visible .steps__n::after { animation: ring-soft .6s ease-out both; }
.steps__list li:nth-child(1) .steps__n::after { animation-delay: .25s; }
.steps__list li:nth-child(2) .steps__n::after { animation-delay: .5s; }
.steps__list li:nth-child(3) .steps__n::after { animation-delay: .75s; }
.steps__list li:nth-child(4) .steps__n::after { animation-delay: 1s; }

/* réassurance sous les boutons, intro et indices du formulaire */
.quick__note { margin: 10px 0 0; font-size: 13px; color: var(--dim); }
.form__intro { margin: 0 0 18px; font-size: 15px; color: var(--muted); }
.form__hint { margin: 0; font-size: 14px; color: var(--dim); max-width: 360px; }
.field__hint { margin: -6px 0 16px; font-size: 14px; color: var(--muted); padding-left: 14px; border-left: 2px solid var(--red); }
.form__done-tel { color: var(--text) !important; }
.form__done .btn--ghost { margin-top: 10px; display: inline-flex; gap: 10px; }
.form__done .btn--ghost svg { width: 18px; height: 18px; fill: var(--wa); stroke: none; }

/* ouvert / fermé, calculé depuis les horaires */
.open-state { display: inline-flex; align-items: center; gap: 8px; min-height: 22px; font-size: 14px; color: var(--muted); visibility: hidden; }
.open-state.is-open, .open-state.is-closed { visibility: visible; }
.open-state::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--dim); }
.open-state.is-open::before { background: var(--wa); }
.open-state--block { margin: 14px 0 0; }

/* carte WhatsApp de la section rendez-vous */
.wa-card { padding: clamp(24px, 3vw, 40px); background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px; }
.wa-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.wa-card__icon { width: 44px; height: 44px; flex: none; fill: var(--wa); }
.wa-card h3 { font-size: clamp(26px, 2.6vw, 34px); text-transform: uppercase; font-weight: 700; line-height: 1.05; }
.wa-card > p { color: var(--muted); }
.wa-card__steps { counter-reset: was; display: grid; gap: 12px; margin: 18px 0 26px; }
.wa-card__steps li { position: relative; padding: 14px 16px 14px 58px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); color: var(--muted); counter-increment: was; }
.wa-card__steps li::before { content: counter(was); position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; display: grid; place-items: center; background: var(--red); color: #fff; border-radius: 50%; font-family: var(--display); font-weight: 700; font-size: 16px; }
.wa-card__steps strong { color: var(--text); }
.wa-card .btn--lg { width: 100%; }
.wa-card__note { margin: 14px 0 0; font-size: 14px; color: var(--dim); }
.wa-card__alt { margin: 10px 0 0; }

/* preuve sociale dans la colonne de gauche */
.rdv__proof { margin-top: 30px; padding-left: 16px; border-left: 3px solid var(--red); }
.rdv__rating { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; }
.rdv__rating strong { font-family: var(--display); font-weight: 800; font-size: 26px; line-height: 1; }
.rdv__rating span { color: #ffb400; letter-spacing: 1px; }
.rdv__rating a { font-size: 13px; color: var(--muted); border-bottom: 1px solid var(--line-2); }
.rdv__rating a:hover { color: var(--text); }
.rdv__quote { margin: 0; }
.rdv__quote p { margin: 0 0 4px; font-size: 15px; color: var(--text); }
.rdv__quote p::before { content: "« "; color: var(--red); }
.rdv__quote p::after { content: " »"; color: var(--red); }
.rdv__quote footer { font-size: 13px; color: var(--dim); }

/* non-assurés : bloc visible dans la section assurance */
.docs--alt { margin-top: 14px; border-color: rgba(223, 11, 0, .3); }
.docs--alt p:last-child { margin: 0; font-size: 15px; color: var(--muted); }

/* aperçu de la photo jointe */
.photo-preview { position: relative; display: inline-flex; align-items: center; gap: 14px; margin-top: 10px; padding: 6px 12px 6px 6px; background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden; animation: rise .32s var(--ease-out) both; }
.photo-preview img { width: 96px; height: 72px; object-fit: cover; border-radius: 4px; display: block; }
.photo-preview__name { font-size: 14px; color: var(--muted); max-width: 260px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.photo-preview__rm { background: none; border: 1px solid var(--line-2); color: var(--text); border-radius: 999px; padding: 6px 12px; font-size: 13px; }
.photo-preview__rm:hover { border-color: #fff; }

/* fissure en écho sur le bloc rouge de fin de page */
.cta-crack { position: absolute; left: 0; top: 0; width: 62%; height: auto; pointer-events: none; }
.cta-crack path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.contact__block--cta.in .cta-crack path, .contact__block--cta.seen .cta-crack path { animation: draw .8s var(--ease-out) .3s both; }
.contact__block--cta.in .cta-crack path:nth-child(n+2), .contact__block--cta.seen .cta-crack path:nth-child(n+2) { animation-duration: .35s; animation-delay: 1s; }
.contact__block--cta > p, .contact__block--cta > .btn { position: relative; }

/* barre mobile : s'efface quand le formulaire est à l'écran ou en saisie */
.mbar { transition: transform .28s var(--ease-out), visibility 0s linear 0s; }
.mbar.is-away { transform: translateY(110%); visibility: hidden; transition-delay: 0s, .28s; }

/* ==========================================================================
   Sans JavaScript, impression, mouvement réduit : tout est visible, rien ne bouge
   ========================================================================== */
html:not(.js) .strip__item::after { width: 36px; }
html:not(.js) .steps__list::before { transform: none; }
html:not(.js) .cta-crack path { stroke-dashoffset: 0; }
@media print {
  .reveal, .sec-head.reveal .sec-num, .sec-head.reveal > p, .js .rating .stars i { opacity: 1 !important; transform: none !important; }
  .sec-head.reveal h2, .sec-head.in h2 { clip-path: none !important; }
  .h1-line { animation: none !important; clip-path: none !important; }
  .steps__list li.reveal .steps__n { transform: none !important; }
  .strip__item::after { width: 36px; }
  .steps__list::before { transform: none; }
  .cta-crack path { stroke-dashoffset: 0; }
  .mbar, .topbar__actions, .burger { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .form__check circle, .form__check path { animation: none; stroke-dashoffset: 0; }
  .contact__block--cta .cta-crack path { animation: none; stroke-dashoffset: 0; }
  .card .card__icon [pathLength] { animation: none !important; stroke-dashoffset: 0; }
  .h1-line { animation: none !important; clip-path: none !important; }
  .sec-head.reveal h2, .sec-head.in h2 { clip-path: none !important; transition: none; }
  .sec-head.reveal .sec-num::before { width: 26px; }
  .brand__mark, .brand__word, .hero__art-3d { transition: none; }
}
