
  :root {
    --bg: #0b0b0d;
    --bg-soft: #111114;
    --fg: #ececec;
    --fg-soft: #9a9aa0;
    --fg-dim: #6a6a70;
    --line: rgba(255,255,255,0.08);
    --accent: #c9a46b;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); font-family: 'Inter', sans-serif; font-weight: 400; -webkit-font-smoothing: antialiased; }
  body { overflow-x: hidden; }

  a { color: inherit; }
  button { font-family: inherit; cursor: pointer; }

  .wrap { max-width: 1040px; margin: 0 auto; padding: 0 28px; }
  .wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }

  .serif { font-family: 'Instrument Serif', serif; font-weight: 400; letter-spacing: -0.01em; }
  .eyebrow {
    text-transform: uppercase; letter-spacing: 0.22em; font-size: 11px;
    color: var(--accent); font-weight: 500;
  }

  /* ─── NAV ─── */
  .nav {
    position: sticky; top: 0; z-index: 40;
    padding: 18px 28px; display: flex; justify-content: space-between; align-items: center;
    background: rgba(11,11,13,0.85); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .nav-brand { font-weight: 600; font-size: 14px; letter-spacing: 0.02em; }
  .nav-brand em { font-family: 'Instrument Serif', serif; color: var(--accent); font-style: italic; font-weight: 400; }
  .nav-cta {
    padding: 10px 20px;
    background: linear-gradient(135deg, #7a5208 0%, #b08418 18%, #d4a438 40%, #ddb044 50%, #b88c1c 64%, #886010 82%, #6a4c08 100%);
    color: #1a0e00; border: none;
    border-radius: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-decoration: none;
    transition: filter .2s, transform .2s; cursor: pointer;
    box-shadow: 0 2px 14px rgba(248, 210, 40, 0.28);
  }
  .nav-cta:hover { filter: brightness(1.12); transform: translateY(-1px); }

  /* ─── HERO ─── */
  .hero { padding: 72px 0 48px; text-align: center; }
  .hero .eyebrow { margin-bottom: 28px; display: inline-block; }
  .hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(44px, 6.5vw, 84px);
    line-height: 1.02; letter-spacing: -0.02em;
    margin: 0 auto 24px; max-width: 900px; font-weight: 400;
  }
  .hero h1 em { color: var(--accent); font-style: italic; }
  .hero .sub {
    font-size: 18px; line-height: 1.55; color: var(--fg-soft);
    max-width: 620px; margin: 0 auto 40px;
  }

  /* ─── VIDEO PLAYER ─── */
  .video-shell {
    position: relative; width: 100%;
    max-width: 960px; margin: 0 auto;
    aspect-ratio: 16/9;
    background: #05050700;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(0,0,0,0.8), 0 0 0 1px rgba(201,164,107,0.1);
    transition: transform .4s cubic-bezier(.2,.7,.1,1), box-shadow .4s;
    border-radius: 14px;
  }
  .video-shell:hover {
    transform: translateY(-4px);
    box-shadow: 0 50px 100px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(201,164,107,0.3);
  }
  /* Pause overlay (shown briefly after play, then auto-hides) */
  .video-pause-overlay {
    position: absolute; inset: 0; z-index: 4;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
  }
  .video-pause-overlay.active.show { opacity: 1; pointer-events: all; }
  .pause-btn {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(0,0,0,0.52); backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.25); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    gap: 7px; transition: transform .2s, background .2s;
  }
  .pause-btn:hover { transform: scale(1.1); background: rgba(0,0,0,0.7); }
  .pause-btn::before,
  .pause-btn::after {
    content: ''; display: block; width: 4px; height: 20px;
    background: #fff; border-radius: 2px;
  }

  /* ─── Fullscreen button ─── */
  .fullscreen-btn {
    position: absolute; bottom: 14px; right: 14px; z-index: 5;
    width: 34px; height: 34px; border-radius: 6px;
    background: rgba(0,0,0,0.52); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .25s, background .15s, transform .15s;
  }
  .fullscreen-btn.fs-visible.show { opacity: 0.75; pointer-events: all; }
  .fullscreen-btn.fs-visible.show:hover { opacity: 1; background: rgba(0,0,0,0.78); transform: scale(1.06); }
  .fullscreen-btn svg { display: block; pointer-events: none; }

  /* ─── Progress bar ─── */
  .video-progress-bar {
    position: absolute; left: 14px; right: 56px; bottom: 14px; z-index: 5;
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
  }
  .video-progress-bar.show { opacity: 1; pointer-events: all; }
  .video-progress {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 4px; margin: 0;
    background: rgba(255,255,255,0.25); border-radius: 2px;
    cursor: pointer;
    background-image: linear-gradient(var(--accent), var(--accent));
    background-repeat: no-repeat;
    background-size: 0% 100%;
  }
  .video-progress::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 13px; height: 13px; border-radius: 50%;
    background: var(--accent); border: 2px solid #fff;
    cursor: pointer; transition: transform .15s;
  }
  .video-progress::-webkit-slider-thumb:hover { transform: scale(1.15); }
  .video-progress::-moz-range-thumb {
    width: 13px; height: 13px; border-radius: 50%;
    background: var(--accent); border: 2px solid #fff;
    cursor: pointer;
  }
  .video-progress::-moz-range-progress { background: var(--accent); height: 4px; border-radius: 2px; }
  .video-progress::-moz-range-track { background: rgba(255,255,255,0.25); height: 4px; border-radius: 2px; }
  .video-inner {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 35%, #2a1a10 0%, #120a08 55%, #0a0908 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .video-inner::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.08; mix-blend-mode: overlay; pointer-events: none;
  }
  .video-silhouette {
    position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5;
  }
  .video-overlay {
    position: absolute; inset: 0; z-index: 3;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: opacity .3s;
  }
  .video-overlay.hidden { opacity: 0; pointer-events: none; }
  .play-btn {
    position: relative; z-index: 2;
    width: 84px; height: 84px; border-radius: 50%;
    background: rgba(255,255,255,0.95); border: none;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.3);
    animation: pulse 2.4s ease-out infinite;
    transition: transform .3s;
  }
  .play-btn:hover { transform: scale(1.08); animation: none; }
  .play-btn::before {
    content: ''; width: 0; height: 0;
    border-left: 18px solid #1a1208;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 5px;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.35); }
    70% { box-shadow: 0 0 0 28px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  }
  .video-meta {
    position: absolute; bottom: 16px; left: 18px; right: 18px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11px; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500;
  }
  .video-meta .dot { color: #ff5a4e; animation: blink 2s ease infinite; }
  @keyframes blink { 50% { opacity: 0.3; } }

  /* Play button loading state */
  .play-btn.loading { animation: none; cursor: wait; }
  .play-btn.loading::before { display: none; }
  .play-btn.loading::after {
    content: ''; position: absolute;
    width: 26px; height: 26px;
    border: 2.5px solid rgba(26,18,8,0.18);
    border-top-color: rgba(26,18,8,0.85);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  .trust-row {
    margin-top: 36px; display: flex; justify-content: center; align-items: center;
    gap: 36px; flex-wrap: wrap;
    color: var(--fg-dim); font-size: 13px;
  }
  .trust-row .sep { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: 0.4; }
  .trust-row b { color: var(--fg); font-weight: 600; }

  /* ─── CTA BOX ─── */
  .cta-box {
    margin: 56px auto 0;
    max-width: 520px;
    padding: 32px 32px 28px;
    background: linear-gradient(180deg, rgba(201,164,107,0.08) 0%, rgba(201,164,107,0.02) 100%);
    border: 1px solid rgba(201,164,107,0.25);
    border-radius: 12px;
    text-align: center;
  }
  .cta-box .label { font-size: 13px; color: var(--fg-soft); margin-bottom: 14px; letter-spacing: 0.06em; }
  .cta-btn {
    display: inline-block; width: 100%; padding: 18px 28px;
    background: linear-gradient(135deg, #7a5208 0%, #b08418 18%, #d4a438 40%, #ddb044 50%, #b88c1c 64%, #886010 82%, #6a4c08 100%);
    color: #1a0e00;
    border: none; text-decoration: none;
    border-radius: 8px;
    font-size: 15px; font-weight: 700; letter-spacing: 0.04em;
    transition: filter .2s, transform .2s;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(248, 210, 40, 0.3);
  }
  .cta-btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
  .cta-box .small { font-size: 12px; color: var(--fg-dim); margin-top: 14px; }

  /* ─── SECTION BASE ─── */
  section { padding: 96px 0; border-top: 1px solid var(--line); }
  .section-head { text-align: center; margin-bottom: 64px; }
  .section-head .eyebrow { margin-bottom: 20px; display: inline-block; }
  .section-head h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05; letter-spacing: -0.02em;
    margin: 0 auto; max-width: 740px; font-weight: 400;
  }
  .section-head h2 em { color: var(--accent); font-style: italic; }
  .section-head p {
    font-size: 17px; line-height: 1.55; color: var(--fg-soft);
    max-width: 580px; margin: 20px auto 0;
  }

  /* ─── STATS ─── */
  .stats { padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    text-align: center;
  }
  .stat .n {
    font-family: 'Instrument Serif', serif;
    font-size: 56px; line-height: 1; color: var(--accent);
    font-style: italic; font-weight: 400;
  }
  .stat .l { font-size: 13px; color: var(--fg-soft); margin-top: 10px; }

  /* ─── VALUE BULLETS ─── */
  .bullets { max-width: 760px; margin: 0 auto; }
  .bullet { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
  .bullet:last-child { border-bottom: none; }
  .bullet-check {
    flex: 0 0 28px; height: 28px; border-radius: 50%;
    border: 1px solid var(--accent); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
  }
  .bullet h3 { margin: 0 0 6px; font-size: 17px; font-weight: 600; }
  .bullet p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--fg-soft); }

  /* ─── PROGRAM ─── */
  .blocks { display: flex; flex-direction: column; gap: 0; }
  .block {
    display: grid; grid-template-columns: 80px 1fr;
    gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--line);
  }
  .block:first-child { border-top: 1px solid var(--line); }
  .block-num {
    font-family: 'Instrument Serif', serif;
    font-size: 56px; line-height: 1; color: var(--accent);
    font-style: italic; font-weight: 400;
  }
  .block h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 32px; line-height: 1.1; margin: 0 0 8px; font-weight: 400;
  }
  .block .block-sub { font-size: 14px; color: var(--accent); margin-bottom: 16px; font-style: italic; }
  .block p { font-size: 15px; line-height: 1.65; color: var(--fg-soft); margin: 0; max-width: 640px; }

  /* ─── FORMATEUR ─── */
  .formateur { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; max-width: 900px; margin: 0 auto; }
  .portrait {
    aspect-ratio: 3/4; position: relative; overflow: hidden;
    background: linear-gradient(140deg, #1c1410, #0a0605);
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .portrait svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
  .portrait .cap {
    position: absolute; bottom: 10px; left: 12px;
    font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 0.12em; text-transform: uppercase;
  }
  .formateur h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 40px; line-height: 1.05; margin: 0 0 20px; font-weight: 400;
  }
  .formateur h3 em { color: var(--accent); font-style: italic; }
  .formateur p { font-size: 16px; line-height: 1.65; color: var(--fg-soft); margin: 0 0 16px; }
  .formateur p strong { color: var(--fg); font-weight: 500; }
  .formateur-credits { display: flex; gap: 32px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
  .formateur-credits .c { }
  .formateur-credits .c .n {
    font-family: 'Instrument Serif', serif; font-style: italic;
    font-size: 26px; color: var(--accent);
  }
  .formateur-credits .c .l { font-size: 12px; color: var(--fg-dim); margin-top: 2px; }

  /* ─── TESTIMONIALS MARQUEE ─── */
  .testis-outer {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  }
  .testis {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 40s linear infinite;
  }
  .testis-outer:hover .testis { animation-play-state: paused; }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .testi {
    width: 340px; flex-shrink: 0;
    padding: 28px 26px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    display: flex; flex-direction: column;
    transition: border-color .3s, transform .3s;
  }
  .testi:hover { border-color: rgba(201,164,107,0.4); transform: translateY(-3px); }
  .testi .stars { color: var(--accent); font-size: 13px; letter-spacing: 0.1em; margin-bottom: 14px; }
  .testi p { font-size: 15px; line-height: 1.55; margin: 0 0 20px; color: var(--fg); flex: 1; }
  .testi .who { font-size: 13px; }
  .testi .who b { font-weight: 600; }
  .testi .who span { color: var(--fg-dim); margin-left: 8px; }

  /* ─── FINAL CTA ─── */
  .final-cta { text-align: center; padding: 120px 0; background: linear-gradient(180deg, transparent, rgba(201,164,107,0.04)); }
  .final-cta h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(40px, 5vw, 64px); line-height: 1.05;
    margin: 0 auto 20px; max-width: 720px; font-weight: 400; letter-spacing: -0.02em;
  }
  .final-cta h2 em { color: var(--accent); font-style: italic; }
  .final-cta .price-line {
    margin: 36px 0 28px;
    font-size: 15px; color: var(--fg-soft);
  }
  .final-cta .price-line .strike { text-decoration: line-through; color: var(--fg-dim); }
  .final-cta .price-line b { color: var(--accent); font-weight: 600; }
  .final-cta .cta-btn { display: inline-block; width: auto; padding: 20px 48px; font-size: 15px; }
  .final-cta .small { margin-top: 20px; color: var(--fg-dim); font-size: 13px; }

  /* ─── FAQ ─── */
  .faqs { max-width: 760px; margin: 0 auto; }
  .faq {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }
  .faq:first-child { border-top: 1px solid var(--line); }
  .faq summary {
    list-style: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
    font-size: 16px; font-weight: 500;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary .plus {
    color: var(--accent); font-size: 20px; font-weight: 300;
    transition: transform .3s;
  }
  .faq[open] summary .plus { transform: rotate(45deg); }
  .faq p { margin: 16px 0 0; font-size: 15px; line-height: 1.6; color: var(--fg-soft); }

  /* ─── FOOTER ─── */
  footer {
    padding: 48px 28px; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: var(--fg-dim);
    max-width: 1040px; margin: 0 auto;
  }
  footer b { color: var(--fg); font-weight: 500; }

  /* ─── REVEAL ─── */
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.1,1); }
  .reveal.on { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 720px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
    .stat .n { font-size: 44px; }
    .testi { width: 280px; }
    .formateur { grid-template-columns: 1fr; gap: 32px; }
    .portrait { max-width: 220px; margin: 0 auto; }
    .block { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
    .block-num { font-size: 40px; }
    .block h3 { font-size: 26px; }
    section { padding: 64px 0; }
    .hero { padding: 40px 0 100px; }
    .hero .sub { font-size: 16px; margin-bottom: 32px; }
    .nav { padding: 12px 16px; }
    .nav-brand { font-size: 13px; }
    .nav-cta { padding: 9px 14px; font-size: 11px; letter-spacing: 0.04em; }
    .trust-row { gap: 14px; font-size: 12px; margin-top: 24px; }
    .trust-row .sep { display: none; }
    .cta-box { padding: 24px 20px 20px; margin-top: 28px; border-radius: 10px; }
    .cta-btn { font-size: 14px; padding: 17px 20px; }
    .cta-box .label { font-size: 12px; }
    .cta-box .small { font-size: 11px; }
    .play-btn { width: 72px; height: 72px; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
    /* Extra bottom padding so sticky bar doesn't overlap content */
    body { padding-bottom: 80px; }
  }

  /* ─── STICKY MOBILE CTA ─── */
  .sticky-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(0deg, rgba(11,11,13,0.98) 65%, rgba(11,11,13,0));
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.2,.7,.1,1), opacity .4s;
    opacity: 0;
    pointer-events: none;
  }
  .sticky-cta.visible { transform: translateY(0); opacity: 1; pointer-events: all; }
  .sticky-cta .cta-btn { width: 100%; padding: 17px 20px; font-size: 14px; }
  .sticky-cta-sub {
    text-align: center; font-size: 11px; color: var(--fg-dim);
    margin-top: 7px; letter-spacing: 0.04em;
  }
  @media (max-width: 720px) {
    .sticky-cta { display: block; }
  }

  /* ══════════════════════════════════════════
     ─── MODAL / POP-UP ───
  ══════════════════════════════════════════ */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
  }
  .modal-overlay.open {
    opacity: 1; pointer-events: all;
  }
  .modal {
    background: #111114;
    border: 1px solid rgba(201,164,107,0.3);
    max-width: 480px; width: 100%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 48px 40px 40px;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform .35s cubic-bezier(.2,.7,.1,1);
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(201,164,107,0.08);
  }
  .modal-overlay.open .modal {
    transform: translateY(0) scale(1);
  }
  .modal-close {
    position: absolute; top: 16px; right: 18px;
    background: none; border: none; color: var(--fg-dim);
    font-size: 22px; line-height: 1; cursor: pointer;
    transition: color .2s;
    padding: 4px;
  }
  .modal-close:hover { color: var(--fg); }
  .modal-eyebrow {
    text-transform: uppercase; letter-spacing: 0.2em; font-size: 10px;
    color: var(--accent); font-weight: 500; margin-bottom: 12px;
  }
  .modal h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 30px; line-height: 1.1; margin: 0 0 8px;
    font-weight: 400; letter-spacing: -0.01em;
  }
  .modal h2 em { color: var(--accent); font-style: italic; }
  .modal-sub {
    font-size: 14px; color: var(--fg-soft); margin-bottom: 32px; line-height: 1.5;
  }
  .modal-field {
    margin-bottom: 16px;
  }
  .modal-field label {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--fg-dim); margin-bottom: 8px;
  }
  .modal-field input {
    width: 100%; padding: 13px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    color: var(--fg); font-family: 'Inter', sans-serif; font-size: 15px;
    outline: none;
    transition: border-color .2s, background .2s;
  }
  .modal-field input:focus {
    border-color: rgba(201,164,107,0.5);
    background: rgba(201,164,107,0.04);
  }
  .modal-field input::placeholder { color: var(--fg-dim); }
  .modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .modal-submit {
    width: 100%; padding: 16px 24px; margin-top: 24px;
    background: linear-gradient(135deg, #7a5208 0%, #b08418 18%, #d4a438 40%, #ddb044 50%, #b88c1c 64%, #886010 82%, #6a4c08 100%);
    color: #1a0e00;
    border: none; font-family: 'Inter', sans-serif;
    font-size: 14px; font-weight: 700; letter-spacing: 0.05em;
    cursor: pointer;
    transition: filter .2s, transform .2s;
    position: relative;
    box-shadow: 0 3px 14px rgba(248, 210, 40, 0.25);
  }
  .modal-submit:hover:not(:disabled) { filter: brightness(1.12); transform: translateY(-1px); }
  .modal-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
  .modal-footer-note {
    font-size: 11px; color: var(--fg-dim); text-align: center; margin-top: 16px; line-height: 1.5;
  }

  /* États du modal */
  .modal-state { display: none; }
  .modal-state.active { display: block; }

  /* Succès */
  .modal-success {
    text-align: center; padding: 20px 0;
  }
  .modal-success .check {
    width: 64px; height: 64px; border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px; color: var(--accent);
    animation: popIn .4s cubic-bezier(.2,.7,.1,1);
  }
  @keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  .modal-success h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 26px; margin: 0 0 12px; font-weight: 400;
  }
  .modal-success h3 em { color: var(--accent); font-style: italic; }
  .modal-success p { color: var(--fg-soft); font-size: 15px; line-height: 1.55; margin: 0; }

  /* Erreur */
  .modal-error {
    font-size: 13px; color: #e05c5c; margin-top: 12px; text-align: center;
    display: none;
  }
  .modal-error.show { display: block; }

  /* Stripe Buy Button wrapper */
  .stripe-btn-wrapper {
    display: flex;
    justify-content: center;
    margin: 24px 0 8px;
  }
  #checkout-container {
    width: 100%;
  }

  /* Bouton retour dans le modal paiement */
  .modal-back {
    background: none;
    border: none;
    color: var(--fg-soft);
    font-size: 13px;
    cursor: pointer;
    padding: 0 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .2s;
  }
  .modal-back:hover { color: var(--fg); }

  /* Spinner */
  .spinner {
    display: inline-block; width: 16px; height: 16px;
    border: 2px solid rgba(26,18,8,0.3);
    border-top-color: #1a1208;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    vertical-align: middle; margin-right: 8px;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  @media (max-width: 520px) {
    .modal { padding: 40px 24px 32px; }
    .modal-row { grid-template-columns: 1fr; }
    .modal h2 { font-size: 24px; }
  }

/* ─── LOGO ─── */
.logo-img { height: 64px; width: auto; display: block; margin-left: -8px; }

/* ─── ACCENT TEXT ─── */
.accent { color: var(--accent); }

/* ─── FINAL CTA extras ─── */
.final-cta h2 { margin-top: 20px; }
.final-cta-sub { color: var(--fg-soft); font-size: 17px; line-height: 1.55; margin-top: 16px; }

/* ─── FOOTER BRAND ─── */
.footer-brand { display: flex; align-items: center; gap: 12px; }

/* ─── SHIMMER HOVER ON BUTTONS ─── */
.nav-cta,
.cta-btn,
.modal-submit {
  position: relative;
  overflow: hidden;
}

.nav-cta::after,
.cta-btn::after,
.modal-submit::after {
  content: '';
  position: absolute;
  top: -10%;
  left: 0;
  width: 45%;
  height: 120%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 30%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.12) 70%,
    transparent 100%
  );
  transform: translateX(-140%) skewX(-18deg);
  pointer-events: none;
}

.nav-cta:hover::after,
.cta-btn:hover::after,
.modal-submit:hover::after {
  animation: btn-shimmer 0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes btn-shimmer {
  0%   { transform: translateX(-140%) skewX(-18deg); opacity: 1; }
  65%  { transform: translateX(55%)  skewX(-18deg); opacity: 1; }
  100% { transform: translateX(55%)  skewX(-18deg); opacity: 0; }
}
