/* ==========================================================================
   Objectif-Emploi : feuille de style (mobile d'abord)
   ========================================================================== */
:root {
  --ink: #0b1220;
  --ink-2: #1f2937;
  --muted: #556070;
  --line: #e3e7e2;
  --line-2: #d5dae1;
  --bg: #ffffff;
  --soft: #f4f6f3;
  --brand: #0e7a4f;
  --brand-600: #0b6541;
  --brand-700: #095434;
  --brand-50: #e8f5ee;
  --brand-100: #cdebdb;
  --gold: #f2b705;
  --amber: #92400e;
  --amber-bg: #fef3c7;
  --red: #b42318;
  --red-bg: #fee4e2;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.06);
  --shadow: 0 18px 40px -20px rgba(11, 18, 32, 0.35);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body { margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; }
a { color: var(--brand); }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px; }

.container { width: min(1120px, 100% - 40px); margin-inline: auto; }
.container--narrow { width: min(780px, 100% - 40px); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
.ico { width: 1.15em; height: 1.15em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vertical-align: -0.2em; }
.muted { color: var(--muted); }

/* ---------- Boutons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px; padding: 0 20px; border-radius: 12px; border: 1.5px solid transparent; font: inherit; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform 0.15s, background 0.15s, border-color 0.15s, box-shadow 0.15s; text-align: center; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px -10px rgba(14, 122, 79, 0.9); }
.btn--primary:hover { background: var(--brand-600); }
/* Bouton de paiement Wave (couleur de la marque Wave) */
.btn--wave { background: #1dc4ff; color: #0b1220; box-shadow: 0 8px 20px -10px rgba(29, 196, 255, 0.9); }
.btn--wave:hover { background: #10b3ec; }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { min-height: 54px; padding: 0 26px; font-size: 1.05rem; }
.btn--sm { min-height: 40px; padding: 0 14px; font-size: 0.92rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; box-shadow: none; }
.btn__price { background: rgba(255, 255, 255, 0.18); padding: 3px 10px; border-radius: 999px; font-size: 0.86em; }
.linklike { background: none; border: 0; padding: 0; font: inherit; color: var(--brand); text-decoration: underline; cursor: pointer; }

/* ---------- Bandeau d'annonce ---------- */
.announce { background: var(--ink); color: #fff; font-size: 0.92rem; }
.announce__in { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 9px 0; text-align: left; line-height: 1.35; }
.announce__link { display: none; }
.announce__link { color: var(--gold); font-weight: 700; white-space: nowrap; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); animation: pulse 1.8s infinite; flex: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }

/* ---------- Navigation ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, 0.9); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand__mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--brand); color: #fff; }
.brand__name { font-size: 1.02rem; }
.brand__name strong { font-weight: 800; }
.nav__links { display: none; gap: 26px; }
.nav__links a { color: var(--ink-2); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.nav__links a:hover { color: var(--brand); }
.nav__cta { display: flex; gap: 8px; }
.nav__cta .btn--ghost { display: none; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; scroll-margin-top: var(--header-h); }
.section--soft { background: var(--soft); }
.section__head { max-width: 680px; margin-bottom: 36px; }
.section__lead { margin-top: 14px; color: var(--muted); font-size: 1.08rem; }
.eyebrow { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.eyebrow--light { color: #86efac; }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.12rem; font-weight: 700; }

/* ---------- Hero ---------- */
.hero { overflow: clip; padding: 44px 0 64px; background: radial-gradient(1000px 420px at 85% -10%, var(--brand-50), transparent 70%), linear-gradient(#fff, #fff); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: center; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-100); border-radius: 999px; font-size: 0.86rem; font-weight: 700; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.2rem, 6.4vw, 3.9rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.03; }
.lead { margin-top: 20px; font-size: 1.12rem; color: var(--ink-2); max-width: 36em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__cta .btn { flex: 1 1 auto; }
@media (min-width: 900px) { .hero__cta .btn { flex: 0 0 auto; } }
.micro { margin-top: 14px; font-size: 0.9rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.facts { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 12px 34px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.facts dt { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.facts dd { font-size: 0.86rem; color: var(--muted); }

/* Illustration avant / après */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.cv { background: #fff; border: 1px solid var(--line-2); border-radius: 16px; padding: 12px; box-shadow: var(--shadow); position: relative; }
.cv--bad { transform: rotate(-2deg); margin-top: 18px; }
.cv--good { transform: rotate(1.5deg); border-color: var(--brand); box-shadow: 0 22px 44px -22px rgba(14, 122, 79, 0.55); }
.cv__tag { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; margin-bottom: 10px; }
.cv__tag--bad { background: var(--red-bg); color: var(--red); }
.cv__tag--good { background: var(--brand-50); color: var(--brand-700); }
.cv__sheet { background: #fafbfa; border: 1px solid var(--line); border-radius: 10px; padding: 12px; min-height: 210px; display: flex; flex-direction: column; gap: 6px; }
.cv--bad .cv__sheet { gap: 4px; padding: 8px; filter: saturate(0.4); }
.cv__head { display: grid; gap: 5px; margin-bottom: 6px; }
.cv__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cv__cols > div { display: grid; gap: 4px; align-content: start; }
.bar { display: block; height: 6px; border-radius: 3px; background: #cfd6d2; }
.cv--bad .bar { height: 5px; background: #b8c0bb; }
.bar--dark { background: var(--ink); height: 9px; }
.bar--w40 { width: 40%; } .bar--w50 { width: 50%; } .bar--w60 { width: 60%; } .bar--w70 { width: 70%; } .bar--w80 { width: 80%; } .bar--w90 { width: 90%; }
.cv__h { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-700); margin-top: 6px; }
.kw { display: flex; flex-wrap: wrap; gap: 4px; }
.kw mark { background: #fde68a; color: var(--ink); font-size: 0.66rem; font-weight: 700; padding: 2px 6px; border-radius: 5px; }
.cv__verdict { display: flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 0.78rem; font-weight: 700; line-height: 1.25; }
.cv__verdict--bad { color: var(--red); }
.cv__verdict--good { color: var(--brand-700); }

/* ---------- Cartes ---------- */
.grid { display: grid; gap: 18px; }
/* ---------- Programme : frise verticale ---------- */
.prog { display: grid; gap: 36px; }
.prog__meta { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.prog__meta li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 0.9rem; font-weight: 600; color: var(--ink-2); }
.prog__meta .ico { color: var(--brand); }
.timeline { --tl-size: 40px; --tl-gap: 14px; list-style: none; padding: 0; margin: 0; display: grid; gap: var(--tl-gap); }
.tl { position: relative; display: grid; grid-template-columns: var(--tl-size) minmax(0, 1fr); gap: 16px; align-items: start; }
/* Trait qui relie chaque étape à la suivante (s'arrête à la dernière) */
.tl:not(:last-child)::before { content: ""; position: absolute; left: calc(var(--tl-size) / 2 - 1px); top: calc(14px + var(--tl-size) / 2); bottom: calc(-1 * (var(--tl-gap) + 14px + var(--tl-size) / 2)); width: 2px; background: var(--brand-100); }
.tl:nth-last-child(2)::before { background: linear-gradient(var(--brand-100), var(--brand)); }
.tl__n { position: relative; z-index: 1; display: grid; place-items: center; width: var(--tl-size); height: var(--tl-size); margin-top: 14px; border-radius: 50%; background: #fff; border: 2px solid var(--brand); color: var(--brand-700); font-weight: 800; }
@media (max-width: 480px) {
  .timeline { --tl-size: 32px; }
  .tl { gap: 12px; }
  .tl__n { font-size: 0.9rem; }
}
.tl__card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow-sm); transition: border-color 0.2s ease, transform 0.2s ease; }
.tl__card:hover { border-color: var(--brand-100); transform: translateX(3px); }
.tl__tag { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 6px; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand); }
.tl__card p:last-child { margin-top: 4px; color: var(--muted); }
.tl--accent .tl__n { background: var(--brand); color: #fff; box-shadow: 0 0 0 5px var(--brand-50); }
.tl--accent .tl__card { border-color: var(--brand); background: linear-gradient(135deg, var(--brand-50), #fff 70%); }
@media (prefers-reduced-motion: reduce) {
  .tl__card { transition: none; }
  .tl__card:hover { transform: none; }
}

/* ---------- Bandeau résultat ---------- */
.band {
  position: relative; overflow: hidden; color: #fff; padding: 72px 0;
  background:
    radial-gradient(620px 320px at 92% -10%, rgba(14, 122, 79, 0.45), transparent 70%),
    radial-gradient(520px 280px at -5% 110%, rgba(14, 122, 79, 0.25), transparent 70%),
    var(--ink);
}
/* Trame de points discrète */
.band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(90deg, transparent, #000 60%); pointer-events: none; }
.band__in { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); gap: 34px; align-items: center; }
.band h2 { max-width: 20em; }
.band__lead { margin-top: 16px; color: #c8d0d8; font-size: 1.1rem; max-width: 30em; }
.gains { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.gain { display: flex; gap: 16px; align-items: center; padding: 16px 18px; border-radius: 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); backdrop-filter: blur(2px); transition: border-color 0.2s ease, background 0.2s ease; }
.gain:hover { border-color: rgba(134, 239, 172, 0.45); background: rgba(255, 255, 255, 0.08); }
.gain__ico { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: linear-gradient(135deg, #16a36b, var(--brand-700)); color: #fff; box-shadow: 0 10px 22px -12px rgba(22, 163, 107, 0.9); }
.gain h3 { color: #fff; font-size: 1.05rem; }
.gain p { margin-top: 2px; color: #c8d0d8; font-size: 0.95rem; }

/* ---------- Réservation ---------- */
.reserve { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; align-items: start; }
.offer { background: var(--ink); color: #fff; border-radius: 20px; padding: 28px; }
.offer h2 { font-size: 1.7rem; }
.offer .eyebrow { color: #86efac; }
.offer__price { margin: 18px 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 10px; }
.offer__price strong { font-size: 2.2rem; letter-spacing: -0.03em; white-space: nowrap; }
.offer__price span { color: #c8d0d8; }
.checklist { list-style: none; padding: 0; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; color: #e5e9ee; font-size: 0.98rem; }
.checklist .ico { color: #86efac; margin-top: 4px; }
.offer__live { display: flex; align-items: center; gap: 10px; margin-top: 22px; padding: 12px 14px; border-radius: 12px; background: rgba(255, 255, 255, 0.08); font-size: 0.95rem; }
.offer__note { margin-top: 18px; font-size: 0.86rem; color: #aab3bd; }

.wizard { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 22px; box-shadow: var(--shadow); }
.steps { list-style: none; padding: 0; margin: 0 0 22px; display: flex; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--muted); }
.steps li { flex: 1; display: flex; align-items: center; gap: 8px; padding-bottom: 12px; border-bottom: 3px solid var(--line); }
.steps li span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--line); color: var(--muted); font-size: 0.78rem; flex: none; }
.steps li.is-current { color: var(--ink); border-color: var(--brand); }
.steps li.is-current span { background: var(--brand); color: #fff; }
.steps li.is-done { color: var(--brand-700); border-color: var(--brand); }
.steps li.is-done span { background: var(--brand-100); color: var(--brand-700); }
.loading { color: var(--muted); padding: 20px 0; }

.legend { display: block; width: 100%; padding: 0; font-weight: 800; font-size: 1.02rem; margin: 6px 0 12px; }
.live-tag { float: right; display: inline-flex; align-items: center; gap: 6px; font-size: 0.74rem; font-weight: 700; color: var(--brand-700); background: var(--brand-50); padding: 3px 9px; border-radius: 999px; }
.live-tag .live-dot { width: 7px; height: 7px; background: var(--brand); }

.slot-pick { display: grid; gap: 10px; margin-bottom: 20px; }
.pick { position: relative; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1.5px solid var(--line-2); border-radius: 12px; cursor: pointer; background: #fff; transition: border-color 0.15s, background 0.15s; }
.pick:hover { border-color: var(--ink); }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick:has(input:checked) { border-color: var(--brand); background: var(--brand-50); box-shadow: 0 0 0 1px var(--brand) inset; }
.pick:has(input:focus-visible) { outline: 3px solid var(--gold); outline-offset: 2px; }
.pick__radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line-2); flex: none; display: grid; place-items: center; }
.pick:has(input:checked) .pick__radio { border-color: var(--brand); }
.pick:has(input:checked) .pick__radio::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); }
.pick__main { flex: 1; min-width: 0; }
.pick__title { font-weight: 800; }
.pick__sub { font-size: 0.86rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.pick[aria-disabled="true"], .pick.is-full { cursor: not-allowed; background: var(--soft); color: var(--muted); }
.pick.is-full:hover { border-color: var(--line-2); }

.date-pick { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 22px; }
.seat-badge { max-width: 100%; display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 800; padding: 3px 9px; border-radius: 999px; background: var(--brand-50); color: var(--brand-700); white-space: nowrap; }
.seat-badge.is-low { background: var(--amber-bg); color: var(--amber); }
.seat-badge.is-full { background: var(--red-bg); color: var(--red); }
.dots { display: inline-flex; gap: 3px; }
.dots i { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 1.5px var(--brand); }
.dots i.is-taken { background: var(--ink-2); box-shadow: none; }
.dots i.is-held { background: var(--gold); box-shadow: none; }
.seat-badge.is-low .dots i:not(.is-taken):not(.is-held) { box-shadow: inset 0 0 0 1.5px var(--amber); }
.seat-badge.is-full .dots i { box-shadow: none; }
.pick.date-card { flex-direction: column; align-items: flex-start; gap: 8px; }
.pick.date-card .pick__title { font-size: 0.98rem; }
.pick.date-card .pick__radio { display: none; }
.group { border: 0; padding: 0; margin: 0 0 4px; min-width: 0; }
.group + .group { margin-top: 8px; }

.field { display: grid; gap: 6px; margin-bottom: 16px; align-content: start; }
.field > span { font-weight: 700; font-size: 0.92rem; }
.field small { color: var(--muted); font-size: 0.82rem; }
.field input, .field select { width: 100%; min-height: 48px; padding: 0 14px; border: 1.5px solid var(--line-2); border-radius: 10px; font: inherit; color: var(--ink); background: #fff; }
.field input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(14, 122, 79, 0.15); }
.field.has-error input { border-color: var(--red); background: #fffafa; }
.err { color: var(--red); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
#err-date { margin: -6px 0 14px; }
.row2 { display: grid; gap: 0 16px; }
.consent { display: flex; align-items: flex-start; gap: 12px; margin: 6px 0 18px; font-size: 0.9rem; color: var(--ink-2); cursor: pointer; }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--brand); flex: none; }
.consent.has-error { color: var(--red); }
.file-pick { position: relative; display: flex; align-items: center; gap: 10px; min-height: 48px; padding: 6px 6px 6px 14px; border: 1.5px dashed var(--line-2); border-radius: 10px; background: #fff; cursor: pointer; }
.file-pick:hover { border-color: var(--brand); }
.file-pick:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(14, 122, 79, 0.15); }
.field .file-pick input { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; padding: 0; border: 0; opacity: 0; cursor: pointer; }
.file-pick .ico { flex: none; color: var(--brand); }
.file-pick__name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--ink-2); }
.file-pick__btn { flex: none; padding: 8px 12px; border-radius: 8px; background: var(--brand-50); font-weight: 700; font-size: 0.88rem; color: var(--brand-700); }
.field.has-error .file-pick { border-color: var(--red); background: #fffafa; }
.captcha { min-height: 65px; margin: 0 0 14px; display: flex; justify-content: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { background: var(--red-bg); color: var(--red); border-radius: 10px; padding: 12px 14px; font-weight: 600; font-size: 0.92rem; margin-bottom: 14px; }
.notice { display: flex; gap: 10px; background: var(--amber-bg); color: var(--amber); border-radius: 10px; padding: 12px 14px; font-size: 0.92rem; margin-bottom: 16px; }
.notice--info { background: var(--brand-50); color: var(--brand-700); }
.notice .ico { margin-top: 3px; }
.notice > div { flex: 1; }
.notice .btn { margin-top: 8px; }

/* Paiement */
.summary { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-bottom: 18px; }
.summary div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 14px; font-size: 0.95rem; }
.summary div + div { border-top: 1px solid var(--line); }
.summary dt { color: var(--muted); }
.summary dd { font-weight: 700; text-align: right; }
.hold { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--amber-bg); color: var(--amber); padding: 12px 16px; border-radius: 12px; font-weight: 700; margin-bottom: 18px; }
.hold strong { font-size: 1.5rem; font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.hold.is-safe { background: var(--brand-50); color: var(--brand-700); }
.methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.method { position: relative; display: flex; align-items: center; gap: 10px; padding: 14px; border: 1.5px solid var(--line-2); border-radius: 12px; cursor: pointer; font-weight: 800; }
.method input { position: absolute; opacity: 0; pointer-events: none; }
.method:has(input:checked) { border-color: var(--brand); background: var(--brand-50); box-shadow: 0 0 0 1px var(--brand) inset; }
.method:has(input:focus-visible) { outline: 3px solid var(--gold); outline-offset: 2px; }
.method__dot { width: 14px; height: 14px; border-radius: 4px; flex: none; }
.method__dot--wave { background: #1dc8f2; }
.method__dot--om { background: #ff7900; }
.howto { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 12px; counter-reset: s; }
.howto li { counter-increment: s; display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.howto li::before { content: counter(s); display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 0.82rem; font-weight: 800; }
.copybox { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; background: var(--soft); border: 1px dashed var(--line-2); border-radius: 10px; padding: 8px 8px 8px 14px; }
.copybox strong { font-size: 1.15rem; letter-spacing: 0.02em; font-variant-numeric: tabular-nums; }
.copy-btn { display: inline-flex; align-items: center; gap: 6px; min-height: 36px; padding: 0 12px; border: 1px solid var(--line-2); border-radius: 8px; background: #fff; font: inherit; font-weight: 700; font-size: 0.85rem; cursor: pointer; }
.copy-btn:hover { border-color: var(--ink); }
.actions { display: grid; gap: 10px; margin-top: 20px; }
.textbtn { background: none; border: 0; padding: 8px; font: inherit; color: var(--muted); text-decoration: underline; cursor: pointer; }
.center { text-align: center; }
.status-screen { text-align: center; padding: 10px 0 4px; }
.status-screen__ico { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; background: var(--amber-bg); color: var(--amber); }
.status-screen__ico .ico { width: 30px; height: 30px; }
.status-screen__ico.is-ok { background: var(--brand-100); color: var(--brand-700); }
.status-screen__ico.is-bad { background: var(--red-bg); color: var(--red); }
.status-screen h3 { font-size: 1.35rem; }
.status-screen p { color: var(--muted); margin-top: 8px; }
.spinner { width: 28px; height: 28px; border: 3px solid rgba(146, 64, 14, 0.22); border-top-color: var(--amber); border-radius: 50%; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Billet */
.ticket { display: grid; border: 1px solid var(--line-2); border-radius: 18px; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.ticket__main { padding: 0 0 18px; }
.ticket__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--brand); color: #fff; padding: 16px 20px; }
.ticket__brand { font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; font-size: 0.95rem; }
.pill { display: inline-block; padding: 5px 12px; border-radius: 999px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.pill--ok { background: #dcfce7; color: #14532d; }
.pill--wait { background: var(--amber-bg); color: var(--amber); }
.pill--bad { background: var(--red-bg); color: var(--red); }
.ticket__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; padding: 20px; }
.ticket__grid dt { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.ticket__grid dd { font-weight: 800; font-size: 1rem; overflow-wrap: anywhere; }
.ticket__grid .wide { grid-column: 1 / -1; }
.ticket__stub { display: grid; justify-items: center; gap: 6px; padding: 20px; background: var(--soft); border-top: 2px dashed var(--line-2); }
.ticket__stub img { width: 150px; height: 150px; border-radius: 8px; background: #fff; }
.ticket__code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 1.3rem; font-weight: 800; letter-spacing: 0.04em; }
.ticket__hint { font-size: 0.82rem; color: var(--muted); }
.ticket-actions { display: grid; gap: 10px; margin-top: 16px; }
.link-box { margin: 0 20px; padding: 12px 14px; border-radius: 10px; background: var(--brand-50); color: var(--brand-700); font-size: 0.92rem; }
.link-box a { font-weight: 800; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0 18px; }
.faq summary { cursor: pointer; padding: 16px 0; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--brand); line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details[open] { border-color: var(--brand); }
.faq p { color: var(--muted); padding-bottom: 16px; }
.faq p:has(+ ul) { padding-bottom: 8px; }
.faq ul { display: grid; gap: 8px; margin: 0; padding: 0 0 16px 20px; color: var(--muted); }
.faq ul strong { color: var(--ink-2); }
.faq details { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---------- CTA final, pied de page ---------- */
.cta-final { background: linear-gradient(135deg, var(--brand-700), var(--brand)); color: #fff; padding: 64px 0; text-align: center; }
.cta-final__in { display: grid; gap: 14px; justify-items: center; }
.cta-final p { color: #d1fae5; }
.cta-final .btn--primary { background: #fff; color: var(--brand-700); box-shadow: none; }
.cta-final .btn--primary:hover { background: var(--brand-50); }
.cta-final .btn__price { background: var(--brand-50); }
.footer { padding: 28px 0 90px; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); }
.footer__in { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; }
.footer nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }

/* ---------- CTA mobile, modale, toast ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -18px rgba(11, 18, 32, 0.4); }
.sticky-cta strong { display: block; font-size: 1.05rem; line-height: 1.2; }
.sticky-cta span { font-size: 0.8rem; color: var(--muted); }
.modal { border: 0; border-radius: 18px; padding: 0; width: min(440px, calc(100% - 32px)); box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5); }
.modal::backdrop { background: rgba(11, 18, 32, 0.55); }
.modal__in { position: relative; padding: 26px; display: grid; gap: 4px; }
.modal__in h2 { font-size: 1.4rem; padding-right: 36px; }
.modal__in .muted { margin-bottom: 14px; font-size: 0.95rem; }
.modal__close { position: absolute; right: 14px; top: 14px; display: grid; place-items: center; width: 36px; height: 36px; border: 0; border-radius: 50%; background: var(--soft); cursor: pointer; }
.toast { position: fixed; left: 50%; bottom: 88px; transform: translateX(-50%); z-index: 90; background: var(--ink); color: #fff; padding: 11px 18px; border-radius: 999px; font-weight: 600; font-size: 0.92rem; box-shadow: var(--shadow); }

/* ---------- Page billet ---------- */
.page-narrow { width: min(560px, 100% - 32px); margin: 0 auto; padding: 24px 0 60px; }
.page-narrow h1 { font-size: 1.5rem; margin: 18px 0 16px; }
/* Pages de texte (confidentialité, mentions légales) */
.prose { width: min(720px, 100% - 32px); }
.prose h2 { font-size: 1.15rem; margin: 28px 0 8px; letter-spacing: -0.01em; }
.prose p, .prose li { color: var(--ink-2); line-height: 1.6; }
.prose p + p, .prose p + ul, .prose ul + p { margin-top: 8px; }
.prose ul { padding-left: 20px; display: grid; gap: 6px; }
.prose a { color: var(--brand-700); }
.prose__meta { font-size: 0.88rem; color: var(--muted); margin-top: -8px; }
.back { display: inline-flex; gap: 8px; align-items: center; text-decoration: none; font-weight: 700; }
.admin-box { margin-top: 18px; padding: 16px; border: 1px dashed var(--brand); border-radius: 12px; background: var(--brand-50); }
.admin-box h2 { font-size: 1rem; margin-bottom: 10px; }

/* ---------- Grand écran ---------- */
@media (min-width: 640px) {
  .announce__link { display: inline; }
  .row2 { grid-template-columns: 1fr 1fr; }
  .date-pick { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .slot-pick { grid-template-columns: repeat(3, 1fr); }
  .slot-pick .pick { flex-direction: column; align-items: flex-start; }
  .slot-pick .pick__radio { display: none; }
  .actions--row { grid-template-columns: 1fr 1fr; }
  .ticket-actions { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta .btn--ghost { display: inline-flex; }
  .hero { padding: 64px 0 88px; }
  .hero__grid { grid-template-columns: 1.2fr 0.8fr; gap: 48px; }
  .prog { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 56px; align-items: start; }
  .prog__intro { position: sticky; top: calc(var(--header-h) + 32px); }
  .tl__card { padding: 20px 24px; }
  .band__in { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
  .reserve { grid-template-columns: 340px minmax(0, 1fr); gap: 32px; }
  .offer { position: sticky; top: calc(var(--header-h) + 20px); }
  .wizard { padding: 32px; }
  .ticket { grid-template-columns: 1fr 210px; }
  .ticket__stub { border-top: 0; border-left: 2px dashed var(--line-2); align-content: center; }
  .sticky-cta { display: none !important; }
  .footer { padding-bottom: 40px; }
  .toast { bottom: 28px; }
}
@media (max-width: 480px) {
  .dots i { width: 6px; height: 6px; }
  .dots { gap: 2px; }
  .seat-badge { padding: 3px 7px; font-size: 0.72rem; gap: 5px; }
  .facts { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .facts dt { font-size: 1.2rem; white-space: nowrap; }
}
@media (max-width: 420px) {
  .compare { gap: 8px; }
  .cv { padding: 8px; }
  .cv__sheet { padding: 8px; min-height: 190px; }
  .hold strong { font-size: 1.3rem; }
}

/* Formateur */
.coach { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: center; }
.coach__photo { position: relative; margin: 0; max-width: 420px; justify-self: center; width: 100%; }
.coach__photo::before { content: ""; position: absolute; inset: 18px -14px -14px 18px; border-radius: 24px; background: var(--brand-50); border: 1.5px solid var(--brand-100); z-index: 0; }
.coach__photo img { position: relative; z-index: 1; display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 15%; border-radius: 22px; box-shadow: var(--shadow); }
.coach__badge { position: absolute; z-index: 2; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.94); color: var(--ink); font-weight: 700; font-size: 0.88rem; box-shadow: var(--shadow-sm); }
.coach__badge .ico { color: var(--brand); }
.coach__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 26px 0 0; }
.coach__stats div { padding: 14px 12px; border-radius: 14px; background: var(--brand-50); border: 1px solid var(--brand-100); }
.coach__stats dt { font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; color: var(--brand-700); }
.coach__stats dd { margin: 4px 0 0; font-size: 0.84rem; line-height: 1.35; color: var(--ink-2); }
@media (max-width: 520px) {
  .coach__stats { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .coach__stats div { display: flex; align-items: center; gap: 14px; padding: 10px 14px; }
  .coach__stats dt { min-width: 2.6em; }
  .coach__stats dd { margin: 0; }
}
.coach__text { margin-top: 14px; color: var(--ink-2); font-size: 1.02rem; line-height: 1.65; max-width: 38em; }
.coach__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.coach__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--ink-2); }
.coach__list .ico { flex: none; color: var(--brand); margin-top: 3px; }
@media (min-width: 900px) {
  .coach { grid-template-columns: 5fr 7fr; gap: 64px; }
  .coach__photo { justify-self: start; }
}

/* Préparation aux entretiens (affichage seul, réservation par WhatsApp) */
.interview { display: grid; gap: 28px; align-items: center; padding: 28px; border-radius: 24px; background: linear-gradient(135deg, var(--brand-50), #fff 65%); border: 1px solid var(--brand-100); }
.interview__facts { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.interview__facts li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.interview__facts .ico { flex: none; margin-top: 3px; color: var(--brand); }
.interview__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin: 26px 0 10px; }
.interview__price { color: var(--muted); }
.interview__price strong { font-size: 1.35rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.interview__week { padding: 22px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.interview__week-title { display: flex; align-items: center; gap: 8px; font-weight: 800; }
.interview__week-title .ico { color: var(--brand); }
.interview__days, .interview__times { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.interview__days { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.interview__days li { display: grid; place-items: center; min-height: 44px; border-radius: 12px; background: var(--brand); color: #fff; font-weight: 800; font-size: 0.92rem; }
.interview__label { margin-top: 18px; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.interview__times { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 8px; }
.interview__times li { display: grid; place-items: center; min-height: 42px; border-radius: 10px; border: 1.5px solid var(--brand-100); background: var(--brand-50); color: var(--brand-700); font-weight: 800; font-size: 0.92rem; }
.interview__modes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line-2); }
.tag-mode { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: var(--brand-50); color: var(--brand-700); font-size: 0.82rem; font-weight: 800; }
.tag-mode--online { background: #e0ebff; color: #1d4ed8; }
@media (min-width: 900px) {
  .interview { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr); gap: 48px; padding: 44px; }
}
@media (max-width: 480px) {
  .interview__cta .btn { width: 100%; padding-inline: 14px; white-space: nowrap; }
}
@media (max-width: 380px) {
  .interview { padding: 20px; }
  .interview__days li, .interview__times li { font-size: 0.82rem; }
}

/* Choix du service (formation, entretien, accompagnement) */
.service-pick { display: grid; gap: 10px; margin-bottom: 20px; }
.service-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "title price" "sub price"; align-items: center; gap: 2px 12px; }
.service-card__title { grid-area: title; font-weight: 800; }
.service-card__sub { grid-area: sub; font-size: 0.86rem; color: var(--muted); }
.service-card__price { grid-area: price; font-weight: 800; color: var(--brand-700); white-space: nowrap; }
@media (min-width: 640px) {
  .service-pick { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-card { grid-template-columns: 1fr; grid-template-areas: "title" "sub" "price"; align-items: start; gap: 4px; }
  .service-card__price { margin-top: 6px; }
}

/* Préparation à l'entretien : heures et format */
.time-pick { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.time-chip { position: relative; display: grid; justify-items: center; gap: 2px; padding: 10px 6px; border: 1.5px solid var(--line-2); border-radius: 12px; background: #fff; cursor: pointer; font-weight: 800; }
.time-chip input { position: absolute; opacity: 0; pointer-events: none; }
.time-chip small { font-size: 0.74rem; font-weight: 700; color: var(--brand-700); }
.time-chip:hover { border-color: var(--ink); }
.time-chip:has(input:checked) { border-color: var(--brand); background: var(--brand-50); box-shadow: 0 0 0 1px var(--brand) inset; }
.time-chip:has(input:focus-visible) { outline: 3px solid var(--gold); outline-offset: 2px; }
.time-chip.is-full { cursor: not-allowed; background: var(--soft); color: var(--muted); border-color: var(--line); }
.time-chip.is-full small { color: var(--red); }
.mode-pick { display: grid; gap: 10px; }
.mode-pick .pick__title { display: inline-flex; align-items: center; gap: 6px; }
@media (min-width: 640px) { .mode-pick { grid-template-columns: 1fr 1fr; } }

/* Accompagnement : ce que comprend le programme */
.coaching-box { margin-bottom: 20px; padding: 18px 20px; border-radius: 14px; background: var(--brand-50); border: 1px solid var(--brand-100); }
.coaching-box__title { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--brand-700); }
.coaching-box__list { list-style: none; padding: 0; margin: 12px 0; display: grid; gap: 6px; }
.coaching-box__list li { display: flex; align-items: center; gap: 8px; color: var(--ink-2); }
.coaching-box__list .ico { color: var(--brand); flex: none; }

/* Questionnaire de préparation à l'entretien */
.quest { margin: 18px 0; padding: 20px; border-radius: 16px; border: 1.5px solid var(--brand); background: #fff; }
.quest__title { display: flex; align-items: center; gap: 8px; font-size: 1.1rem; margin-bottom: 4px; }
.quest__title .ico { color: var(--brand); }
.quest > .muted { margin-bottom: 16px; font-size: 0.92rem; }
.quest--done { display: flex; gap: 12px; align-items: flex-start; border-color: var(--brand-100); background: var(--brand-50); }
.quest--done > .ico { color: var(--brand); margin-top: 3px; flex: none; }
.field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line-2); border-radius: 10px; font: inherit; color: var(--ink); background: #fff; resize: vertical; min-height: 96px; }
.field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(14, 122, 79, 0.15); }
.legend__hint { margin-left: 10px; font-size: 0.86rem; font-weight: 600; color: var(--muted); }

/* Réservation : récapitulatif des trois services (carte sombre) */
.offer__services { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 8px; }
.offer__services li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); color: #dfe5ea; }
.offer__services strong { color: #fff; white-space: nowrap; font-size: 1.05rem; }
.offer__note .ico { vertical-align: -2px; margin-right: 4px; }

/* Accompagnement : même mise en page que la préparation d'entretien */
.interview--coaching { background: linear-gradient(135deg, #f3eefe, #fff 65%); border-color: #e4d9fb; }
.coach-sum { display: grid; gap: 12px; margin: 14px 0 0; }
.coach-sum div { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 10px; border-bottom: 1px dashed var(--line-2); }
.coach-sum div:last-child { border-bottom: 0; padding-bottom: 0; }
.coach-sum dt { color: var(--muted); font-size: 0.9rem; }
.coach-sum dd { margin: 0; font-weight: 800; text-align: right; }

/* À propos : déroulé des trois services */
.process { display: grid; gap: 16px; }
.process__card { padding: 22px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.process__name { font-weight: 800; font-size: 1.05rem; margin-bottom: 14px; color: var(--brand-700); }
.process__steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; counter-reset: p; }
.process__steps li { counter-increment: p; display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 10px; color: var(--ink-2); font-size: 0.95rem; line-height: 1.5; }
.process__steps li::before { content: counter(p); display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 800; font-size: 0.85rem; }
@media (min-width: 900px) { .process { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Tarification */
.pricing { display: grid; gap: 16px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 26px 22px; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.price-card__name { font-weight: 800; font-size: 1.08rem; }
.price-card__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 8px; }
.price-card__price strong { font-size: 2rem; letter-spacing: -0.03em; white-space: nowrap; }
.price-card__price span { color: var(--muted); }
.price-card__list { list-style: none; padding: 0; margin: 0 0 6px; display: grid; gap: 8px; flex: 1; align-content: start; }
.price-card__list li { display: flex; gap: 8px; align-items: flex-start; color: var(--ink-2); font-size: 0.95rem; }
.price-card__list .ico { flex: none; color: var(--brand); margin-top: 3px; }
.price-card--best { border: 2px solid var(--brand); box-shadow: var(--shadow); }
.price-card__tag { position: absolute; top: -13px; left: 22px; padding: 4px 12px; border-radius: 999px; background: var(--brand); color: #fff; font-size: 0.76rem; font-weight: 800; letter-spacing: 0.04em; }
.pricing__note { margin-top: 18px; text-align: center; color: var(--muted); font-size: 0.92rem; }
@media (min-width: 900px) { .pricing { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* Menu à 5 rubriques : jamais de retour à la ligne dans un lien, espacement réduit sur écran moyen */
.nav__links a, .nav__cta .btn, .brand__name { white-space: nowrap; }
@media (min-width: 900px) and (max-width: 1239px) { .nav__links { gap: 18px; } .nav__links a { font-size: 0.9rem; } }
@media (min-width: 900px) and (max-width: 1023px) { .nav__links { display: none; } }

/* Espace accompagnement du participant */
.coach-space { margin: 18px 0; padding: 20px; border-radius: 16px; border: 1.5px solid #cbb8f5; background: #fff; }
.coach-space__title { display: flex; align-items: center; gap: 8px; font-size: 1.15rem; }
.coach-space__title .ico { color: #6d28d9; }
.coach-space__h { margin: 20px 0 10px; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.inst-list, .coach-sess-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.inst { padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); background: var(--soft); }
.inst__head { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: 0.95rem; }
.inst__status { font-weight: 800; font-size: 0.85rem; }
.inst--paid .inst__status { color: var(--brand-700); }
.inst--declared .inst__status { color: var(--amber); }
.inst--due { background: #fff; border-color: #f5c56b; }
.inst--due .inst__status { color: var(--red); }
.inst__pay { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 10px; }
.inst__pay input { flex: 1 1 180px; min-height: 36px; padding: 0 10px; border: 1.5px solid var(--line-2); border-radius: 8px; font: inherit; }
.coach-sess { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line); }
.coach-sess.is-cancelled { opacity: 0.55; }
.coach-sess__acts { display: flex; gap: 6px; align-items: center; }
.coach-times { margin: 12px 0; }
.coach-modes { margin-bottom: 14px; }
.coaching-box__price { margin: 6px 0 10px; font-size: 0.95rem; color: var(--ink-2); }
@media (max-width: 480px) { .coach-times { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.price-card__more { margin-top: -8px; font-size: 0.92rem; color: var(--muted); }
.price-card__more strong { color: var(--ink); }
.time-pick > p { grid-column: 1 / -1; }

/* Site en plusieurs pages : tarif du service dans le bloc de réservation, page active du menu */
.offer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.offer__list li { display: flex; gap: 9px; align-items: flex-start; color: #dfe5ea; font-size: 0.95rem; }
.offer__list .ico { flex: none; color: #86efac; margin-top: 3px; }
.offer__more { margin: -8px 0 18px; color: #c8d0d8; font-size: 0.92rem; }
.offer__more strong { color: #fff; }
.nav__links a[aria-current="page"] { color: var(--brand-700); box-shadow: inset 0 -2px 0 var(--brand); }
.section__head h1, .interview__copy h1, .coach__copy h1 { font-size: clamp(1.65rem, 3.6vw, 2.5rem); font-weight: 800; }
.price-card .btn + .btn { margin-top: -4px; }
/* Menu des pages sur téléphone et tablette (le menu principal n'apparaît qu'à partir de 1024 px) */
.subnav { border-top: 1px solid var(--line); }
.subnav__in { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding-block: 6px; }
.subnav__in::-webkit-scrollbar { display: none; }
.subnav a { flex: none; padding: 7px 12px; border-radius: 999px; color: var(--ink-2); font-weight: 700; font-size: 0.88rem; text-decoration: none; white-space: nowrap; }
.subnav a[aria-current="page"] { background: var(--brand-50); color: var(--brand-700); }
.subnav a:hover { color: var(--brand); }
@media (min-width: 1024px) { .subnav { display: none; } }
@media (max-width: 1023px) {
  .section { scroll-margin-top: calc(var(--header-h) + 46px); }
  .faq details { scroll-margin-top: calc(var(--header-h) + 62px); }
}
.interview__themes-title { margin-top: 24px; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); }
.interview__themes { margin-top: 12px; }
.interview__price-detail { display: inline-block; margin-top: 4px; font-size: 0.9rem; color: var(--muted); }

/* Avis et témoignages */
.stars { color: #f2b705; letter-spacing: 2px; font-size: 1.05rem; white-space: nowrap; }
.stars__off { color: var(--line-2); }
.reviews { background: linear-gradient(180deg, #fffdf5, #fff); }
.reviews__avg { margin-top: 10px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--ink-2); }
.reviews__avg .stars { font-size: 1.3rem; }
.reviews__grid { display: grid; gap: 16px; }
@media (min-width: 720px) { .reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .reviews__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.review { margin: 0; display: flex; flex-direction: column; gap: 10px; padding: 22px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.review blockquote { margin: 0; color: var(--ink-2); line-height: 1.6; white-space: pre-line; }
.review figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 2px; font-size: 0.9rem; }
.review figcaption span { color: var(--muted); font-size: 0.84rem; }
.reviews__note { margin-top: 16px; text-align: center; color: var(--muted); font-size: 0.86rem; }
.star-pick { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.star-pick input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-pick label { font-size: 2.1rem; line-height: 1; color: var(--line-2); cursor: pointer; transition: color 0.15s ease; }
.star-pick input:checked ~ label, .star-pick label:hover, .star-pick label:hover ~ label { color: #f2b705; }
.star-pick input:focus-visible + label { outline: 3px solid #f2b705; outline-offset: 2px; border-radius: 6px; }
.review-form textarea { width: 100%; }
.co-series { display: flex; gap: 8px; align-items: flex-start; margin-top: 12px; padding: 10px 12px; border-radius: 10px; background: var(--brand-50); color: var(--brand-700); font-size: 0.92rem; }
.co-series .ico { flex: none; margin-top: 3px; }

/* Suivi de l'accompagnement (espace du participant) */
.coach-tabs { display: flex; gap: 6px; margin: 4px 0 16px; padding: 4px; border-radius: 12px; background: var(--brand-50); }
.coach-tab { flex: 1; padding: 9px 10px; border: 0; border-radius: 9px; background: transparent; font: inherit; font-weight: 700; font-size: 0.9rem; color: var(--brand-700); cursor: pointer; }
.coach-tab.is-active { background: #fff; box-shadow: 0 2px 8px -4px rgba(11, 18, 32, 0.25); color: var(--ink); }
.progress-card { padding: 16px; border-radius: 14px; border: 1px solid var(--brand-100); background: linear-gradient(135deg, var(--brand-50), #fff 70%); margin-bottom: 18px; }
.progress-card__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.progress { height: 10px; border-radius: 999px; background: #fff; border: 1px solid var(--brand-100); overflow: hidden; }
.progress i { display: block; height: 100%; background: var(--brand); border-radius: 999px; }
.progress-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin: 14px 0 0; }
.progress-stats div { text-align: center; }
.progress-stats dt { font-weight: 800; font-size: 1.15rem; color: var(--brand-700); }
.progress-stats dd { margin: 0; font-size: 0.74rem; color: var(--muted); }
.follow-card { padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 18px; background: #fff; }
.follow-card .coach-space__h { margin-top: 0; }
.follow-list { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; }
.follow-sess { padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.follow-sess.has-report { border-color: var(--brand-100); }
.follow-sess__head { display: flex; align-items: flex-start; gap: 10px; }
.follow-sess__n { flex: none; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--brand-50); color: var(--brand-700); font-weight: 800; font-size: 0.85rem; }
.follow-sess.is-past .follow-sess__n { background: var(--brand); color: #fff; }
.follow-sess__head > div { flex: 1; min-width: 0; }
.score { flex: none; padding: 3px 10px; border-radius: 999px; background: var(--brand); color: #fff; font-weight: 800; font-size: 0.85rem; }
.follow-sess__report { margin-top: 10px; padding: 10px 12px; border-radius: 10px; background: var(--brand-50); border-left: 3px solid var(--brand); }
.follow-sess__label { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-700); margin-bottom: 4px; }
.follow-sess__text { white-space: pre-line; color: var(--ink-2); font-size: 0.94rem; }
.goal-list { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 4px; }
.goal { display: flex; gap: 8px; align-items: flex-start; font-size: 0.92rem; cursor: pointer; }
.goal input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brand); flex: none; }
.goal input:checked + span { text-decoration: line-through; color: var(--muted); }
.app-list { list-style: none; margin: 0 0 10px; padding: 0; display: grid; gap: 8px; }
.app { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding: 10px 12px; border: 1px solid var(--line); border-left: 4px solid var(--line-2); border-radius: 10px; background: #fff; }
.app--interview, .app--offer { border-left-color: var(--brand); }
.app--rejected { border-left-color: var(--red); }
.app__acts { display: flex; align-items: center; gap: 8px; }
.app__acts select, .app-form input { min-height: 38px; padding: 0 10px; border: 1.5px solid var(--line-2); border-radius: 9px; font: inherit; font-size: 0.9rem; background: #fff; }
.app-form { display: grid; gap: 8px; margin-bottom: 8px; }
@media (min-width: 560px) { .app-form { grid-template-columns: 1.2fr 1fr auto auto; align-items: center; } }

/* Mon espace */
.space-page .container--narrow { max-width: 760px; }
.wizard--space { padding-top: 22px; }
.space-login { display: grid; gap: 16px; }
.space-card { display: grid; gap: 4px; padding: 20px; border-radius: 16px; border: 1px solid var(--line); background: #fff; }
.space-card--soft { background: var(--brand-50); border-color: var(--brand-100); }
.space-card__title { font-size: 1.15rem; margin-bottom: 4px; }
.space-bar { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 6px 12px; margin-bottom: 14px; padding: 10px 14px; border-radius: 12px; background: var(--brand-50); color: var(--brand-700); font-size: 0.9rem; }
.nav__cta a.btn--ghost[aria-current="page"] { border-color: var(--brand); color: var(--brand-700); }

.sess-count { display: inline-block; margin-left: 4px; padding: 1px 8px; border-radius: 999px; background: var(--brand-50); color: var(--brand-700); font-style: normal; font-size: 0.78rem; font-weight: 700; white-space: nowrap; }
.follow-sess__report + .small { margin-top: 10px; }

/* Billet de l'accompagnement : détail des paiements */
.pay-list { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 4px; }
.pay-list__item { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2px 10px; padding: 6px 10px; border-radius: 8px; background: #f4f6f3; font-size: 0.9rem; font-weight: 700; }
.pay-list__item span:last-child { font-weight: 600; color: var(--muted); }
.pay-list__item--paid { background: var(--brand-50); }
.pay-list__item--paid span:last-child { color: var(--brand-700); }
.pay-list__item--declared span:last-child { color: var(--amber); }
