/* ===================================================================
   PULSE AI — Feuille de style
   Direction artistique : premium, minimaliste, structuré, calme.
   Palette : noir chaud profond / or champagne / ivoire.
   =================================================================== */

/* ---------- 1. Variables ---------- */
:root {
  /* Couleurs */
  --bg:            #0B0A09;
  --bg-soft:       #100E0B;
  --surface:       #16130E;
  --surface-2:     #1C1813;
  --border:        rgba(201, 168, 106, 0.16);
  --border-strong: rgba(201, 168, 106, 0.40);
  --gold:          #C9A86A;
  --gold-bright:   #E6D5AC;
  --gold-deep:     #9A7C44;
  --ivory:         #EFE9DB;
  --text:          #CDC6B6;
  --muted:         #918A7A;

  /* Typographies */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Mesures */
  --container: 1180px;
  --container-narrow: 820px;
  --radius: 14px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Lueur chaude et grain subtil */
  background-image:
    radial-gradient(900px 600px at 78% -5%, rgba(201, 168, 106, 0.10), transparent 70%),
    radial-gradient(700px 700px at 8% 12%, rgba(154, 124, 68, 0.07), transparent 70%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: rgba(201, 168, 106, 0.28); color: var(--ivory); }

/* ---------- 3. Typographie ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.8rem, 6.5vw, 5.3rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--gold-bright); font-weight: 600; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text);
  line-height: 1.75;
}

/* ---------- 4. Mise en page ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}

.section {
  padding-block: clamp(70px, 11vw, 140px);
  position: relative;
}

.section--tight { padding-block: clamp(54px, 8vw, 96px); }

.divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 0;
}

/* En-tête de section */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.eyebrow--line {
  position: relative;
  padding-bottom: 0.9rem;
}
.eyebrow--line::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 64px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow--line::after { left: 50%; transform: translateX(-50%); }
.section-head p { color: var(--muted); margin-top: 1.1rem; font-size: 1.08rem; }

/* ---------- 5. Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border-radius: 100px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  color: #1A150C;
  box-shadow: 0 10px 34px rgba(201, 168, 106, 0.18);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(201, 168, 106, 0.32);
}

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 106, 0.08);
  transform: translateY(-3px);
}

.btn--block { width: 100%; }
.btn--sm { padding: 0.85rem 1.6rem; font-size: 0.74rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2.4rem;
}
.btn-row.center { justify-content: center; }

/* Lien texte fléché */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.text-link:hover { gap: 0.85rem; color: var(--gold-bright); }
.text-link .arrow { transition: transform 0.3s var(--ease); }

/* ---------- 6. En-tête / navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 20px;
  transition: background-color 0.4s var(--ease), padding 0.4s var(--ease),
              border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 10, 9, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  padding-block: 13px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo__mark { width: 46px; height: 46px; flex-shrink: 0; object-fit: contain; }
.logo__text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ivory);
}
.logo__text .ai {
  font-size: 0.72em;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-left: 0.1em;
}

/* Liens de navigation */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__link {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text);
  position: relative;
  padding-block: 4px;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__link:hover,
.nav__link.active { color: var(--ivory); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta { flex-shrink: 0; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  width: 760px; height: 760px;
  top: -240px; right: -160px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.16), transparent 62%);
  pointer-events: none;
}
.hero__lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 106, 0.04) 1px, transparent 1px);
  background-size: 100% 130px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 940px;
  text-align: center;
  margin-inline: auto;
}
.hero h1 { margin-bottom: 1.7rem; }
.hero h1 .accent {
  font-style: italic;
  color: var(--gold);
}
.hero__lead {
  max-width: 620px;
  margin-inline: auto;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--text);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__scroll .dot {
  width: 1px; height: 46px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ---------- 8. Bandeau philosophie ---------- */
.philosophy {
  text-align: center;
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}
.philosophy__quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 500;
  line-height: 1.24;
  color: var(--ivory);
  max-width: 980px;
  margin-inline: auto;
}
.philosophy__quote em { color: var(--gold); font-style: italic; }
.philosophy__mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 1.6rem;
  opacity: 0.6;
}
.philosophy p.attribution {
  margin-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- 9. Grilles génériques ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(2, 1fr); }

/* ---------- 10. Méthode ---------- */
.method {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.method__steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.method__step {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.method__step:first-child { padding-top: 0; }
.method__step:last-child { border-bottom: none; padding-bottom: 0; }
.method__num {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  min-width: 46px;
}
.method__step h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.method__step p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* ---------- 11. Cartes parcours ---------- */
.parcours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.parcours-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 32px;
  background: linear-gradient(170deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease),
              box-shadow 0.5s var(--ease);
  overflow: hidden;
}
.parcours-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.parcours-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
}
.parcours-card:hover::before { opacity: 1; }
.parcours-card.featured { border-color: var(--border-strong); }

.parcours-card__tag {
  align-self: flex-start;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 13px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  margin-bottom: 26px;
}
.parcours-card__num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.parcours-card h3 {
  font-size: 1.85rem;
  margin-bottom: 0.7rem;
}
.parcours-card__desc {
  color: var(--muted);
  font-size: 0.97rem;
  margin-bottom: 1.6rem;
}
.parcours-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.9rem;
}
.parcours-card__list li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.parcours-card__list .check { color: var(--gold); flex-shrink: 0; }
.parcours-card__price {
  margin-top: auto;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 1.4rem;
}
.parcours-card__price .amount {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--ivory);
}
.parcours-card__price .unit { font-size: 0.85rem; color: var(--muted); }

/* Bandeau BootCamps (sur l'accueil) */
.bootcamp-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.bootcamp-row .bootcamp-intro h2 { margin-bottom: 1.1rem; }
.bootcamp-row .bootcamp-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 460px;
}
.bootcamp-row .parcours-card {
  max-width: 440px;
  width: 100%;
  justify-self: end;
}
@media (max-width: 900px) {
  .bootcamp-row { grid-template-columns: 1fr; }
  .bootcamp-row .parcours-card { justify-self: center; margin-inline: auto; }
  .bootcamp-row .bootcamp-intro p { max-width: none; }
}

/* ---------- 12. Pour qui ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.audience-item {
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.audience-item:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.audience-item__icon {
  color: var(--gold);
  margin-bottom: 14px;
}
.audience-item h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.audience-item p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- 13. Pourquoi / arguments ---------- */
.feature {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(170deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.feature:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.feature__icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--gold);
}
.feature h3 { font-size: 1.3rem; margin-bottom: 0.45rem; }
.feature p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ---------- 14. FAQ ---------- */
.faq { max-width: var(--container-narrow); margin-inline: auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  color: var(--ivory);
  transition: color 0.3s var(--ease);
}
.faq__q:hover { color: var(--gold-bright); }
.faq__icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.35s var(--ease);
}
.faq__icon::before { inset: 8px 0 8px 0; }
.faq__icon::after  { inset: 0 8px 0 8px; }
.faq__item.open .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq__a-inner {
  padding: 0 4px 28px;
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- 15. Bandeau d'appel ---------- */
.cta-band {
  position: relative;
  text-align: center;
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
  overflow: hidden;
}
.cta-band__glow {
  position: absolute;
  width: 620px; height: 620px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 168, 106, 0.12), transparent 65%);
  pointer-events: none;
}
.cta-band__inner { position: relative; max-width: 720px; margin-inline: auto; }
.cta-band h2 { margin-bottom: 1.2rem; }
.cta-band p { color: var(--muted); font-size: 1.1rem; }

/* ---------- 16. Pied de page ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
}
.footer__brand .logo { margin-bottom: 20px; }
.footer__tagline {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a {
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--gold-bright); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-block: 26px;
  border-top: 1px solid var(--border);
}
.footer__bottom p { font-size: 0.84rem; color: var(--muted); margin: 0; }
.footer__motto {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--gold);
}

/* ---------- 17. Page parcours (hero + contenu) ---------- */
.page-hero {
  position: relative;
  padding-top: 180px;
  padding-bottom: 70px;
  overflow: hidden;
}
.page-hero__glow {
  position: absolute;
  width: 680px; height: 680px;
  top: -260px; right: -120px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.13), transparent 64%);
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 880px; }
.page-hero h1 { margin-bottom: 1.4rem; }
.page-hero .lead { max-width: 640px; }

.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2rem;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold-deep); }

/* Page 404 */
.error-num {
  font-family: var(--serif);
  font-size: clamp(6rem, 17vw, 12rem);
  font-weight: 500;
  line-height: 0.9;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Carte prix sticky */
.offer {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}
.offer__panel {
  position: sticky;
  top: 96px;
  padding: 36px 32px;
  background: linear-gradient(170deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
}
.offer__panel .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 0.4rem;
}
.offer__panel .price .amount {
  font-family: var(--serif);
  font-size: 3.4rem;
  color: var(--ivory);
}
.offer__panel .price .unit { color: var(--muted); font-size: 0.9rem; }
.offer__panel .price-note {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--border);
}
.offer__panel .incl {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 1.8rem;
}
.offer__panel .incl li {
  display: flex;
  gap: 11px;
  font-size: 0.92rem;
  color: var(--text);
}
.offer__panel .incl .check { color: var(--gold); flex-shrink: 0; }
.offer__panel .btn { margin-bottom: 12px; }
.offer__panel .reassurance {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
}

/* Liste « ce que vous allez apprendre » */
.learn-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
}
.learn-list li {
  display: flex;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
}
.learn-list .check {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1rem;
}

/* Blocs numérotés */
.blocs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bloc {
  padding: 30px 26px;
  background: linear-gradient(170deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 2px solid var(--gold-deep);
  transition: transform 0.4s var(--ease), border-left-color 0.4s var(--ease);
}
.bloc:hover { transform: translateY(-6px); border-left-color: var(--gold); }
.bloc__num {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.bloc h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.bloc p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* Encadré NOTA BENE */
.nota {
  padding: 34px 36px;
  background: linear-gradient(160deg, rgba(201, 168, 106, 0.07), rgba(201,168,106,0.02));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
}
.nota__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.nota h3 { font-size: 1.5rem; margin-bottom: 0.9rem; }
.nota p { color: var(--text); }

/* Étapes process (accompagnement) */
.timeline {
  display: flex;
  flex-direction: column;
}
.timeline__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.timeline__dot {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--surface);
}
.timeline__line {
  width: 1px;
  flex: 1;
  background: linear-gradient(var(--border-strong), transparent);
}
.timeline__step:last-child .timeline__line { display: none; }
.timeline__body { padding-top: 8px; }
.timeline__body h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.timeline__body p { color: var(--muted); margin: 0; }

/* Liste de modules (page BootCamp) */
.module-list { display: flex; flex-direction: column; gap: 14px; }
.module-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 3vw, 30px);
  align-items: flex-start;
  padding: 26px 30px;
  background: linear-gradient(170deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold-deep);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), border-left-color 0.4s var(--ease);
}
.module-row:hover { transform: translateX(4px); border-left-color: var(--gold); }
.module-row.featured { border-left-color: var(--gold); background: linear-gradient(170deg, var(--surface-2), var(--bg-soft)); }
.module-row__num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  min-width: 50px;
}
.module-row__body h3 { font-size: 1.25rem; margin-bottom: 0.45rem; }
.module-row__body p { color: var(--muted); font-size: 0.95rem; margin: 0; }
@media (max-width: 760px) {
  .module-row { padding: 22px 24px; }
}

/* Bloc image (emplacement à personnaliser) */
.media-frame {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(520px 320px at 70% 20%, rgba(201,168,106,0.16), transparent 70%),
    linear-gradient(160deg, var(--surface-2), var(--bg));
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.media-frame__hint {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.8;
}
.media-frame__hint span { color: var(--gold); display: block; margin-bottom: 6px; }

/* Contenu légal */
.legal-content { max-width: var(--container-narrow); }
.legal-content h2 {
  font-size: 1.55rem;
  margin-top: 2.6rem;
  margin-bottom: 0.8rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--text); margin-bottom: 0.9rem; }
.legal-content .placeholder {
  color: var(--gold);
  font-style: italic;
}
.legal-content a { color: var(--gold-bright); }
.legal-content a:hover { text-decoration: underline; }
.legal-content ul {
  margin: 0.3rem 0 1.1rem;
  padding-left: 0.1rem;
}
.legal-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
  color: var(--text);
}
.legal-content ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.legal-content .legal-updated {
  margin-top: 2.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  font-size: 0.86rem;
  color: var(--muted);
}
.legal-content .legal-intro {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 2.4rem;
}

/* Prose générique */
.prose p { margin-bottom: 1.2rem; color: var(--text); }
.prose p:last-child { margin-bottom: 0; }

/* Formulaire de contact */
.contact-form { margin-top: 0.4rem; }
.field { margin-bottom: 1.4rem; }
.field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ivory);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.95rem 1.05rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field textarea { min-height: 158px; resize: vertical; line-height: 1.6; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface-2);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.8rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A86A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
}
.field select option { background: #16130E; color: var(--ivory); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.2rem 0 1.7rem;
}
.form-consent a { color: var(--gold); }
.form-feedback {
  padding: 30px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(160deg, rgba(201, 168, 106, 0.08), rgba(201, 168, 106, 0.02));
}
.form-feedback h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-feedback p { color: var(--muted); margin: 0; }
.form-feedback a { color: var(--gold-bright); }

/* Panneau « autres moyens de contact » */
.contact-aside h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
.contact-aside p { color: var(--muted); font-size: 0.96rem; }
.contact-aside .aside-sep {
  height: 1px;
  background: var(--border);
  margin: 1.8rem 0;
}
.contact-aside .aside-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-aside .aside-mail {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ivory);
  word-break: break-word;
}
.contact-aside .aside-mail:hover { color: var(--gold-bright); }

/* Activation coupon : indices de champ, encadré, étapes */
.field__hint { font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; }
.form-notice {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(201, 168, 106, 0.06);
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 1.9rem;
}
.form-notice strong { color: var(--gold-bright); }
.steps-mini { counter-reset: step; display: flex; flex-direction: column; gap: 18px; }
.steps-mini li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.steps-mini li::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
}
.offer__panel .offer-coupon {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}
.offer__panel .offer-coupon a { color: var(--gold-bright); font-weight: 600; }
.offer__panel .offer-coupon a:hover { text-decoration: underline; }

/* ---------- 18. Animations d'apparition ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .reveal[data-delay="1"] { transition-delay: 0.10s; }
.js .reveal[data-delay="2"] { transition-delay: 0.20s; }
.js .reveal[data-delay="3"] { transition-delay: 0.30s; }
.js .reveal[data-delay="4"] { transition-delay: 0.40s; }
.js .reveal[data-delay="5"] { transition-delay: 0.50s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- 19. Responsive ---------- */
@media (max-width: 960px) {
  .nav__menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 360px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 60px 44px;
    background: var(--bg-soft);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link { font-size: 1.1rem; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .nav__menu .btn { display: inline-flex; margin-top: 6px; }

  .method { grid-template-columns: 1fr; }
  .parcours-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .blocs-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .offer { grid-template-columns: 1fr; }
  .offer__panel { position: static; order: -1; }
  .grid--3 { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { padding-inline: 20px; }
  .grid--2, .grid--4, .blocs-grid, .audience-grid,
  .learn-list { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .btn-row .btn { width: 100%; }
  .hero { padding-top: 130px; }
  .hero__scroll { display: none; }
  .parcours-card, .feature { padding: 28px 24px; }
  .nota { padding: 26px 24px; }
}
