/* ============================================================
   course.css — WIJHA formation detail pages
   (loads AFTER styles.css — reuses its :root tokens & .btn/.wrap)
   ============================================================ */

/* ---- nav ---- */
.cnav { position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklab, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line); }
.cnav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 12px; }
.cnav .brand { display: flex; align-items: center; gap: 11px; }
/* back arrow — visible on mobile only, top-left */
.cnav__back { display: none; align-items: center; justify-content: center; flex: none;
  width: 42px; height: 42px; border-radius: 13px; border: 1px solid var(--line); background: var(--card);
  color: var(--ink); transition: border-color .15s, color .15s, background .15s; -webkit-tap-highlight-color: transparent; }
.cnav__back:hover, .cnav__back:active { border-color: var(--pop); color: var(--pop); background: var(--pop-soft); }
@media (max-width: 600px) {
  .cnav__back { display: inline-flex; }
  .cnav .brand > span { display: none; }     /* keep the logo mark, drop the wordmark to make room */
  .cnav__inner { gap: 10px; }
}

/* ---- hero ---- */
.chero { position: relative; overflow: hidden; text-align: center;
  padding: clamp(46px, 8vh, 84px) 0 clamp(38px, 6vh, 60px); }
.chero::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 80% at 50% -25%, color-mix(in oklab, var(--pop) 18%, transparent), transparent 60%); }
.chero > * { position: relative; z-index: 1; }
.chero__level { display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--pop); background: var(--pop-soft); padding: 8px 16px; border-radius: 100px; }
.chero h1 { font-family: var(--serif); font-weight: 800; font-size: clamp(36px, 5.6vw, 66px);
  letter-spacing: -0.03em; line-height: 1.05; margin: 22px 0 0; }
.chero__tag { font-size: clamp(16px, 2.1vw, 20px); color: var(--ink-2); max-width: 40ch; margin: 18px auto 0; line-height: 1.55; }
.chero__cta { margin-top: clamp(26px, 4vh, 36px); }
.chero__meta { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 28px auto 0; max-width: 680px; }
.chero__meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600;
  color: var(--ink-2); background: var(--card); border: 1px solid var(--line); padding: 9px 15px; border-radius: 100px; }
.pricing__old { font-size: 26px; font-weight: 600; opacity: .55; text-decoration: line-through; margin-left: 6px; }

/* ---- HERO : carte "ticket" (offre + prix + session + CTA, tout-en-un) ---- */
.chero__ticket { max-width: 430px; margin: clamp(28px, 4vh, 40px) auto 0; text-align: left;
  background: var(--card); border: 1px solid var(--line); border-radius: 22px;
  box-shadow: 0 24px 60px -28px color-mix(in oklab, var(--pop) 40%, transparent), var(--shadow);
  overflow: hidden; }
.ticket__flag { display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: #fff; background: linear-gradient(100deg, var(--pop), color-mix(in oklab, var(--pop) 70%, #7c3aed));
  padding: 11px 16px; text-align: center; }
.ticket__body { padding: 24px clamp(20px, 4vw, 30px) 26px; }
.ticket__price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.ticket__now { font-family: var(--serif); font-weight: 800; font-size: clamp(42px, 7vw, 54px);
  letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.ticket__now small { font-size: 19px; color: var(--ink-2); font-weight: 700; margin-left: 5px; }
.ticket__was { font-size: 21px; font-weight: 600; color: var(--ink-3); text-decoration: line-through; }
.ticket__save { margin-left: auto; font-family: var(--mono); font-size: 12.5px; font-weight: 700;
  color: var(--pop); background: var(--pop-soft); padding: 6px 12px; border-radius: 100px; }
.ticket__rows { list-style: none; margin: 22px 0; padding: 18px 0; display: grid; gap: 13px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticket__rows li { display: flex; align-items: center; gap: 12px; }
.tk-ic { font-size: 17px; width: 22px; text-align: center; flex: none; }
.tk-k { font-size: 14.5px; color: var(--ink-2); }
.tk-v { margin-left: auto; font-family: var(--serif); font-weight: 700; font-size: 16px; color: var(--ink); letter-spacing: -0.01em; }
.tk-v.pop { color: var(--pop); }
.ticket__cta { width: 100%; justify-content: center; font-size: 16.5px; padding-block: 15px; }
.ticket__note { margin: 14px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--ink-3); text-align: center; }

/* ---- generic section ---- */
.csec { padding: clamp(46px, 7vh, 84px) 0; position: relative; }
.csec--tint { background: var(--paper-2); }
.csec__head { text-align: center; max-width: 700px; margin: 0 auto clamp(32px, 5vh, 50px); }
.csec__head .kicker { justify-content: center; }
.csec__badge { margin-bottom: 14px; }
.csec__head h1, .csec__head h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(27px, 3.6vw, 42px);
  letter-spacing: -0.025em; line-height: 1.1; margin: 14px 0 0; }
.csec__head p { color: var(--ink-2); font-size: 16.5px; margin: 12px auto 0; line-height: 1.6; max-width: 52ch; }

/* ---- who is it for ---- */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .who-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.who-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.who-card .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--pop-soft); color: var(--pop); font-size: 24px; margin-bottom: 16px; }
.who-card h3 { font-family: var(--serif); font-weight: 700; font-size: 19px; margin: 0 0 8px; letter-spacing: -0.01em; }
.who-card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* ---- curriculum modules ---- */
.modules { display: grid; gap: 16px; max-width: 840px; margin: 0 auto; }
.module { display: grid; grid-template-columns: auto 1fr; gap: 24px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: border-color .3s, box-shadow .45s var(--ease), transform .45s var(--ease); }
.module:hover { border-color: color-mix(in oklab, var(--pop) 30%, var(--line)); box-shadow: var(--shadow); transform: translateY(-3px); }
.module__num { font-family: var(--serif); font-weight: 800; font-size: 28px; color: var(--pop);
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; background: var(--pop-soft); }
.module h3 { font-family: var(--serif); font-weight: 700; font-size: 21px; margin: 2px 0 8px; letter-spacing: -0.015em; }
.module > div > p { color: var(--ink-2); font-size: 15px; line-height: 1.6; margin: 0 0 14px; }
.module ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.module li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink); line-height: 1.4; }
.module li::before { content: "✓"; color: var(--pop); font-weight: 800; flex: none; }
@media (max-width: 560px) { .module { grid-template-columns: 1fr; gap: 16px; padding: 24px; } .module__num { width: 48px; height: 48px; font-size: 23px; } }

/* ---- VALUE — "ce que tu sauras faire" (gros visuels) ---- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1000px; margin: 0 auto; }
@media (max-width: 820px) { .value-grid { grid-template-columns: 1fr; max-width: 460px; } }
.value-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in oklab, var(--pop) 30%, var(--line)); }
.value-card__img { aspect-ratio: 4 / 3; background: var(--paper-2); position: relative; }
.value-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.value-card__n { position: absolute; top: 12px; left: 12px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--pop); color: var(--pop-ink); font-family: var(--mono); font-size: 12px; font-weight: 700;
  display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.value-card__body { padding: 20px 22px; }
.value-card__body b { font-family: var(--serif); font-weight: 700; font-size: 19px; letter-spacing: -0.015em; display: block; }
.value-card__body span { color: var(--ink-2); font-size: 14px; line-height: 1.5; display: block; margin-top: 5px; }

/* ---- ROADMAP : workflow en images reliées (étapes + outils) ---- */
.croad { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: 4px 2px; max-width: 1060px; margin: 0 auto; }
.croad__step { width: 162px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 8px 4px; }
.croad__img { width: 100%; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; position: relative;
  background: var(--paper-2); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.croad__step:hover .croad__img { transform: translateY(-4px); box-shadow: var(--shadow); }
.croad__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.croad__n { position: absolute; top: 8px; left: 8px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--pop); color: var(--pop-ink); font-family: var(--mono); font-size: 11px; font-weight: 700;
  display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.croad__cap b { font-family: var(--serif); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; display: block; }
.croad__cap span { font-size: 12.5px; color: var(--ink-2); line-height: 1.4; display: block; margin-top: 3px; }
.croad__cap .tool { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--pop); margin-top: 6px; }
.croad__arrow { align-self: center; display: flex; align-items: center; color: var(--ink-3); flex: none; }
@media (max-width: 760px) {
  .croad { flex-direction: column; align-items: stretch; max-width: 400px; gap: 2px; }
  .croad__step { flex-direction: row; text-align: left; gap: 14px; align-items: center; width: auto; padding: 8px 6px; }
  .croad__img { width: 74px; flex: none; }
  .croad__cap { flex: 1; }
  .croad__arrow { transform: rotate(90deg); align-self: center; margin: 2px 0; }
}

/* ---- MIND MAP "Au programme" (image-based, hub + branches) ---- */
.mindmap { position: relative; max-width: 940px; margin: 0 auto; }
@media (min-width: 901px) { .mindmap { aspect-ratio: 16 / 10; } }
.mindmap__lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.mindmap__lines line { stroke: color-mix(in oklab, var(--pop) 45%, var(--line)); stroke-width: 2;
  vector-effect: non-scaling-stroke; stroke-dasharray: 3 6; stroke-linecap: round; }
.mm-hub { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  width: 172px; padding: 18px; border-radius: 22px; color: var(--pop-ink);
  background: linear-gradient(135deg, var(--pop), var(--pop-deep));
  box-shadow: 0 18px 50px -20px color-mix(in oklab, var(--pop) 60%, transparent); }
.mm-hub__img { width: 64px; height: 64px; border-radius: 16px; overflow: hidden; background: rgba(255,255,255,.18); }
.mm-hub__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mm-hub b { font-family: var(--serif); font-weight: 800; font-size: 16px; line-height: 1.12; }
.mm-node { position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%); z-index: 1;
  display: flex; align-items: center; gap: 12px; width: 200px; padding: 12px 14px;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s; }
.mm-node:hover { box-shadow: var(--shadow); border-color: color-mix(in oklab, var(--pop) 30%, var(--line)); transform: translate(-50%, -50%) scale(1.03); }
.mm-node__img { flex: none; width: 46px; height: 46px; border-radius: 12px; overflow: hidden; background: var(--pop-soft); }
.mm-node__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mm-node__t { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mm-node__t b { font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; }
.mm-node__t span { font-size: 12px; color: var(--ink-2); line-height: 1.3; }
.mm-node__n { position: absolute; top: -9px; left: -9px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--pop); color: var(--pop-ink); font-family: var(--mono); font-size: 10px; font-weight: 700;
  display: grid; place-items: center; }
/* mobile / tablet : pile verticale propre */
@media (max-width: 900px) {
  .mindmap { display: flex; flex-direction: column; gap: 12px; max-width: 460px; }
  .mindmap__lines { display: none; }
  .mm-hub, .mm-node { position: static; transform: none; width: auto; }
  .mm-hub { order: -1; flex-direction: row; justify-content: center; }
  .mm-hub__img { width: 46px; height: 46px; }
  .mm-node:hover { transform: none; }
}

/* ---- stack chips (centered) ---- */
.stack-center { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 700px; margin: 0 auto; }
.stack-center .chipx { font-size: 14.5px; font-weight: 600; padding: 10px 18px; border-radius: 100px;
  background: var(--card); border: 1px solid var(--line); color: var(--ink); }

/* ---- deliverables ---- */
.deliver { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 760px; margin: 0 auto; list-style: none; padding: 0; }
@media (max-width: 640px) { .deliver { grid-template-columns: 1fr; } }
.deliver li { display: flex; gap: 14px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; }
.deliver .ic { flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--pop), var(--pop-deep)); color: var(--pop-ink); }
.deliver b { display: block; font-size: 15.5px; }
.deliver span { color: var(--ink-2); font-size: 13.5px; }

/* ---- pricing / final CTA ---- */
.pricing__card { position: relative; overflow: hidden; text-align: center;
  border-radius: clamp(24px, 3vw, 40px); padding: clamp(36px, 5.5vw, 64px);
  background: linear-gradient(135deg, var(--pop), var(--pop-deep)); color: var(--pop-ink); }
.pricing__card .glow2 { position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.2); filter: blur(64px); top: -120px; right: -70px; pointer-events: none; }
.pricing__card > * { position: relative; z-index: 1; }
.pricing__kick { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.pricing__price { font-family: var(--serif); font-weight: 800; font-size: clamp(54px, 9vw, 84px); line-height: 1; letter-spacing: -0.03em; margin: 12px 0 0; }
.pricing__price small { font-size: 26px; font-weight: 700; opacity: .82; }
.pricing__meta { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: center; margin: 26px 0 32px; }
.pricing__meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; opacity: .96; }
.pricing__card .btn--paper { font-size: 16px; padding: 17px 34px; }
.pricing__note { display: block; margin-top: 16px; font-family: var(--mono); font-size: 12px; opacity: .82; }

/* ---- reservation form ---- */
.reserve { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; max-width: 980px; margin: 0 auto; }
@media (max-width: 820px) { .reserve { grid-template-columns: 1fr; max-width: 560px; } }
.reserve__summary { position: relative; overflow: hidden; color: var(--pop-ink);
  border-radius: clamp(20px, 3vw, 28px); padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(135deg, var(--pop), var(--pop-deep)); display: flex; flex-direction: column; }
.reserve__summary .glow2 { position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.2); filter: blur(60px); top: -100px; right: -60px; pointer-events: none; }
.reserve__summary > * { position: relative; z-index: 1; }
.reserve__summary .pricing__kick { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.reserve__summary .pricing__price { font-family: var(--serif); font-weight: 800; font-size: clamp(46px, 7vw, 64px); line-height: 1; letter-spacing: -0.03em; margin: 10px 0 0; }
.reserve__summary .pricing__price small { font-size: 22px; font-weight: 700; opacity: .82; }
.reserve__summary .pricing__old { opacity: 1; font-weight: 600; color: color-mix(in oklab, #fff 80%, transparent);
  text-decoration-color: #ff9aae; text-decoration-thickness: 2px; text-underline-offset: 1px; }
.reserve__summary .pricing__save { display: inline-block; margin-left: 8px; vertical-align: middle;
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .02em; color: #fff; white-space: nowrap;
  background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .34); border-radius: 999px; padding: 4px 10px; }
/* lignes session (date / heure / durée / places) — texte clair sur la carte bleue */
.reserve__rows { list-style: none; padding: 18px 0; margin: 22px 0 0; display: grid; gap: 12px;
  border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.reserve__rows li { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 14.5px; }
.reserve__rows li span { opacity: .9; }
.reserve__rows li b { font-family: var(--serif); font-weight: 700; font-size: 15.5px; }
.reserve__meta { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.reserve__meta li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.reserve__meta li::before { content: "✓"; font-weight: 800; opacity: .9; }
.reserve__re { margin: auto 0 0; padding-top: 22px; font-family: var(--mono); font-size: 12px; opacity: .85; line-height: 1.5; }

.reserve__form { background: var(--card); border: 1px solid var(--line); border-radius: clamp(20px, 3vw, 28px); padding: clamp(28px, 4vw, 42px); }
/* bandeau « moyens de paiement » en haut du formulaire */
.pay-methods { margin: 0 0 22px; padding: 0 0 20px; border-bottom: 1px solid var(--line); }
.pay-methods__label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 11px; }
.pay-methods__logos { display: flex; flex-wrap: wrap; gap: 10px; }
.pay-logo { display: inline-flex; align-items: center; justify-content: center; height: 52px; min-width: 82px; padding: 0 16px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); }
.pay-logo img { height: 30px; width: auto; display: block; }
.reserve__form h3 { font-family: var(--serif); font-weight: 700; font-size: 24px; margin: 0; letter-spacing: -0.02em; }
.reserve__sub { color: var(--ink-2); font-size: 14.5px; margin: 8px 0 24px; line-height: 1.5; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input { width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 15px; transition: border-color .2s, box-shadow .2s; }
.field input::placeholder { color: var(--ink-3); }
.field input:focus { outline: none; border-color: var(--pop); box-shadow: 0 0 0 3px color-mix(in oklab, var(--pop) 18%, transparent); }
.reserve__form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.reserve__note { display: block; text-align: center; margin-top: 12px; font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.reserve__ok { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 12px; text-align: center; font-weight: 600; font-size: 14px;
  background: color-mix(in oklab, var(--pop) 12%, var(--card)); color: var(--pop); border: 1px solid color-mix(in oklab, var(--pop) 30%, var(--line)); }
.reserve__ok.is-err { background: color-mix(in oklab, #c0392b 12%, var(--card)); color: #c0392b; border-color: color-mix(in oklab, #c0392b 32%, var(--line)); }
.reserve__ok a { color: inherit; font-weight: 800; text-decoration: underline; }
/* honeypot anti-spam : caché aux humains, visible pour les bots */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---- popup de confirmation de réservation ---- */
.rmodal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; }
.rmodal__scrim { position: absolute; inset: 0; background: color-mix(in oklab, var(--ink) 62%, transparent);
  opacity: 0; transition: opacity .25s var(--ease); }
.rmodal.in .rmodal__scrim { opacity: 1; }
.rmodal__card { position: relative; z-index: 1; width: min(420px, 100%); text-align: center;
  background: var(--card); border: 1px solid var(--line); border-radius: clamp(20px, 3vw, 28px);
  padding: 40px 32px 32px; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(16px) scale(.96); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.rmodal.in .rmodal__card { opacity: 1; transform: none; }
.rmodal__check { width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  color: var(--pop); background: color-mix(in oklab, var(--pop) 14%, var(--card)); }
.rmodal__title { font-family: var(--serif); font-weight: 800; font-size: clamp(22px, 4vw, 27px);
  letter-spacing: -0.02em; margin: 0 0 10px; color: var(--ink); }
.rmodal__msg { color: var(--ink-2); font-size: 15.5px; line-height: 1.55; margin: 0 0 26px; }
.rmodal__ok { width: 100%; justify-content: center; }
.rmodal__close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: none; border-radius: 50%;
  background: color-mix(in oklab, var(--ink) 6%, transparent); color: var(--ink-2); font-size: 22px; line-height: 1;
  display: grid; place-items: center; transition: background .2s, color .2s; }
.rmodal__close:hover { background: color-mix(in oklab, var(--ink) 12%, transparent); color: var(--ink); }
@media (prefers-reduced-motion: reduce) { .rmodal__scrim, .rmodal__card { transition: none; } }

/* ---- bloc paiement (étape de confirmation, anti no-show) ---- */
.rmodal__extra:empty { display: none; }
.rpay { text-align: left; background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 16px 16px 14px; margin: 0 0 20px; }
.rpay__amt { font-size: 14px; color: var(--ink-2); margin: 0 0 12px; }
.rpay__amt b { font-family: var(--serif); font-weight: 800; font-size: 20px; color: var(--ink); letter-spacing: -0.01em; }
.rpay__methods { display: grid; gap: 8px; }
.rpay__m { display: flex; align-items: center; justify-content: center; gap: 8px; text-align: center;
  font-weight: 700; font-size: 14.5px; padding: 12px 14px; border-radius: 11px; text-decoration: none;
  background: var(--pop); color: #fff; transition: filter .15s; }
.rpay__m:hover { filter: brightness(1.07); }
.rpay__m--info { background: var(--card); color: var(--ink); border: 1px solid var(--line); font-weight: 600; justify-content: space-between; }
.rpay__m--info b { color: var(--pop); font-family: var(--mono); }
.rpay__soon { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.rpay__note { margin: 12px 0 0; font-size: 12.5px; color: var(--ink-3); line-height: 1.45; }

/* bloc paiement EN HAUT du formulaire (avant l'envoi) — clair, sections + copie */
.paybox { margin: 0 0 22px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper-2); }
.paybox__top { font-size: 14px; color: var(--ink-2); }
.paybox__top b { font-family: var(--serif); font-weight: 800; color: var(--pop); font-size: 18px; margin-left: 5px; }
.paymethod { margin-top: 16px; }
.paymethod__head { display: flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 9px; }
.paymethod__ic { font-size: 14px; }
.paymethod__tag { font-family: var(--sans); font-size: 10px; font-weight: 700; text-transform: none; letter-spacing: .01em;
  color: var(--pop); background: var(--pop-soft); border-radius: 999px; padding: 2px 8px; }
.paymethod__benef { font-size: 12.5px; color: var(--ink-3); margin: -2px 0 9px; }
.paymethod__benef b { color: var(--ink-2); font-weight: 700; }
.payrow { display: block; width: 100%; text-align: left; background: var(--card); border: 1px solid var(--line);
  border-radius: 11px; padding: 10px 13px; cursor: pointer; font-family: inherit; transition: border-color .15s, background .15s; }
.payrow:hover { border-color: var(--pop); background: var(--pop-soft); }
.payrow:active { transform: scale(.995); }
.payrow + .payrow { margin-top: 7px; }
.payrow__line { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 3px; }
.payrow__name { font-size: 11.5px; font-weight: 700; color: var(--ink-2); }
.payrow__copy { display: inline-flex; align-items: center; gap: 4px; flex: none; font-family: var(--mono);
  font-size: 10.5px; font-weight: 700; color: var(--pop); letter-spacing: .03em; }
.payrow.copied { border-color: #16a34a; background: color-mix(in oklab, #16a34a 7%, var(--card)); }
.payrow.copied .payrow__copy { color: #16a34a; }
.payrow__val { display: block; font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--ink);
  letter-spacing: .02em; word-break: break-all; }
.paybox__hint { display: block; margin: 14px 0 0; font-size: 12px; color: var(--ink-3); line-height: 1.5; }

/* ---- FAQ (no-JS) ---- */
.cfaq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.cfaq details { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.cfaq summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 16.5px;
  display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.cfaq summary::-webkit-details-marker { display: none; }
.cfaq summary::after { content: "+"; font-size: 22px; color: var(--pop); flex: none; }
.cfaq details[open] summary::after { content: "–"; }
.cfaq details p { margin: 0; padding: 0 24px 22px; color: var(--ink-2); line-height: 1.65; font-size: 15px; }

/* ---- footer ---- */
.cfoot { border-top: 1px solid var(--line); padding: 44px 0; text-align: center; }
.cfoot .brand { display: inline-flex; align-items: center; gap: 11px; justify-content: center; margin-bottom: 14px; }
.cfoot p { color: var(--ink-3); font-size: 14px; margin: 0; }
.cfoot__social { display: flex; justify-content: center; gap: 18px; margin: 12px 0 4px; }
.cfoot__social a { font-family: var(--mono); font-size: 12.5px; font-weight: 600; color: var(--pop); text-decoration: none; }
.cfoot__social a:hover { text-decoration: underline; }
.cback { display: inline-block; margin-top: 14px; color: var(--pop); font-weight: 600; font-size: 14.5px; }
.cback:hover { text-decoration: underline; }

/* mobile */
@media (max-width: 700px) {
  .chero__buy { gap: 14px; }
  .pricing__meta { gap: 10px 16px; }
}
/* ============================================================
   CSTEPS — parcours détaillé (chaque étape = sa propre image + détails)
   ============================================================ */
.csteps { display: grid; gap: clamp(16px, 2.6vw, 26px); max-width: 940px; margin: 0 auto; }
.cstep { display: grid; grid-template-columns: minmax(0, 340px) 1fr; gap: clamp(18px, 3vw, 36px); align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(14px, 2vw, 20px); box-shadow: var(--shadow-sm);
  transition: border-color .3s, box-shadow .4s var(--ease), transform .4s var(--ease); }
.cstep:hover { border-color: color-mix(in oklab, var(--pop) 30%, var(--line)); box-shadow: var(--shadow); transform: translateY(-3px); }
@media (max-width: 720px) { .cstep { grid-template-columns: 1fr; } }
@media (min-width: 721px) { .cstep:nth-child(even) .cstep__media { order: 2; } }
.cstep__media { position: relative; }
.cstep__n { position: absolute; top: 12px; left: 12px; z-index: 3; width: 36px; height: 36px; border-radius: 50%;
  background: var(--pop); color: #fff; font-family: var(--serif); font-weight: 800; font-size: 17px;
  display: grid; place-items: center; box-shadow: var(--shadow-sm); }
/* galerie d'images de l'étape (1 à 3 visuels, chacun avec son libellé) */
.cstep__shots { display: grid; gap: 8px; }
.cstep__shots--1 { grid-template-columns: 1fr; }
.cstep__shots--2 { grid-template-columns: repeat(2, 1fr); }
.cstep__shots--3 { grid-template-columns: repeat(2, 1fr); }
.cstep__shots--3 .shot:first-child { grid-column: 1 / -1; }
.shot { margin: 0; }
.shot__img { position: relative; display: block; aspect-ratio: 1 / 1; border-radius: 13px; overflow: hidden;
  background: var(--paper-2); border: 1px solid var(--line); }
.cstep__shots--1 .shot__img { aspect-ratio: 4 / 3; }
.cstep__shots--3 .shot:first-child .shot__img { aspect-ratio: 16 / 9; }
.shot__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.shot figcaption { font-family: var(--mono); font-size: 10.5px; letter-spacing: .02em; color: var(--ink-3); text-align: center; margin-top: 6px; }
.cstep__body { padding: 6px clamp(6px, 1.4vw, 16px) 10px; }
.cstep__tool { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--pop); background: var(--pop-soft); padding: 5px 11px; border-radius: 100px; }
.cstep__body h3 { font-family: var(--serif); font-weight: 800; font-size: clamp(20px, 2.6vw, 26px); letter-spacing: -0.02em; margin: 13px 0 8px; }
.cstep__body > p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; margin: 0 0 15px; }
.cstep__points { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.cstep__points li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); line-height: 1.45; }
.cstep__points li::before { content: "✓"; color: var(--pop); font-weight: 800; flex: none; }

/* ---- pages légales ---- */
.legal h3 { font-family: var(--serif); font-weight: 700; font-size: 18px; margin: 26px 0 8px; letter-spacing: -0.01em; color: var(--ink); }
.legal p, .legal li { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; }
.legal ul { margin: 4px 0 8px; padding-left: 20px; display: grid; gap: 7px; }
.legal a { color: var(--pop); }

/* ---- « après ta réservation » + réassurance ---- */
.reserve__after { margin: 0 0 18px; padding: 16px 16px 14px; display: grid; gap: 9px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; }
.reserve__after-t { font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 2px; }
.reserve__after-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink); line-height: 1.45; }
.reserve__after-row b { font-family: var(--mono); color: var(--pop); flex: none; }
.reserve__guarantee { display: flex; align-items: center; gap: 8px; margin: 12px 0 0; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.reserve__guarantee span { color: var(--pop); }
.reserve__consent { display: block; margin-top: 12px; font-size: 11.5px; color: var(--ink-3); line-height: 1.5; text-align: center; }
.reserve__consent a { color: var(--ink-2); text-decoration: underline; }
.cfoot__legal { margin-top: 14px; font-size: 12.5px; }
.cfoot__legal a { color: var(--ink-3); }
.cfoot__legal a:hover { color: var(--pop); }

/* ---- champ d'upload du reçu de paiement (zone propre) ---- */
.field .opt { color: var(--ink-3); font-weight: 400; }
.field__hint { display: block; margin-top: 7px; font-size: 12px; color: var(--ink-3); line-height: 1.4; }
.field .filebox { position: relative; display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 15px; border: 1.5px dashed var(--line); border-radius: 12px;
  background: var(--paper); color: var(--ink-2); font-size: 14px; font-weight: 500; cursor: pointer;
  text-align: center; margin: 0; transition: border-color .15s, background .15s, color .15s;
  -webkit-tap-highlight-color: transparent; }
.field .filebox:hover { border-color: var(--pop); color: var(--pop); }
.field .filebox.has { border-style: solid; border-color: color-mix(in oklab, var(--pop) 40%, var(--line));
  color: var(--ink); background: var(--pop-soft); }
.field .filebox input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
