:root {
    --noir: #0A0A0A;
    --noir-soft: #161412;
    --creme: #FAF8F5;
    --creme-deep: #F2EEE7;
    --bronze: #8B6E4E;
    --bronze-deep: #6E5436;
    --bronze-soft: #B89878;
    --taupe: #6A6258;
    --stone: #C9C2B6;
    --divider: #E8E2D7;
    --radius: 24px;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; background: var(--noir); }
  body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--creme);
    color: var(--noir);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
  }
  ::selection { background: var(--bronze-soft); color: var(--noir); }
  .serif { font-family: 'Newsreader', Georgia, serif; }
  .container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
  .narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--bronze-deep);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .section-title {
    font-family: 'Newsreader', Georgia, serif;
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }
  .section-title em { font-style: italic; color: var(--bronze); }
  p { color: var(--noir); font-size: 17px; line-height: 1.75; margin-bottom: 20px; }
  p.muted { color: var(--taupe); }
  section { padding: 110px 0; position: relative; }
  section[id], header[id] { scroll-margin-top: 80px; }
  img, video { max-width: 100%; }

  /* ---------- Reveal on scroll (uniquement si JS actif) ---------- */
  .js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
  .js .reveal.in { opacity: 1; transform: translateY(0); }
  .js .reveal.d1 { transition-delay: 0.1s; }
  .js .reveal.d2 { transition-delay: 0.2s; }
  .js .reveal.d3 { transition-delay: 0.3s; }
  @media (prefers-reduced-motion: reduce) {
    .js .reveal { opacity: 1; transform: none; transition: none; }
    .testi-track { animation: none !important; }
    html { scroll-behavior: auto; }
  }

  /* ---------- Nav ---------- */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  }
  .nav.scrolled {
    background: rgba(250, 248, 245, 0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 var(--divider);
    padding: 14px 0;
  }
  .nav-inner { display: flex; justify-content: space-between; align-items: center; }
  .nav .brand {
    font-size: 13px;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: var(--creme);
    text-decoration: none;
    transition: color 0.35s ease;
  }
  .nav.scrolled .brand { color: var(--noir); }
  .nav-links { display: flex; gap: 30px; align-items: center; }
  .nav-links a {
    font-size: 13px;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: rgba(250,248,245,0.9);
    font-weight: 500;
    transition: color 0.25s ease;
  }
  .nav.scrolled .nav-links a { color: var(--taupe); }
  .nav-links a:hover { color: var(--bronze-soft); }
  .nav.scrolled .nav-links a:hover { color: var(--bronze); }
  .nav-cta {
    font-size: 12px !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase;
    background: var(--creme);
    color: var(--noir) !important;
    padding: 11px 22px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: all 0.25s ease !important;
  }
  .nav.scrolled .nav-cta { background: var(--noir); color: var(--creme) !important; }
  .nav-cta:hover { background: var(--bronze) !important; color: var(--creme) !important; }
  .nav-actions { display: flex; align-items: center; gap: 10px; }
  .nav-pill {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
  }
  .nav-pill.ghost { color: var(--creme); border: 1px solid rgba(250,248,245,0.5); }
  .nav-pill.solid { background: var(--creme); color: var(--noir); border: 1px solid var(--creme); }
  .nav.scrolled .nav-pill.ghost, .nav.menu-open .nav-pill.ghost { color: var(--noir); border-color: var(--stone); }
  .nav.scrolled .nav-pill.solid, .nav.menu-open .nav-pill.solid { background: var(--noir); color: var(--creme); border-color: var(--noir); }
  .nav-pill.ghost:hover { color: var(--bronze) !important; border-color: var(--bronze) !important; }
  .nav-pill.solid:hover { background: var(--bronze) !important; border-color: var(--bronze) !important; color: var(--creme) !important; }
  @media (max-width: 480px) {
    .nav-pill { padding: 9px 13px; font-size: 10.5px; letter-spacing: 0.08em; }
    .nav-actions { gap: 7px; }
    .nav .brand { font-size: 11px; letter-spacing: 0.16em; }
  }
  .nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: -10px;
    flex-direction: column;
    gap: 6px;
  }
  .nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--creme);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.35s ease;
  }
  .nav.scrolled .nav-burger span, .nav.menu-open .nav-burger span { background: var(--noir); }
  .nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  @media (max-width: 880px) {
    .nav-burger { display: flex; }
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: var(--creme);
      border-bottom: 1px solid var(--divider);
      box-shadow: 0 30px 50px -30px rgba(10,10,10,0.25);
      padding: 8px 28px 24px;
    }
    .nav.menu-open .nav-links { display: flex; }
    .nav.menu-open { background: var(--creme); box-shadow: 0 1px 0 var(--divider); }
    .nav.menu-open .brand { color: var(--noir); }
    .nav-links a {
      color: var(--taupe) !important;
      padding: 15px 0;
      font-size: 15px;
      border-bottom: 1px solid var(--divider);
    }
    .nav-links a:last-of-type { border-bottom: none; }
    .nav-links .nav-cta {
      background: var(--noir) !important;
      color: var(--creme) !important;
      text-align: center;
      margin-top: 14px;
      padding: 15px 22px;
      border-bottom: none;
    }
  }

  /* ---------- Hero (vidéo plein écran, layout Mindbloom) ---------- */
  .hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--creme);
    overflow: hidden;
    padding: 0;
    background: var(--noir);
  }
  .hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Léger zoom pour rogner le filigrane "KlingAI" du coin bas droit */
    transform: scale(1.22);
    transform-origin: center center;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.08) 35%, rgba(10,10,10,0.05) 55%, rgba(10,10,10,0.45) 100%);
    z-index: 1;
  }
  .hero .container { position: relative; z-index: 2; width: 100%; }
  .hero-center {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    padding: 120px 28px 0;
    margin: auto 0;
  }
  .hero-center .eyebrow { color: rgba(250,248,245,0.85); margin-bottom: 18px; }
  .hero h1 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: clamp(40px, 6.2vw, 82px);
    line-height: 1.05;
    font-weight: 300;
    letter-spacing: -0.015em;
    margin: 0 auto;
    max-width: 1000px;
    color: var(--creme);
    text-shadow: 0 2px 30px rgba(10,10,10,0.25);
  }
  .hero h1 em { font-style: italic; color: var(--bronze-soft); }
  .hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    padding-bottom: 56px;
  }
  .hero-bottom .left { max-width: 480px; }
  .hero .lead {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(250,248,245,0.9);
    margin-bottom: 28px;
  }
  .hero-stat-card {
    background: rgba(250,248,245,0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(250,248,245,0.25);
    border-radius: 18px;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 380px;
  }
  .hero-stat-card .num {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 1;
    white-space: nowrap;
  }
  .hero-stat-card .num .plus { color: var(--bronze-soft); }
  .hero-stat-card .label { font-size: 15px; line-height: 1.4; color: rgba(250,248,245,0.92); }
  @media (max-width: 820px) {
    .hero { height: auto; min-height: 100vh; min-height: 100svh; }
    .hero-center {
      position: static;
      transform: none;
      margin: auto 0;
      padding: 110px 28px 36px;
    }
    .hero h1 { font-size: clamp(34px, 9.4vw, 48px); }
    .hero-bottom { flex-direction: column; align-items: stretch; gap: 24px; padding-bottom: 36px; }
    .hero-bottom .left { max-width: none; }
    .hero-bottom .left .btn { width: 100%; justify-content: center; }
    .hero .lead { font-size: 16px; margin-bottom: 22px; }
    .hero-stat-card { max-width: none; padding: 20px 24px; }
    .hero-stat-card .num { font-size: 38px; }
    .hero-stat-card .label { font-size: 13.5px; }
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 18px 32px;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
  }
  .btn-light { background: var(--creme); color: var(--noir); }
  .btn-light:hover { background: var(--bronze); color: var(--creme); }
  .btn-dark { background: var(--noir); color: var(--creme); border-color: var(--noir); }
  .btn-dark:hover { background: var(--bronze); border-color: var(--bronze); }
  .btn-ghost-light { background: transparent; color: var(--creme); border-color: rgba(250,248,245,0.45); }
  .btn-ghost-light:hover { border-color: var(--creme); background: rgba(250,248,245,0.1); }
  .btn-ghost-dark { background: transparent; color: var(--noir); border-color: var(--stone); }
  .btn-ghost-dark:hover { border-color: var(--noir); }
  .btn .arrow { font-size: 16px; line-height: 1; transition: transform 0.25s ease; }
  .btn:hover .arrow { transform: translateX(4px); }

  .hero-stats {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
    border-top: 1px solid var(--divider);
    padding-top: 34px;
  }
  .hero-stat .num {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 1;
    color: var(--noir);
    margin-bottom: 8px;
  }
  .hero-stat .num span.plus { color: var(--bronze); }
  .hero-stat .label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 500;
  }

  /* ---------- Quote band ---------- */
  .quote-band { padding: 130px 0; text-align: center; background: var(--creme); }
  .quote-band .mark {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 80px;
    line-height: 0.4;
    color: var(--bronze-soft);
    display: block;
    margin-bottom: 28px;
  }
  .quote-band blockquote {
    font-family: 'Newsreader', Georgia, serif;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.25;
    font-weight: 300;
    font-style: italic;
    max-width: 880px;
    margin: 0 auto 26px;
  }
  .quote-band blockquote em { color: var(--bronze); }
  .quote-band .who {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 600;
  }

  /* ---------- Constat (sombre) ---------- */
  .constat { background: var(--noir); color: var(--creme); padding: 140px 0; }
  .constat .section-title { color: var(--creme); }
  .constat p { color: rgba(250,248,245,0.78); font-size: 19px; }
  .constat .accent { color: var(--bronze-soft); font-style: italic; font-family: 'Newsreader', Georgia, serif; font-size: 22px; }

  /* ---------- Méthode + piliers ---------- */
  #methode { background: var(--creme); }
  .pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 70px; }
  .pillar {
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    padding: 38px 30px;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
  }
  .pillar:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(139,110,78,0.35); }
  .pillar .num {
    font-family: 'Newsreader', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    color: var(--bronze);
    margin-bottom: 18px;
  }
  .pillar h3 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .pillar p { font-size: 14.5px; color: var(--taupe); margin: 0; line-height: 1.65; }
  @media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }

  /* ---------- 5 lois ---------- */
  .laws-section { background: var(--creme-deep); }
  .laws { margin-top: 50px; }
  .law {
    display: flex;
    gap: 30px;
    padding: 26px 0;
    border-bottom: 1px solid var(--divider);
    align-items: baseline;
  }
  .law:last-child { border-bottom: none; }
  .law .num {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 19px;
    color: var(--bronze);
    min-width: 40px;
    font-style: italic;
  }
  .law .text {
    font-family: 'Newsreader', Georgia, serif;
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 400;
    line-height: 1.35;
  }

  /* ---------- Pills "traverser" (sélecteur style Mindbloom) ---------- */
  .topics { text-align: center; background: var(--creme); }
  .topics-cloud { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 50px; max-width: 880px; margin-left: auto; margin-right: auto; }
  .topic-pill {
    font-size: 14px;
    font-weight: 500;
    padding: 14px 26px;
    border-radius: 100px;
    border: 1px solid var(--stone);
    color: var(--noir);
    background: transparent;
    transition: all 0.25s ease;
    cursor: default;
  }
  .topic-pill:hover { border-color: var(--bronze); color: var(--bronze-deep); }

  /* ---------- Programme ---------- */
  .programme { background: var(--noir); color: var(--creme); padding: 130px 0; }
  .programme .eyebrow { color: var(--bronze-soft); }
  .programme .section-title { color: var(--creme); }
  .programme .section-title em { color: var(--bronze-soft); }
  .programme p.muted { color: rgba(250,248,245,0.65); }
  .modules { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .module {
    background: var(--noir-soft);
    border: 1px solid rgba(250,248,245,0.1);
    border-radius: var(--radius);
    padding: 36px 30px;
    transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1);
  }
  .module:hover { border-color: var(--bronze-soft); transform: translateY(-5px); }
  .module .num {
    font-family: 'Newsreader', Georgia, serif;
    font-style: italic;
    font-size: 30px;
    color: var(--bronze-soft);
    margin-bottom: 18px;
  }
  .module .module-eyebrow {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(250,248,245,0.45);
    margin-bottom: 10px;
    font-weight: 600;
  }
  .module h3 { font-family: 'Newsreader', Georgia, serif; font-size: 23px; font-weight: 500; margin-bottom: 10px; color: var(--creme); }
  .module p { font-size: 14px; color: rgba(250,248,245,0.6); margin: 0; line-height: 1.65; }
  @media (max-width: 980px) { .modules { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px) { .modules { grid-template-columns: 1fr; } }

  .inclusions-bar {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 40px;
    padding: 30px 0 50px;
    border-bottom: 1px solid rgba(250,248,245,0.12);
  }
  .inclusion { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: rgba(250,248,245,0.8); }
  .inclusion .check {
    width: 24px; height: 24px;
    border: 1px solid var(--bronze-soft);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--bronze-soft);
    font-size: 11px;
    flex-shrink: 0;
  }
  .programme-cta { margin-top: 50px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
  .programme-cta .note { font-size: 13px; color: rgba(250,248,245,0.5); }

  /* ---------- 1-to-1 ---------- */
  .onetoone { background: var(--creme); }
  .onetoone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  @media (max-width: 880px) { .onetoone-grid { grid-template-columns: 1fr; gap: 40px; } }

  /* ---------- About ---------- */
  .about { background: var(--creme-deep); }
  .about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
  @media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 44px; } }
  .about-quote {
    font-family: 'Newsreader', Georgia, serif;
    font-size: clamp(24px, 3vw, 32px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    color: var(--noir);
    border-left: 2px solid var(--bronze);
    padding-left: 28px;
  }
  .about-quote em { color: var(--bronze); }
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 70px;
    padding-top: 56px;
    border-top: 1px solid var(--divider);
  }
  .stat .num {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 56px;
    color: var(--bronze);
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 300;
  }
  .stat .label-stat {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 600;
  }
  @media (max-width: 700px) { .stats { grid-template-columns: 1fr; gap: 30px; } }

  /* ---------- Témoignages : colonnes défilantes (21st.dev) ---------- */
  .testimonials { background: var(--creme); padding: 120px 0 100px; }
  .testimonials-header { max-width: 600px; margin: 0 auto 60px; text-align: center; }
  .testimonials-header .badge {
    display: inline-block;
    border: 1px solid var(--stone);
    padding: 7px 18px;
    border-radius: 12px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--taupe);
    margin-bottom: 24px;
  }
  .testi-columns {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-height: 760px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 22%, black 78%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 22%, black 78%, transparent);
  }
  .testi-col { width: 360px; flex-shrink: 0; }
  .testi-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    animation: scrollY var(--dur, 50s) linear infinite;
    will-change: transform;
  }
  .testi-col:hover .testi-track { animation-play-state: paused; }
  @keyframes scrollY { to { transform: translateY(-50%); } }
  .testi-card {
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: 28px;
    padding: 34px 30px;
    box-shadow: 0 18px 40px -28px rgba(139,110,78,0.28);
  }
  .testi-card .quote-mark {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 44px;
    line-height: 0.6;
    color: var(--bronze-soft);
    display: block;
    margin-bottom: 20px;
  }
  .testi-card .text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--noir);
    font-style: italic;
  }
  .testi-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--divider);
  }
  .testi-card .avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--creme-deep);
    border: 1px solid var(--divider);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Newsreader', Georgia, serif;
    font-size: 16px;
    color: var(--bronze);
    flex-shrink: 0;
  }
  .testi-card .name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .testi-card .city { font-size: 12px; color: var(--taupe); letter-spacing: 0.08em; }
  .col-2 { display: block; }
  .col-3 { display: block; }
  @media (max-width: 1140px) { .col-3 { display: none; } }
  @media (max-width: 768px) { .col-2 { display: none; } .testi-col { width: min(360px, 88vw); } }

  /* ---------- Suivre ---------- */
  .follow { background: var(--creme-deep); }
  .follow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; }
  .follow-card {
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-decoration: none;
    color: var(--noir);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
  }
  .follow-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(139,110,78,0.35); }
  .follow-card .icon {
    font-family: 'Newsreader', Georgia, serif;
    font-style: italic;
    font-size: 15px;
    letter-spacing: 0.08em;
    color: var(--bronze);
    margin-bottom: 22px;
  }
  .follow-card h3 { font-family: 'Newsreader', Georgia, serif; font-size: 26px; font-weight: 500; margin-bottom: 12px; }
  .follow-card p { font-size: 14.5px; color: var(--taupe); line-height: 1.65; margin-bottom: 28px; flex: 1; }
  .follow-card .link {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--noir);
    border-bottom: 1px solid var(--noir);
    align-self: flex-start;
    padding-bottom: 4px;
    transition: color 0.25s ease, border-color 0.25s ease;
  }
  .follow-card:hover .link { color: var(--bronze); border-color: var(--bronze); }
  @media (max-width: 880px) { .follow-grid { grid-template-columns: 1fr; } }

  /* ---------- Tarif ---------- */
  .pricing { background: var(--creme); text-align: center; }
  .price-card {
    max-width: 600px;
    margin: 60px auto 0;
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: 32px;
    padding: 64px 52px;
    box-shadow: 0 40px 80px -50px rgba(139,110,78,0.4);
    text-align: center;
  }
  .price-card .name {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .price-card .name em { font-style: italic; color: var(--bronze); }
  .price-card .subtitle {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
    font-weight: 600;
    margin-bottom: 40px;
  }
  .price-card .price {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 84px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 10px;
  }
  .price-card .price-note { font-size: 13px; color: var(--taupe); margin-bottom: 40px; }
  .price-card ul { list-style: none; text-align: left; margin-bottom: 44px; }
  .price-card li {
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--divider);
  }
  .price-card li:last-child { border-bottom: none; }
  .price-card li::before { content: "·"; color: var(--bronze); margin-right: 14px; font-weight: 700; }
  .pricing .guarantee { font-size: 13px; color: var(--taupe); margin-top: 26px; letter-spacing: 0.04em; }
  @media (max-width: 600px) { .price-card { padding: 44px 26px; } }

  /* ---------- FAQ ---------- */
  .faq { background: var(--creme); }
  .faq-list { margin-top: 50px; }
  .faq-item { border-bottom: 1px solid var(--divider); }
  .faq-item:first-child { border-top: 1px solid var(--divider); }
  .faq-q {
    display: block;
    width: 100%;
    list-style: none;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Newsreader', Georgia, serif;
    font-size: 21px;
    font-weight: 500;
    color: var(--noir);
    padding: 28px 50px 28px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q::marker { content: none; }
  .faq-q:hover { color: var(--bronze); }
  .faq-q::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Newsreader', Georgia, serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--bronze);
    transition: transform 0.3s ease;
  }
  details.faq-item[open] .faq-q::after { transform: translateY(-50%) rotate(45deg); }
  .faq-a { overflow: hidden; }
  .faq-a p { color: var(--taupe); font-size: 16px; padding-bottom: 28px; margin: 0; max-width: 640px; animation: faqOpen 0.4s cubic-bezier(0.16,1,0.3,1); }
  @keyframes faqOpen { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: reduce) { .faq-a p { animation: none; } }

  /* ---------- Newsletter / liste fondateurs ---------- */
  .newsletter { background: var(--creme-deep); }
  .newsletter-card {
    background: #fff;
    border: 1px solid var(--divider);
    border-radius: 32px;
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 880px) { .newsletter-card { grid-template-columns: 1fr; padding: 44px 30px; gap: 36px; } }
  .newsletter-form { display: flex; flex-direction: column; gap: 14px; }
  .newsletter-form input {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    padding: 17px 22px;
    border-radius: 100px;
    border: 1px solid var(--stone);
    background: var(--creme);
    color: var(--noir);
    outline: none;
    transition: border-color 0.25s ease;
  }
  .newsletter-form input:focus { border-color: var(--bronze); }
  .newsletter-form .fine { font-size: 12px; color: var(--taupe); text-align: center; margin-top: 4px; }

  /* ---------- Final CTA ---------- */
  .final-cta { background: var(--noir); color: var(--creme); padding: 150px 0; text-align: center; }
  .final-cta .quote {
    font-family: 'Newsreader', Georgia, serif;
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.15;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
  }
  .final-cta .quote em { color: var(--bronze-soft); }
  .final-cta .subline { font-size: 17px; color: rgba(250,248,245,0.7); margin-bottom: 50px; }

  /* ---------- Vues intégrées (Connexion / Commencer) ---------- */
  .view {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--creme);
  }
  .view.open { display: flex; animation: viewIn 0.4s cubic-bezier(0.16,1,0.3,1); }
  @keyframes viewIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
  @media (prefers-reduced-motion: reduce) { .view.open { animation: none; } }
  .view-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px 0;
  }
  .view-top .brand-dark {
    font-size: 13px;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: var(--noir);
    text-decoration: none;
  }
  .view-close {
    background: none;
    border: 1px solid var(--stone);
    border-radius: 100px;
    width: 42px; height: 42px;
    font-size: 17px;
    color: var(--noir);
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
  }
  .view-close:hover { border-color: var(--noir); }
  .view-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 28px 60px;
    width: 100%;
  }
  .view-body .inner { width: 100%; max-width: 560px; }
  .view h2 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: clamp(26px, 4.6vw, 38px);
    font-weight: 400;
    line-height: 1.22;
    margin-bottom: 50px;
  }
  .view h2 em { font-style: italic; color: var(--bronze); }
  .view .field { margin-bottom: 38px; text-align: left; }
  .view .field input {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid var(--stone);
    background: transparent;
    font-family: 'Figtree', sans-serif;
    font-size: 17px;
    color: var(--noir);
    padding: 12px 2px;
    outline: none;
    border-radius: 0;
    transition: border-color 0.25s ease;
  }
  .view .field input::placeholder { color: var(--taupe); opacity: 0.8; }
  .view .field input:focus { border-color: var(--noir); }
  .view .btn-full { width: 100%; max-width: 380px; justify-content: center; margin: 6px auto 0; display: inline-flex; }
  .view .link-soft {
    display: inline-block;
    margin-top: 26px;
    font-size: 14px;
    color: var(--bronze);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    background: none;
    font-family: 'Figtree', sans-serif;
    transition: border-color 0.25s ease;
  }
  .view .link-soft:hover { border-color: var(--bronze); }
  #view-commencer {
    background:
      radial-gradient(ellipse 90% 70% at 70% 10%, rgba(184,152,120,0.55), transparent 60%),
      radial-gradient(ellipse 80% 60% at 15% 90%, rgba(139,110,78,0.35), transparent 65%),
      var(--creme);
  }
  .view-progress {
    position: relative;
    height: 2px;
    background: rgba(10,10,10,0.18);
    margin: 16px 28px 0;
  }
  .view-progress .fill { position: absolute; left: 0; top: 0; bottom: 0; width: 25%; background: var(--noir); }
  .view-progress .steps { position: absolute; inset: 0; display: flex; justify-content: space-between; }
  .view-progress .step { width: 9px; height: 9px; border-radius: 50%; background: var(--creme); border: 2px solid rgba(10,10,10,0.3); margin-top: -4px; }
  .view-progress .step.done { background: var(--noir); border-color: var(--noir); }
  .view .sub { font-size: 16px; line-height: 1.65; color: var(--taupe); max-width: 460px; margin: 0 auto 40px; }
  .view .fine { margin: 34px auto 0; font-size: 12.5px; line-height: 1.6; color: var(--taupe); max-width: 480px; }
  .view .fine a { color: var(--noir); text-decoration: underline; text-underline-offset: 3px; }

  /* ---------- Footer ---------- */
  footer { background: var(--noir); color: rgba(250,248,245,0.5); padding: 0 0 60px; }
  .footer-inner {
    border-top: 1px solid rgba(250,248,245,0.1);
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  footer .brand { color: var(--creme); font-weight: 700; font-size: 13px; letter-spacing: 0.22em; }
  footer .links { display: flex; gap: 28px; }
  footer a { color: rgba(250,248,245,0.55); text-decoration: none; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.25s ease; }
  footer a:hover { color: var(--bronze-soft); }
  footer .legal { font-size: 12px; letter-spacing: 0.08em; width: 100%; margin-top: 18px; }

  @media (max-width: 760px) {
    section { padding: 80px 0; }
    .constat, .programme { padding: 100px 0; }
    .section-title { margin-bottom: 22px; }
    .btn { padding: 16px 26px; }
    .quote-band { padding: 90px 0; }
    .testimonials { padding: 90px 0 70px; }
    .testi-columns { max-height: 620px; }
    .testi-card { padding: 28px 24px; }
    .testi-card .text { font-size: 13.5px; }
    .price-card .price { font-size: 64px; }
    .final-cta { padding: 110px 0; }
    .topics-cloud { gap: 10px; }
    .topic-pill { padding: 11px 18px; font-size: 13px; }
    .hero-stats { gap: 32px; }
    .stats { margin-top: 50px; padding-top: 40px; }
    .inclusions-bar { flex-direction: column; gap: 16px; }
    .programme-cta .btn { width: 100%; justify-content: center; }
    .newsletter-form .btn { width: 100%; }
    .final-cta .btn { width: calc(100% - 56px); max-width: 360px; justify-content: center; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
  }

  /* ============================================================
     Ajouts Étape 1 : accessibilité, formulaire, finitions
     ============================================================ */

  /* Focus clavier visible (ne jamais retirer sans remplacer) */
  :focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; border-radius: 4px; }
  .nav :focus-visible, .hero :focus-visible, .constat :focus-visible,
  .programme :focus-visible, .final-cta :focus-visible, footer :focus-visible { outline-color: var(--creme); }
  .newsletter-form input:focus-visible { outline: 2px solid var(--bronze); outline-offset: 2px; }

  /* Lien d'évitement clavier */
  .skip-link {
    position: fixed; top: 10px; left: 10px; z-index: 500;
    background: var(--noir); color: var(--creme);
    padding: 12px 20px; border-radius: 100px;
    font-size: 13px; font-weight: 600; text-decoration: none;
    transform: translateY(-160%); transition: transform 0.2s ease;
  }
  .skip-link:focus-visible { transform: translateY(0); }

  /* Réservé aux lecteurs d'écran */
  .sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
  }
  .hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

  /* Hero : ligne d'info + boutons */
  .hero-meta { font-size: 14px; color: rgba(250,248,245,0.78); margin: -8px 0 24px; max-width: 480px; line-height: 1.5; }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  @media (max-width: 820px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-meta { margin-top: 0; }
  }

  /* Consentement RGPD + statut du formulaire */
  .newsletter-form .consent {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13px; line-height: 1.5; color: var(--taupe);
    text-align: left; cursor: pointer;
  }
  .newsletter-form .consent input {
    -webkit-appearance: checkbox; appearance: checkbox;
    width: 18px; height: 18px; padding: 0; margin-top: 2px;
    border-radius: 4px; flex-shrink: 0; accent-color: var(--bronze);
  }
  .newsletter-form .consent a { color: var(--noir); text-decoration: underline; text-underline-offset: 2px; }
  .form-status { font-size: 13.5px; line-height: 1.5; margin: 2px 0 0; min-height: 1px; }
  .form-status.is-pending { color: var(--taupe); }
  .form-status.is-ok { color: var(--bronze-deep); font-weight: 600; }
  .form-status.is-error { color: #9A3A2E; }

  /* Témoignages : grille statique (accessible, sans défilement automatique) */
  .testi-disclaimer {
    max-width: 720px; margin: -28px auto 48px; text-align: center;
    font-size: 13.5px; line-height: 1.6; color: var(--taupe);
  }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
  .testi-grid .testi-card { margin: 0; }
  .testi-grid .testi-card .text { margin: 0; }
  @media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

  /* Tarif : libellé tarif futur */
  .price-future {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--taupe); font-weight: 600; margin-bottom: 6px;
  }

  /* Note sous les pills de sujets */
  .topics-note { max-width: 620px; margin: 30px auto 0; font-size: 13.5px; }

  /* Disclaimer de pied de page */
  .footer-disclaimer {
    width: 100%; margin: 22px 0 0; font-size: 12px; line-height: 1.6;
    color: rgba(250,248,245,0.5); max-width: 760px; letter-spacing: 0;
    text-transform: none;
  }

  /* Cibles tactiles confortables sur mobile */
  @media (max-width: 480px) {
    .nav-pill { min-height: 40px; display: inline-flex; align-items: center; }
  }

  /* ============================================================
     Palette douce — on remplace les fonds noirs par des tons
     chauds et clairs, plus harmonieux avec le crème et le bronze
     ============================================================ */
  :root {
    --sand: #ECE3D6;   /* sable chaud */
    --clay: #E7DDCE;   /* argile chaude */
    --deep: #2E2823;   /* brun chaud profond (remplace le noir pur) */
  }

  /* Hero : fond et voile réchauffés (moins de noir, plus de chaleur) */
  html { background: var(--deep); }
  .hero { background: var(--deep); }
  .hero::after {
    background: linear-gradient(to bottom,
      rgba(40,34,30,0.45) 0%,
      rgba(40,34,30,0.12) 38%,
      rgba(40,34,30,0.20) 66%,
      rgba(40,34,30,0.55) 100%);
  }

  /* Constat : sable chaud, texte sombre */
  .constat { background: var(--sand); color: var(--noir); }
  .constat .section-title { color: var(--noir); }
  .constat p { color: var(--taupe); }
  .constat .accent { color: var(--bronze-deep); }

  /* Programme : argile chaude, cartes claires */
  .programme { background: var(--clay); color: var(--noir); }
  .programme .eyebrow { color: var(--bronze-deep); }
  .programme .section-title { color: var(--noir); }
  .programme .section-title em { color: var(--bronze); }
  .programme p.muted { color: var(--taupe); }
  .module { background: #fff; border: 1px solid var(--divider); }
  .module:hover { border-color: var(--bronze-soft); }
  .module .num { color: var(--bronze); }
  .module .module-eyebrow { color: var(--taupe); }
  .module h3 { color: var(--noir); }
  .module p { color: var(--taupe); }
  .inclusions-bar { border-bottom: 1px solid var(--divider); }
  .inclusion { color: var(--taupe); }
  .inclusion .check { border-color: var(--bronze); color: var(--bronze); }
  .programme-cta .note { color: var(--taupe); }
  /* Boutons clairs des sections devenues claires -> boutons sombres */
  .programme-cta .btn-light, .final-cta .btn-light { background: var(--noir); color: var(--creme); border-color: var(--noir); }
  .programme-cta .btn-light:hover, .final-cta .btn-light:hover { background: var(--bronze); border-color: var(--bronze); color: var(--creme); }

  /* Final CTA : dégradé chaud et doux, texte sombre */
  .final-cta { background: linear-gradient(165deg, var(--clay) 0%, var(--creme-deep) 100%); color: var(--noir); }
  .final-cta .quote { color: var(--noir); }
  .final-cta .quote em { color: var(--bronze); }
  .final-cta .subline { color: var(--taupe); }

  /* Footer : brun chaud profond, plus de noir pur */
  footer { background: var(--deep); }

  /* ============================================================
     Témoignages : colonnes qui défilent en douceur
     ============================================================ */
  .testi-card .text { margin: 0; }          /* reset de la marge par défaut du blockquote */
  .testi-col:focus-within .testi-track { animation-play-state: paused; }  /* pause aussi au focus clavier */
  /* Mouvement réduit : on arrête tout et on empile les 3 témoignages, lisibles */
  @media (prefers-reduced-motion: reduce) {
    .testi-columns {
      max-height: none; overflow: visible;
      flex-direction: column; align-items: center;
      -webkit-mask-image: none; mask-image: none;
    }
    .testi-track { animation: none !important; transform: none !important; }
    .testi-track .testi-card[aria-hidden="true"] { display: none; }
  }
