/* =========================================================
   ABRACADABIA — Nouveau parcours commercial
   Completer assets/style.css (meme palette, meme esprit)
   Couvre : offre d'entree 4,99 €, transparence 19,99 €/mois,
            Mon Atelier, consultation experte, tunnel mobile-first.
   Approche mobile-first : 1 colonne par defaut, le multi-colonnes
   vit dans les @media (min-width: 768px).
   ========================================================= */

/* ---------------------------------------------------------
   1. HERO "QUE VOULEZ-VOUS CREER ?"
   --------------------------------------------------------- */
.hero-q {
  position: relative;
  padding: 96px 0 56px;
  overflow: hidden;
}
.hero-q::before {
  content: '';
  position: absolute;
  top: -220px; left: 50%;
  width: 620px; height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(108, 99, 255, .30), transparent 68%);
  pointer-events: none;
}
.hero-q .wrap { position: relative; z-index: 1; }

.hero-q h1 {
  font-size: clamp(2.2rem, 8.4vw, 4.6rem);
  margin-bottom: 1.1rem;
  letter-spacing: -.01em;
}
.hero-q h1 em {
  font-style: normal;
  background: linear-gradient(96deg, #6c63ff, #3cbeff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-q .hq-texte {
  font-size: 1.03rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 1.6rem;
}

/* Les 5 points de comprehension en 5 secondes */
.hq-points {
  display: grid;
  gap: 10px;
  margin: 0 0 1.8rem;
}
.hq-point {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .92rem;
  color: var(--ivory);
}
.hq-point .hq-ico {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  border: 1px solid rgba(108, 99, 255, .55);
  color: var(--gold);
  font-size: .62rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.hq-point strong { font-weight: 600; }

.hq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

/* Rangee de boutons reutilisable : jamais collee, empilee sur mobile */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.btn-row > .btn,
.btn-row > .btn-pro,
.btn-row > .btn-ghost-pro { flex: 1 1 auto; }
@media (max-width: 520px) {
  .hq-actions,
  .btn-row { display: grid; grid-template-columns: 1fr; }
  .hq-actions > .btn,
  .hq-actions > .btn-pro,
  .hq-actions > .btn-ghost-pro,
  .btn-row > .btn,
  .btn-row > .btn-pro,
  .btn-row > .btn-ghost-pro { width: 100%; }
}

/* ---------------------------------------------------------
   2. BOUTONS DU PARCOURS (fins, rectangulaires)
   --------------------------------------------------------- */
.btn-pro,
.btn-ghost-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 8px 18px;
  border-radius: 7px;
  font-family: var(--sans);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s, border-color .35s, color .35s;
}
.btn-pro {
  background: linear-gradient(96deg, #6c63ff, #3cbeff);
  color: #0b0b14;
  box-shadow: 0 4px 12px rgba(108, 99, 255, .28);
}
.btn-pro:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(108, 99, 255, .38); }
.btn-ghost-pro {
  background: transparent;
  border-color: var(--line);
  color: var(--ivory);
}
.btn-ghost-pro:hover { border-color: rgba(108, 99, 255, .6); color: var(--gold-soft); }
.btn-pro.large, .btn-ghost-pro.large { padding: 11px 24px; font-size: .95rem; }
.btn-pro[disabled], .btn-ghost-pro[disabled] { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------------------------------------------------------
   3. BLOC TRANSPARENCE 4,99 € → 19,99 €/mois
   Informe clairement AVANT paiement. Aucun dark pattern.
   --------------------------------------------------------- */
.offer-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ink-2);
  padding: 22px 20px;
  margin: 0 0 1.6rem;
}
.offer-card .oc-head {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  flex-wrap: wrap;
  margin-bottom: .9rem;
}
.offer-card .oc-price {
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1;
  color: var(--ivory);
}
.offer-card .oc-price small { font-size: .95rem; color: var(--muted); font-family: var(--sans); }
.offer-card .oc-label {
  font-size: .66rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
}
.offer-card .oc-text { font-size: .92rem; color: var(--muted); margin-bottom: 1rem; }

/* Le passage 4,99 € -> 19,99 €/mois : lisible, encadre, jamais cache */
.offer-timeline {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 1rem;
}
.offer-step {
  padding: 14px 16px;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}
.offer-step:last-child { border-bottom: 0; }
.offer-step .os-when {
  font-size: .64rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .35rem;
}
.offer-step .os-what { font-size: .95rem; color: var(--ivory); }
.offer-step .os-what strong { font-weight: 600; }
.offer-step .os-note { font-size: .8rem; color: var(--muted-2); margin-top: .25rem; display: block; }
.offer-step.is-now { background: var(--ink-3); }

/* Bandeau de transparence compact (recap achat) */
.transparence-box {
  border: 1px solid rgba(108, 99, 255, .42);
  background: rgba(108, 99, 255, .09);
  border-radius: 12px;
  padding: 15px 17px;
  font-size: .88rem;
  color: var(--ivory);
  margin: 0 0 1.2rem;
}
.transparence-box .tb-titre {
  font-weight: 600;
  display: block;
  margin-bottom: .45rem;
  color: var(--gold-soft);
}
.transparence-box ul { display: grid; gap: .35rem; }
.transparence-box li { position: relative; padding-left: 1.1rem; color: var(--muted); font-size: .86rem; }
.transparence-box li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }

/* Consentement explicite */
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.consent-row input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px; height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}
.consent-row label { font-size: .84rem; color: var(--muted); line-height: 1.55; }
.consent-row strong { color: var(--ivory); font-weight: 600; }

/* ---------------------------------------------------------
   4. TUNNEL — etapes du parcours
   --------------------------------------------------------- */
.steps-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 1.6rem;
  padding: 0;
}
.step-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  color: var(--muted-2);
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ink-2);
}
.step-chip .sc-n {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--line);
  color: var(--muted);
  font-size: .64rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-chip.is-active { border-color: rgba(108, 99, 255, .6); color: var(--ivory); }
.step-chip.is-active .sc-n { background: linear-gradient(96deg, #6c63ff, #3cbeff); color: #0b0b14; }
.step-chip.is-done { color: var(--gold-soft); }
.step-chip.is-done .sc-n { background: rgba(16, 185, 129, .2); color: #10b981; }

/* ---------------------------------------------------------
   5. CHOIX DU BESOIN (visiteur -> besoin -> prestation)
   --------------------------------------------------------- */
.besoin-grid {
  display: grid;
  gap: 12px;
}
.besoin-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  text-align: left;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink-2);
  color: var(--ivory);
  transition: border-color .35s, background .35s, transform .35s var(--ease);
}
.besoin-item:hover { border-color: rgba(108, 99, 255, .55); transform: translateY(-3px); }
.besoin-item.is-on {
  border-color: var(--gold);
  background: rgba(108, 99, 255, .12);
}
.besoin-item .bi-ico {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(108, 99, 255, .16);
  color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.besoin-item .bi-nom { font-weight: 600; font-size: .95rem; display: block; }
.besoin-item .bi-desc { font-size: .8rem; color: var(--muted-2); }

/* ---------------------------------------------------------
   6. ZONE DE DEPOT (upload / texte)
   --------------------------------------------------------- */
.depot-zone {
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: var(--ink-2);
  padding: 20px;
  text-align: center;
  transition: border-color .35s, background .35s;
  cursor: pointer;
}
.depot-zone:hover, .depot-zone.is-over {
  border-color: rgba(108, 99, 255, .6);
  background: rgba(108, 99, 255, .07);
}
.depot-zone .dz-ico { font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: .5rem; }
.depot-zone .dz-titre { font-weight: 600; font-size: .95rem; }
.depot-zone .dz-note { font-size: .78rem; color: var(--muted-2); margin-top: .3rem; }
.depot-liste { display: grid; gap: 8px; margin-top: 12px; }
.depot-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: .8rem;
  font-size: .82rem;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
}
.depot-item .di-nom { color: var(--ivory); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.depot-item .di-x { color: var(--danger); background: none; border: 0; font-size: .95rem; }

/* ---------------------------------------------------------
   7. FORMULAIRE COMPACT (mobile-first)
   --------------------------------------------------------- */
.form-compact { display: grid; gap: 14px; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .8rem; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--sans);
  color: var(--ivory);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 9px;
  transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(108, 99, 255, .65);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field .f-note { font-size: .74rem; color: var(--muted-2); }
.field-2 { display: grid; gap: 14px; }

/* ---------------------------------------------------------
   8. MON ATELIER — espace personnel
   --------------------------------------------------------- */
.atelier-head {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(108, 99, 255, .14), transparent 62%), var(--ink-2);
  padding: 22px 20px;
  margin-bottom: 20px;
}
.atelier-head .ah-eyebrow {
  font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}
.atelier-head h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); margin: .5rem 0 .4rem; }
.atelier-head .ah-base { font-size: .9rem; color: var(--muted); }

/* Essai 48 h : compteur bien visible, avec echeance claire */
.essai-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem 1.2rem;
  border: 1px solid rgba(108, 99, 255, .42);
  background: rgba(108, 99, 255, .1);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.essai-band .eb-count {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ivory);
}
.essai-band .eb-txt { font-size: .86rem; color: var(--muted); flex: 1 1 200px; }
.essai-band .eb-txt strong { color: var(--ivory); }
.essai-band.is-expire { border-color: rgba(239, 95, 107, .5); background: rgba(239, 95, 107, .09); }

/* Onglets de l'atelier */
.atelier-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.atelier-tab {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
  transition: all .3s;
}
.atelier-tab:hover { border-color: rgba(108, 99, 255, .5); color: var(--ivory); }
.atelier-tab.is-on {
  background: linear-gradient(96deg, #6c63ff, #3cbeff);
  border-color: transparent;
  color: #0b0b14;
  font-weight: 600;
}

/* Cartes de l'atelier */
.atelier-grid { display: grid; gap: 14px; }
.atelier-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ink-2);
  padding: 18px;
}
.atelier-card .ac-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: .8rem; flex-wrap: wrap;
  margin-bottom: .7rem;
}
.atelier-card .ac-titre { font-family: var(--serif); font-size: 1.15rem; }
.atelier-card .ac-meta { font-size: .78rem; color: var(--muted-2); }

/* Badges d'etat */
.badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 6px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.badge.is-ok      { color: #10b981; border-color: rgba(16, 185, 129, .45); background: rgba(16, 185, 129, .1); }
.badge.is-wait    { color: #f0b429; border-color: rgba(240, 180, 41, .45); background: rgba(240, 180, 41, .1); }
.badge.is-info    { color: var(--gold-soft); border-color: rgba(108, 99, 255, .45); background: rgba(108, 99, 255, .1); }
.badge.is-off     { color: var(--danger); border-color: rgba(239, 95, 107, .45); background: rgba(239, 95, 107, .1); }

/* Compteurs */
.atelier-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.stat-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink-2);
  padding: 14px;
  text-align: center;
}
.stat-box .sb-n { font-family: var(--serif); font-size: 1.6rem; line-height: 1; color: var(--ivory); }
.stat-box .sb-l { font-size: .72rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .12em; margin-top: .3rem; }

/* Jalons du parcours */
.jalons { display: grid; gap: 8px; }
.jalon {
  display: flex; align-items: center; gap: .7rem;
  font-size: .86rem;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--ink);
  color: var(--muted-2);
}
.jalon .ja-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; flex: 0 0 auto;
}
.jalon.is-fait { color: var(--ivory); border-color: rgba(16, 185, 129, .4); }
.jalon.is-fait .ja-dot { background: rgba(16, 185, 129, .2); color: #10b981; border-color: transparent; }

/* CTA contextuels */
.cta-context {
  display: grid;
  gap: 9px;
}
.cta-context .btn-ghost-pro,
.cta-context .btn-pro { justify-content: flex-start; width: 100%; }

/* Documents & versions */
.doc-item {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--ink);
  padding: 14px;
  margin-top: 10px;
}
.doc-item .doc-titre { font-size: .95rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.doc-item .doc-date { font-size: .74rem; color: var(--muted-2); }
.doc-item .doc-extrait {
  font-size: .82rem; color: var(--muted);
  margin: .5rem 0 .7rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.doc-actions { display: flex; flex-wrap: wrap; gap: 7px; }
.doc-actions button {
  padding: 6px 12px; font-size: .77rem; font-weight: 500;
  border: 1px solid var(--line); border-radius: 6px;
  background: transparent; color: var(--muted);
  transition: all .3s;
}
.doc-actions button:hover { border-color: rgba(108, 99, 255, .6); color: var(--ivory); }
.versions-list { display: grid; gap: 6px; margin-top: 10px; }
.version-row {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  font-size: .78rem; color: var(--muted);
  padding: 7px 11px;
  border-left: 2px solid var(--line);
  background: var(--ink-2);
  border-radius: 0 7px 7px 0;
}
.version-row.is-current { border-left-color: var(--gold); color: var(--ivory); }

/* Upsell intelligent (non agressif) */
.upsell-band {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink-2);
  padding: 16px;
  margin-top: 16px;
}
.upsell-band .ub-titre { font-size: .92rem; font-weight: 600; margin-bottom: .3rem; }
.upsell-band .ub-note { font-size: .8rem; color: var(--muted-2); margin-bottom: .8rem; }
.upsell-list { display: grid; gap: 8px; }
.upsell-item {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--ink);
  transition: border-color .3s;
}
.upsell-item:hover { border-color: rgba(108, 99, 255, .5); }
.upsell-item .ui-nom { font-size: .87rem; color: var(--ivory); }
.upsell-item .ui-prix { font-size: .85rem; color: var(--gold-soft); font-weight: 600; white-space: nowrap; }

/* ---------------------------------------------------------
   9. CONSULTATION EXPERTE
   --------------------------------------------------------- */
.consult-grid { display: grid; gap: 14px; }
.consult-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ink-2);
  padding: 22px 20px;
  transition: border-color .35s, transform .35s var(--ease);
  cursor: pointer;
}
.consult-card:hover { transform: translateY(-4px); }
.consult-card.is-on { border-color: var(--gold); background: rgba(108, 99, 255, .1); }
.consult-card .cc-nom { font-family: var(--serif); font-size: 1.35rem; }
.consult-card .cc-duree {
  font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold);
}
.consult-card .cc-prix { font-family: var(--serif); font-size: 2rem; line-height: 1.1; margin: .6rem 0; }
.consult-card .cc-pour { font-size: .86rem; color: var(--muted); margin-bottom: .8rem; }
.consult-card .cc-points { display: grid; gap: .4rem; }
.consult-card .cc-points li { font-size: .82rem; color: var(--muted); padding-left: 1.1rem; position: relative; }
.consult-card .cc-points li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }

/* Selecteur de creneaux */
.creneaux-jours { display: grid; gap: 12px; }
.creneau-jour {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink-2);
  padding: 14px;
}
.creneau-jour .cj-date { font-size: .86rem; font-weight: 600; margin-bottom: .7rem; color: var(--ivory); }
.slots-wrap { display: flex; flex-wrap: wrap; gap: 7px; }
.slot-btn {
  padding: 6px 13px;
  font-size: .82rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  transition: all .28s;
}
.slot-btn:hover { border-color: rgba(108, 99, 255, .6); color: var(--ivory); }
.slot-btn.is-on {
  background: linear-gradient(96deg, #6c63ff, #3cbeff);
  border-color: transparent;
  color: #0b0b14;
  font-weight: 600;
}

/* Recapitulatif de consultation */
.recap-consult {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--ink);
  padding: 16px;
  font-size: .87rem;
}
.recap-consult .rc-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}
.recap-consult .rc-row:last-child { border-bottom: 0; }
.recap-consult .rc-row span:first-child { color: var(--muted-2); }
.recap-consult .rc-total { font-family: var(--serif); font-size: 1.2rem; color: var(--ivory); }

/* Bloc deduction devis > 300 € : mis en valeur */
.deduction-box {
  border: 1px solid rgba(16, 185, 129, .42);
  background: rgba(16, 185, 129, .09);
  border-radius: 12px;
  padding: 15px 17px;
  font-size: .88rem;
  color: var(--ivory);
  margin-top: 16px;
}
.deduction-box .db-titre {
  font-weight: 600; color: #10b981; display: block; margin-bottom: .35rem;
}
.deduction-box strong { color: #10b981; }

/* ---------------------------------------------------------
   10. SEPARATEUR VISUEL (hero -> projet ambitieux)
   --------------------------------------------------------- */
.sep-or {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 44px 0;
  color: var(--muted-2);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.sep-or::before, .sep-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* ---------------------------------------------------------
   11. BLOC PROJET AMBITIEUX (accueil)
   --------------------------------------------------------- */
.ambitieux {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(108, 99, 255, .13), transparent 60%), var(--ink-2);
  padding: 26px 20px;
}
.ambitieux h2 { font-size: clamp(1.4rem, 5.4vw, 2.1rem); }
.ambitieux .am-texte { font-size: .94rem; color: var(--muted); max-width: 640px; margin-bottom: 1.2rem; }
.ambitieux .am-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------------------------------------------------------
   12. ETATS VIDES / CHARGEMENT / MESSAGES
   --------------------------------------------------------- */
.etat-vide {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  color: var(--muted-2);
  font-size: .88rem;
}
.etat-vide .ev-titre { color: var(--ivory); font-weight: 600; display: block; margin-bottom: .3rem; }
.skeleton {
  border-radius: 10px;
  background: linear-gradient(90deg, var(--ink-2) 25%, var(--ink-3) 50%, var(--ink-2) 75%);
  background-size: 200% 100%;
  animation: sk 1.4s infinite;
  min-height: 76px;
}
@keyframes sk { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.alerte {
  border-radius: 10px;
  padding: 12px 15px;
  font-size: .87rem;
  border: 1px solid var(--line);
  background: var(--ink-2);
  margin-bottom: 14px;
}
.alerte.is-err { border-color: rgba(239, 95, 107, .5); background: rgba(239, 95, 107, .1); color: #ffd9dd; }
.alerte.is-ok  { border-color: rgba(16, 185, 129, .5); background: rgba(16, 185, 129, .1); color: #d6fff0; }
.alerte.is-info{ border-color: rgba(108, 99, 255, .5); background: rgba(108, 99, 255, .1); color: #e5e1ff; }

/* ---------------------------------------------------------
   14. EN-TETE — CTA permanent
   --------------------------------------------------------- */
.nav-cta {
  font-size: .82rem;
  padding: 7px 15px;
  white-space: nowrap;
}
/* Sur petit mobile on garde le CTA dans le menu deroulant, pas dans la barre */
@media (max-width: 599px) {
  .nav-cta { display: none; }
}
.mobile-cta-slot {
  color: var(--gold-soft) !important;
  font-weight: 600;
}

/* ---------------------------------------------------------
   15. PAGES DU PARCOURS — mise en page commune
   --------------------------------------------------------- */
.page-parcours {
  padding: 96px 0 64px;
  min-height: 70vh;
}
.page-parcours .pp-head { margin-bottom: 26px; }
.page-parcours .pp-head h1 { font-size: clamp(1.7rem, 6.4vw, 2.7rem); }
.page-parcours .pp-head .pp-sous {
  font-size: .95rem;
  color: var(--muted);
  max-width: 640px;
}
.bloc-parcours {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--ink-2);
  padding: 20px 18px;
  margin-bottom: 16px;
}
.bloc-parcours .bp-titre {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: .3rem;
}
.bloc-parcours .bp-note { font-size: .82rem; color: var(--muted-2); margin-bottom: 1rem; }
.deux-col { display: grid; gap: 18px; }
@media (min-width: 900px) {
  .deux-col { grid-template-columns: 1.45fr 1fr; align-items: start; }
  .deux-col.rev { grid-template-columns: 1fr 1.2fr; }
}

/* Colonne laterale collante (recap) */
.col-side { display: grid; gap: 14px; }
@media (min-width: 900px) {
  .col-side { position: sticky; top: 92px; }
}

/* ---------------------------------------------------------
   16. RESPONSIVE — le multi-colonnes a partir de 768px
   --------------------------------------------------------- */
@media (min-width: 768px) {
  .hero-q { padding: 130px 0 76px; }
  .hq-points { grid-template-columns: repeat(2, 1fr); }
  .offer-timeline { grid-template-columns: repeat(3, 1fr); }
  .offer-step { border-bottom: 0; border-right: 1px solid var(--line); }
  .offer-step:last-child { border-right: 0; }
  .besoin-grid { grid-template-columns: repeat(2, 1fr); }
  .atelier-stats { grid-template-columns: repeat(4, 1fr); }
  .atelier-grid { grid-template-columns: repeat(2, 1fr); }
  .consult-grid { grid-template-columns: repeat(2, 1fr); }
  .field-2 { grid-template-columns: repeat(2, 1fr); }
  .creneaux-jours { grid-template-columns: repeat(2, 1fr); }
  .atelier-head { padding: 30px 28px; }
  .ambitieux { padding: 40px 36px; }
}

@media (min-width: 1024px) {
  .atelier-stats { grid-template-columns: repeat(4, 1fr); }
  .doc-actions { gap: 8px; }
}

/* Tableaux de factures : scroll horizontal propre sur mobile */
.table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-fact {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: .84rem;
}
.table-fact th {
  text-align: left;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 500;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}
.table-fact td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.table-fact tr:last-child td { border-bottom: 0; }
.table-fact td strong { color: var(--ivory); font-weight: 600; }
