/* Force dark background immediately — chargé avant tout le reste */
html { background: #0D0B0F !important; }

:root {
  --ink:    #0D0B0F;
  --deep:   #13101A;
  --panel:  #1A1525;
  --card:   #211C2E;
  --border: rgba(255,255,255,0.07);
  --mauve:  #C9A8C0;
  --mauve2: #E8D0E2;
  --gold:   #D4AF6E;
  --gold2:  #F0D5A0;
  --rose:   #E8A0B0;
  --text:   rgba(255,255,255,0.85);
  --muted:  rgba(255,255,255,0.6);
  --glow:   rgba(201,168,192,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: #0D0B0F;
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  color: var(--text);
  font-family: 'Outfit', 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--mauve);
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(201,168,192,0.5);
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: all .12s ease;
}
body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 18px; height: 18px; background: var(--gold); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
  background: linear-gradient(to bottom, rgba(13,11,15,0.95), transparent);
  backdrop-filter: blur(0);
  transition: all .4s;
}
nav.scrolled {
  background: rgba(13,11,15,0.94);
  backdrop-filter: blur(20px);
  padding: 16px 56px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 1.25rem; font-weight: 700; letter-spacing: .04em;
  color: var(--text); text-decoration: none;
}
.nav-logo span { color: var(--mauve); font-style: italic; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-wa {
  background: var(--mauve); color: var(--ink);
  padding: 11px 26px; border-radius: 100px;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; transition: all .25s;
  white-space: nowrap;
}
.nav-wa:hover { background: var(--mauve2); transform: scale(1.03); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 140px 56px 100px;
  position: relative; overflow: hidden;
  text-align: center;
}
/* Animated gradient orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; opacity: .55;
  animation: drift 12s ease-in-out infinite;
}
.orb1 { width: 600px; height: 600px; top: -150px; right: -100px; background: radial-gradient(circle, rgba(201,168,192,.35), transparent 70%); animation-delay: 0s; }
.orb2 { width: 400px; height: 400px; bottom: -100px; left: -80px; background: radial-gradient(circle, rgba(212,175,110,.22), transparent 70%); animation-delay: -4s; }
.orb3 { width: 300px; height: 300px; top: 40%; left: 40%; background: radial-gradient(circle, rgba(232,160,176,.18), transparent 70%); animation-delay: -8s; }

@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,15px) scale(.97); }
}

/* Floating lash particles */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; width: 1px; background: linear-gradient(to bottom, transparent, var(--mauve), transparent);
  opacity: 0; border-radius: 1px;
  animation: lashFall linear infinite;
}

@keyframes lashFall {
  0% { opacity: 0; transform: translateY(-20px) rotate(var(--r)); }
  10% { opacity: .6; }
  90% { opacity: .3; }
  100% { opacity: 0; transform: translateY(100vh) rotate(var(--r)); }
}

.hero-inner {
  position: relative; z-index: 2; max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,192,.1); border: 1px solid rgba(201,168,192,.2);
  color: var(--mauve); padding: 7px 16px; border-radius: 100px;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeSlide .6s ease both;
}
.hero-tag::before { content: '●'; font-size: .5rem; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .2; } }

.hero h1 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  font-weight: 900; line-height: .96; letter-spacing: -.02em;
  margin-bottom: 28px;
  animation: fadeSlide .7s .1s ease both;
}
.hero h1 .line2 { color: var(--mauve); font-style: italic; display: block; }
.hero h1 .line3 { display: block; }

.hero-desc {
  font-size: 1.08rem; line-height: 1.7; color: var(--muted); max-width: 560px;
  margin: 0 auto 44px;
  animation: fadeSlide .7s .2s ease both;
}
.hero-desc strong { color: var(--text); font-weight: 400; }

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeSlide .7s .3s ease both;
}

/* Hero bottom row — transparent on mobile (display: contents),
   becomes a flex row on desktop so actions + proof sit on the same line */
.hero-bottom { display: contents; }
.btn-pill {
  padding: 15px 36px; border-radius: 100px;
  font-size: .82rem; font-weight: 500; letter-spacing: .08em;
  text-decoration: none; transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-fill { background: var(--mauve); color: var(--ink); }
.btn-fill:hover { background: var(--mauve2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,107,138,.3); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

/* Hero scroll stats */
.hero-proof {
  position: relative; z-index: 2;
  margin-top: 88px;
  display: flex; align-items: center; justify-content: center; gap: 0;
  animation: fadeSlide .7s .5s ease both;
}
.proof-item { text-align: center; padding: 0 28px; }
.proof-item + .proof-item { border-left: 1px solid var(--border); }
.proof-num {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 2.4rem; font-weight: 700;
  background: linear-gradient(135deg, var(--mauve2), var(--mauve));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.proof-label { font-size: .72rem; color: var(--muted); letter-spacing: .06em; margin-top: 4px; }

/* Scroll hint — hidden in centered hero layout */
.scroll-hint { display: none; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TICKER ── */
.ticker {
  background: var(--mauve); overflow: hidden;
  padding: 14px 0; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex; gap: 0;
  animation: ticker 22s linear infinite;
}
.ticker-item {
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); font-weight: 600; padding: 0 32px;
  display: flex; align-items: center; gap: 12px;
}
.ticker-item::after { content: '✦'; opacity: .5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION SHELL ── */
.section { padding: 110px 56px; position: relative; }
.section-label {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--mauve); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--mauve); }
.section-h {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -.01em;
  margin-bottom: 16px;
}
.section-h em { font-style: italic; color: var(--mauve); }
.section-p { font-size: 1rem; color: var(--muted); line-height: 1.72; max-width: 480px; }

/* ── CURRICULUM — DESKTOP ACCORDION ── */
.curriculum { background: var(--deep); overflow: hidden; }

/* Desktop accordion — caché par défaut, visible uniquement ≥901px */
.curr-desktop { display: none; margin-top: 72px; position: relative; }

/* Progress bar */
.curr-progress {
  display: flex; gap: 8px; margin-bottom: 32px; align-items: center;
}
.curr-prog-label {
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; margin-right: 6px;
}
.curr-prog-item {
  height: 2px; flex: 1; background: var(--border); border-radius: 1px;
  transition: background .4s;
  cursor: pointer;
  position: relative;
}
.curr-prog-item:hover { background: rgba(255,255,255,0.12); }
.curr-prog-item.active { background: var(--mauve); }
.curr-prog-item.adv.active { background: var(--mauve); }
.curr-prog-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--mauve); border-radius: 1px;
  width: 0; transition: width 5s linear;
}
.curr-prog-item.adv .curr-prog-fill { background: var(--mauve); }

/* Module counter label row */
.curr-mod-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 4px;
}
.curr-mod-label {
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); text-align: center; padding: 6px 4px;
  cursor: pointer; transition: color .2s, background .2s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  border-radius: 6px 6px 0 0;
}
.curr-mod-label.active { color: var(--mauve); background: rgba(201,168,192,.06); }
.curr-mod-label.adv.active { color: var(--mauve); background: rgba(201,168,192,.06); }
.curr-mod-label:hover { color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.03); }

/* Main accordion grid */
.curr-accordion {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  height: 600px;
  transition: grid-template-columns .55s cubic-bezier(.4,0,.2,1);
}

.curr-acc-item {
  position: relative; overflow: hidden;
  background: var(--panel);
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background .35s, border-color .35s, box-shadow .35s;
  min-width: 0;
}
/* Top accent bar */
.curr-acc-item::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--mauve); opacity: 0; transition: opacity .3s;
  border-radius: 10px 10px 0 0;
}
.curr-acc-item.adv::after { background: var(--mauve); }
.curr-acc-item:hover::after,
.curr-acc-item.active::after { opacity: 1; }
.curr-accordion.open-0 { grid-template-columns: 4fr 1fr 1fr 1fr 1fr 1fr 1fr; }
.curr-accordion.open-1 { grid-template-columns: 1fr 4fr 1fr 1fr 1fr 1fr 1fr; }
.curr-accordion.open-2 { grid-template-columns: 1fr 1fr 4fr 1fr 1fr 1fr 1fr; }
.curr-accordion.open-3 { grid-template-columns: 1fr 1fr 1fr 4fr 1fr 1fr 1fr; }
.curr-accordion.open-4 { grid-template-columns: 1fr 1fr 1fr 1fr 4fr 1fr 1fr; }
.curr-accordion.open-5 { grid-template-columns: 1fr 1fr 1fr 1fr 1fr 4fr 1fr; }
.curr-accordion.open-6 { grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 4fr; }

/* Collapsed state — vertical label */
.curr-acc-item .acc-collapsed {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  padding: 24px 0;
  opacity: 1; transition: opacity .25s;
}
.curr-acc-item.active .acc-collapsed { opacity: 0; pointer-events: none; }

.acc-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl; letter-spacing: .12em;
  transition: color .3s;
}
.curr-acc-item:hover .acc-num { color: var(--mauve); }
.curr-acc-item.adv:hover .acc-num { color: var(--mauve); }

.acc-vtitle {
  font-size: .62rem; letter-spacing: .08em;
  color: rgba(255,255,255,0.2); writing-mode: vertical-rl;
  text-align: center; line-height: 1.3;
  transition: color .3s;
}
.curr-acc-item:hover .acc-vtitle { color: rgba(255,255,255,0.45); }

.acc-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(201,168,192,.3);
  transition: all .3s; flex-shrink: 0;
}
.curr-acc-item:hover .acc-dot { background: var(--mauve); transform: scale(1.6); }
.curr-acc-item.adv .acc-dot { background: rgba(201,168,192,.3); }
.curr-acc-item.adv:hover .acc-dot { background: var(--mauve); }

/* Expanded state */
.curr-acc-item .acc-expanded {
  position: absolute; inset: 0;
  padding: 44px 40px 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; pointer-events: none;
  transition: opacity .3s .18s;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}
.curr-acc-item.active .acc-expanded { opacity: 1; pointer-events: auto; }

/* Background number watermark */
.acc-bg-num {
  position: absolute; bottom: -30px; right: 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 11rem; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none; user-select: none;
  transition: color .4s;
}
.curr-acc-item.active .acc-bg-num { color: rgba(201,168,192,.04); }
.curr-acc-item.active.adv .acc-bg-num { color: rgba(201,168,192,.04); }

/* Expanded content */
.acc-eyebrow {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.acc-eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--mauve); }
.curr-acc-item.adv .acc-eyebrow::before { background: var(--mauve); }

.acc-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem; font-weight: 700; line-height: 1.1; margin-bottom: 14px;
  color: var(--text);
}
.acc-title em { font-style: italic; color: var(--mauve); }
.curr-acc-item.adv .acc-title em { color: var(--mauve); }
.acc-desc { font-size: .8rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }

.acc-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.acc-chip {
  font-size: .66rem; letter-spacing: .04em;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 12px; border-radius: 100px; color: rgba(255,255,255,0.45);
  transition: all .2s;
  max-width: 100%; white-space: normal; word-break: normal; overflow-wrap: anywhere;
  text-align: left; line-height: 1.4;
}
.acc-chip:hover { background: rgba(201,168,192,.1); border-color: rgba(201,168,192,.25); color: var(--mauve2); }
.curr-acc-item.adv .acc-chip:hover { background: rgba(201,168,192,.1); border-color: rgba(201,168,192,.25); color: var(--mauve2); }
.acc-chip.highlight {
  background: rgba(201,168,192,.08); border-color: rgba(201,168,192,.2); color: var(--mauve);
}
.curr-acc-item.adv .acc-chip.highlight {
  background: rgba(201,168,192,.08); border-color: rgba(201,168,192,.2); color: var(--mauve);
}

.acc-footer {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: .68rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.acc-footer strong { color: var(--mauve); }
.curr-acc-item.adv .acc-footer strong { color: var(--mauve); }

/* States */
.curr-acc-item:not(.active):hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.curr-acc-item.active {
  background: #1E1928;
  border-color: rgba(201,168,192,.28);
  box-shadow: 0 0 0 1px rgba(201,168,192,.06) inset, 0 12px 40px rgba(0,0,0,.25);
}
.curr-acc-item.active.adv {
  background: #1E1928;
  border-color: rgba(201,168,192,.28);
  box-shadow: 0 0 0 1px rgba(201,168,192,.06) inset, 0 12px 40px rgba(0,0,0,.25);
}

/* Nav arrows */
.curr-acc-nav {
  display: flex; justify-content: space-between; align-items: center; margin-top: 20px;
}
.curr-acc-arrow {
  background: none; border: 1px solid var(--border); color: var(--muted);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: all .2s;
}
.curr-acc-arrow:hover { border-color: var(--mauve); color: var(--mauve); background: rgba(201,168,192,.06); }
.curr-acc-counter {
  font-size: .7rem; color: var(--muted); letter-spacing: .1em;
}
.curr-acc-counter span { color: var(--text); }

/* Desktop only */
@media (min-width: 901px) {
  .curr-desktop { display: block; }
  .curr-layout  { display: none !important; }
  .curr-scroll-hint { display: none !important; }
}

/* ── CURRICULUM TABS (mobile only) ── */
.curr-layout { display: grid; grid-template-columns: 320px 1fr; gap: 0; margin-top: 64px; min-height: 480px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }

.curr-tabs { background: var(--panel); border-right: 1px solid var(--border); }
.curr-tab {
  padding: 24px 28px; cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: all .25s; position: relative; overflow: hidden;
}
.curr-tab::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--mauve); transform: scaleY(0); transition: transform .25s;
}
.curr-tab:hover { background: rgba(255,255,255,0.03); }
.curr-tab.active { background: rgba(201,168,192,.07); }
.curr-tab.active::before { transform: scaleY(1); }
.curr-tab.advanced-tab { background: rgba(212,175,110,.06); }
.curr-tab.advanced-tab.active { background: rgba(212,175,110,.12); }
.curr-tab.advanced-tab::before { background: var(--gold); }

.tab-badge {
  display: inline-block; font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 100px; margin-bottom: 8px; font-weight: 500;
}
.badge-base { background: rgba(201,168,192,.15); color: var(--mauve); border: 1px solid rgba(201,168,192,.2); }
.badge-adv  { background: rgba(212,175,110,.15); color: var(--gold); border: 1px solid rgba(212,175,110,.2); }

.tab-num { font-size: .62rem; color: var(--muted); letter-spacing: .08em; }
.tab-name { font-size: .9rem; font-weight: 500; color: var(--text); margin-top: 4px; }

.curr-panel { padding: 44px 48px; display: none; flex-direction: column; justify-content: space-between; }
.curr-panel.active { display: flex; animation: panelIn .3s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }

.panel-eyebrow { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.panel-title { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 2.1rem; font-weight: 700; margin-bottom: 16px; line-height: 1.15; }
.panel-title em { color: var(--mauve); font-style: italic; }
.panel-title.gold em { color: var(--gold); }
.panel-desc { font-size: .92rem; color: var(--muted); line-height: 1.72; margin-bottom: 32px; max-width: 420px; }

.subtopics { display: flex; flex-wrap: wrap; gap: 8px; }
.subtopic {
  font-size: .72rem; letter-spacing: .06em;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 100px; color: var(--muted);
  transition: all .2s; cursor: default;
}
.subtopic:hover { background: rgba(201,168,192,.1); border-color: rgba(201,168,192,.25); color: var(--mauve2); }
.subtopic.gold:hover { background: rgba(212,175,110,.1); border-color: rgba(212,175,110,.25); color: var(--gold2); }

.panel-footer { margin-top: 36px; display: flex; align-items: center; gap: 20px; padding-top: 28px; border-top: 1px solid var(--border); }
.panel-included { font-size: .75rem; color: var(--muted); }
.panel-included strong { color: var(--mauve); }
.panel-included.gold strong { color: var(--gold); }

.technique-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 28px; }
.tcard {
  background: rgba(212,175,110,.06); border: 1px solid rgba(212,175,110,.12);
  padding: 18px 20px; border-radius: 8px; transition: all .25s;
}
.tcard:hover { background: rgba(212,175,110,.12); border-color: rgba(212,175,110,.28); transform: translateY(-2px); }
.tcard-icon { font-size: 1.4rem; margin-bottom: 8px; }
.tcard-name { font-size: .82rem; font-weight: 500; color: var(--text); }
.tcard-desc { font-size: .72rem; color: var(--muted); margin-top: 3px; line-height: 1.5; }

/* ── PRICING ── */
.pricing { background: var(--ink); }
.pricing-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }

/* Toggle */
.mode-toggle {
  display: flex; background: var(--panel); border: 1px solid var(--border);
  border-radius: 100px; padding: 4px; gap: 4px;
}
.mode-btn {
  padding: 9px 22px; border-radius: 100px; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  transition: all .25s; background: transparent; color: var(--muted);
}
.mode-btn.active { background: var(--mauve); color: var(--ink); }

.cards-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 900px; }
.cards-wrap.hidden { display: none; }

.pcard {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px 36px; position: relative; overflow: hidden;
  transition: all .3s;
}
.pcard:hover { border-color: rgba(201,168,192,.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.pcard.star {
  background: linear-gradient(135deg, #1E1630, #251B3A);
  border-color: rgba(201,168,192,.25);
}
.pcard.star::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(201,168,192,.1), transparent 60%);
  pointer-events: none;
}
.pcard-chip {
  display: inline-block; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 20px;
}
.chip-base { background: rgba(201,168,192,.15); color: var(--mauve); }
.chip-adv  { background: rgba(212,175,110,.15); color: var(--gold); }
.chip-hot  { background: var(--mauve); color: var(--ink); }

.pcard-price {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 4rem; font-weight: 900; line-height: 1;
  letter-spacing: -.03em; margin-bottom: 4px;
}
.pcard-price sup { font-size: 1.6rem; vertical-align: .5em; font-weight: 400; }
.pcard-sub { font-size: .78rem; color: var(--muted); margin-bottom: 24px; }
.pcard-name { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; }
.pcard-desc { font-size: .84rem; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.pcard-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
.pcard-features { list-style: none; margin-bottom: 32px; }
.feat {
  font-size: .82rem; color: var(--muted); padding: 7px 0;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.45;
}
.feat-check { color: var(--mauve); flex-shrink: 0; font-size: .75rem; margin-top: 2px; }
.feat-check.gold { color: var(--gold); }
.pcard-cta {
  display: block; text-align: center; padding: 14px;
  border-radius: 100px; text-decoration: none;
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: all .25s;
}
.cta-outline { border: 1px solid rgba(255,255,255,0.12); color: var(--text); }
.cta-outline:hover { border-color: var(--mauve); color: var(--mauve); }
.cta-fill { background: var(--mauve); color: var(--ink); }
.cta-fill:hover { background: var(--mauve2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,192,.25); }

/* Comparison table */
.comp-wrap { margin-top: 64px; }
.comp-title { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 28px; }
.comp-title span { color: var(--mauve); }
table.comp {
  width: 100%; border-collapse: collapse;
  font-size: .82rem;
}
table.comp th {
  text-align: left; padding: 14px 20px;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
table.comp th.hl { color: var(--mauve); }
table.comp td {
  padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle;
  color: var(--muted);
}
table.comp tr:hover td { background: rgba(255,255,255,0.03); }
table.comp td:first-child { color: var(--text); font-weight: 400; }
.ck { color: var(--mauve); }
.ck-g { color: var(--gold); }
.no { color: rgba(255,255,255,0.1); }
.badge-sm {
  display: inline-block; font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(212,175,110,.15); color: var(--gold); border: 1px solid rgba(212,175,110,.2);
  padding: 2px 7px; border-radius: 4px; margin-left: 6px;
}

/* ── FOR WHO ── */
.forwho { background: var(--deep); }
.fw-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.fw-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 30px;
  position: relative; overflow: hidden;
  transition: all .3s;
}
.fw-card:hover { border-color: rgba(201,168,192,.25); transform: translateY(-3px); }
.fw-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
}
.fw-n {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 3.5rem; font-weight: 900;
  color: rgba(201,168,192,.12); line-height: 1; margin-bottom: 20px;
}
.fw-title { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; line-height: 1.25; }
.fw-title em { color: var(--mauve); font-style: italic; }
.fw-desc { font-size: .84rem; color: var(--muted); line-height: 1.68; }

/* ── LOCATION ── */
.location { background: var(--ink); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 56px; align-items: start; }
.loc-info { }
.loc-block { margin-bottom: 32px; }
.loc-key { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.loc-val { font-size: 1.05rem; color: var(--text); line-height: 1.5; }
.loc-val a { color: var(--mauve); text-decoration: none; }
.schedule {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px;
}
.sch-item {
  background: var(--panel); border: 1px solid var(--border); border-radius: 8px;
  padding: 16px 18px;
}
.sch-label { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.sch-time { font-size: .95rem; font-weight: 500; color: var(--text); }

.loc-ctas { display: flex; flex-direction: column; gap: 12px; }
.loc-cta-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px 28px; display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; transition: all .25s; gap: 16px;
}
.loc-cta-card:hover { border-color: rgba(201,168,192,.3); background: rgba(201,168,192,.06); }
.lcc-left { }
.lcc-label { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.lcc-title { font-size: 1rem; font-weight: 500; color: var(--text); }
.lcc-arrow { font-size: 1.4rem; color: var(--mauve); flex-shrink: 0; }

/* ── FINAL CTA ── */
.final {
  background: var(--deep);
  text-align: center; padding: 130px 56px;
  position: relative; overflow: hidden;
}
.final::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,192,.1), transparent 65%);
  pointer-events: none;
}
.final-h {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900; line-height: .96; letter-spacing: -.02em;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.final-h em { font-style: italic; color: var(--mauve); }
.final-p { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 420px; margin: 0 auto 48px; position: relative; z-index: 1; }
.final-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
  background: var(--ink); border-top: 1px solid var(--border);
  padding: 32px 56px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: .75rem; color: var(--muted);
}
.footer-logo { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 1rem; color: var(--mauve); font-weight: 700; }

/* ── WA FLOAT ── */
.wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform .25s;
}
.wa:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,.65); }
}
.wa svg { width: 28px; height: 28px; fill: white; }

/* ── TESTIMONIALS ── */
.testi-section {
  background: var(--ink);
  padding: 110px 56px;
  position: relative; overflow: hidden;
}
.testi-section::before {
  content: '';
  position: absolute; bottom: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,192,.06), transparent 65%);
  pointer-events: none;
}
.testi-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; flex-wrap: wrap; gap: 24px;
}
.testi-nav {
  display: flex; gap: 10px;
}
.tnav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text); font-size: 1rem;
  cursor: pointer; transition: all .25s;
  display: flex; align-items: center; justify-content: center;
}
.tnav-btn:hover { border-color: var(--mauve); color: var(--mauve); background: rgba(201,168,192,.08); }

/* Carousel track */
.testi-track-wrap {
  overflow: hidden;
  position: relative;
}
.testi-track {
  display: flex; gap: 16px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.testi-track.is-dragging { cursor: grabbing; user-select: none; -webkit-user-select: none; }
/* Don't disable pointer-events on children during drag — the drag is captured
   at the window level (mousemove/mouseup), and disabling children was eating
   the card click that should open the testimonial modal. */
.testi-track img { -webkit-user-drag: none; user-drag: none; }

/* Each video card — vertical 9:16 ratio */
.tcard-video {
  flex-shrink: 0;
  width: calc((100% - 48px) / 4); /* 4 visible on desktop */
  position: relative; border-radius: 14px; overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tcard-video:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,192,.15);
}

/* 9:16 aspect ratio box */
.tcard-ratio {
  position: relative;
  padding-bottom: 177.78%; /* 9:16 */
  width: 100%; overflow: hidden;
}
.tcard-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
  filter: brightness(.75);
}
.tcard-video:hover .tcard-thumb { transform: scale(1.05); filter: brightness(.55); }

/* Gradient overlay */
.tcard-ratio::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,15,.9) 0%, rgba(255,255,255,0.05) 45%, transparent 100%);
  z-index: 1;
}

/* Play icon */
.tcard-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,168,192,.2);
  border: 1.5px solid rgba(201,168,192,.5);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: all .25s;
}
.tcard-play svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.tcard-video:hover .tcard-play {
  background: var(--mauve);
  border-color: var(--mauve);
  transform: translate(-50%, -50%) scale(1.12);
}
.tcard-video:hover .tcard-play svg { fill: #fff; }

/* Info at bottom */
.tcard-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px 18px; z-index: 2;
}
.tcard-name { font-size: .82rem; font-weight: 500; color: var(--text); }
.tcard-tag  {
  display: inline-block; margin-top: 5px;
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(201,107,138,.18); border: 1px solid rgba(201,107,138,.3);
  color: var(--mauve2); padding: 3px 9px; border-radius: 100px;
}

/* Placeholder card (no video yet) */
.tcard-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #1A1525, #231830);
}
.tcard-placeholder svg { opacity: .25; }
.tcard-placeholder span {
  font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(201,168,192,.3);
}

/* Dots pagination */
.testi-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 32px;
}
.tdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border); transition: all .3s; cursor: pointer;
}
.tdot.active { background: var(--mauve); width: 22px; border-radius: 3px; }

/* Modal */
.testi-modal {
  display: none;
  position: fixed; inset: 0; z-index: 800;
  background: rgba(13, 11, 15, 0.88); /* --bg with alpha, matches site dark theme */
  backdrop-filter: blur(16px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.testi-modal.open { display: flex; animation: modalIn .25s ease; }
@keyframes modalIn { from { opacity: 0; } to { opacity: 1; } }
.modal-inner {
  position: relative;
  width: 100%; max-width: 380px; /* narrow for vertical video */
  border-radius: 16px; overflow: hidden;
  background: var(--card);
  box-shadow: 0 40px 100px rgba(0,0,0,.8);
}
.modal-video {
  width: 100%; display: block;
  max-height: 80vh; object-fit: contain;
  background: var(--card);
  border: 0;
}
/* Slot wraps either a <video> (native sizing) or an <iframe> (Vimeo —
   needs explicit aspect-ratio because iframes have no intrinsic size).
   9:16 matches typical phone-shot testimonial videos.
   position: relative so the overlay controls (play btn, mute pill, click-pause)
   that JS injects inside it are positioned against the slot itself. */
.modal-player-slot {
  position: relative;
  width: 100%; aspect-ratio: 9 / 16;
  max-height: 80vh; background: var(--card);
  display: block;
}
.modal-player-slot iframe.modal-video { height: 100%; }
/* Modal play button: same mauve circle as the hero, but visibility driven
   by the .is-visible class. Note: doubled selectors below to win over
   .play-btn's `display:flex` rule which is declared later in this file. */
.play-btn.modal-play-btn { display: none; z-index: 4; cursor: pointer; }
.play-btn.modal-play-btn.is-visible { display: flex; }

/* Modal videoFit modes (set on .modal-player-slot by JS based on Sanity).
   "contain" (default) lets Vimeo letterbox / native <video> object-fit handle
   the fit. "cover" forces the iframe to overflow and re-centers, so a non-
   portrait source crops into the 9:16 modal box. */
.modal-player-slot.video-fit-contain iframe.modal-video {
  width: 100%; height: 100%;
  position: static;
  transform: none;
}
.modal-player-slot.video-fit-contain video.modal-video { object-fit: contain; }
.modal-player-slot.video-fit-cover { overflow: hidden; }
.modal-player-slot.video-fit-cover iframe.modal-video {
  position: absolute;
  width: 177.78%; height: 177.78%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.modal-player-slot.video-fit-cover video.modal-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,0.12);
  color: var(--text); font-size: 1.1rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  /* Must beat .video-click-pause (z:3), .modal-play-btn (z:4) and
     .video-ctrls (z:5) so the X stays clickable even when those overlap. */
  z-index: 10;
}
.modal-close:hover { background: rgba(255,255,255,.15); }

/* Kit visuel photo + vidéo */
.kit-visual {
  flex-shrink: 0;
  width: 130px; height: 130px; border-radius: 10px; overflow: hidden;
  position: relative; background: var(--card);
  border: 1px solid rgba(212,175,110,.2);
}
.kit-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.kit-img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, #1A1525, #231830);
}
.kit-img-placeholder span { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(212,175,110,.35); }
.kit-video-btn {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.78); border: 1px solid rgba(255,255,255,.14);
  color: #fff; backdrop-filter: blur(6px);
  padding: 5px 10px; border-radius: 100px;
  font-size: .6rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
  transition: all .2s;
}
.kit-video-btn:hover { background: rgba(0,0,0,.9); border-color: rgba(255,255,255,.28); }

/* When .kit-visual is a <button> (i.e. the kit has a video), make it look
   identical to the <div> version but be clickable. Centered mauve play
   overlay matches the testimonial cards. */
button.kit-visual {
  border: 1px solid rgba(212,175,110,.2);
  padding: 0; cursor: pointer;
  font: inherit; color: inherit;
}
button.kit-visual:hover .kit-play-overlay {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--mauve2);
}
.kit-play-overlay {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--mauve);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  box-shadow: 0 0 0 8px rgba(201,168,192,.18), 0 4px 16px rgba(0,0,0,.4);
  transition: transform .25s ease, background .25s ease;
}
.kit-play-overlay svg { width: 18px; height: 18px; fill: var(--ink); margin-left: 2px; }

/* Tableau comparatif — desktop visible, mobile caché */
.comp-desktop { display: table; }
.comp-mobile  { display: none; }

/* Version mobile 2 colonnes côte à côte */
.comp-mobile {
  gap: 10px;
}
.comp-col {
  flex: 1; background: var(--panel);
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
}
.comp-col-adv { border-color: rgba(212,175,110,.25); background: rgba(212,175,110,.04); }
.comp-col-head {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: .88rem; font-weight: 700;
  padding: 14px 14px 10px; color: var(--mauve);
  border-bottom: 1px solid var(--border);
}
.comp-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 14px; border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: .72rem; gap: 6px;
}
.comp-key { color: var(--muted); flex: 1; line-height: 1.35; }
.comp-ideal {
  justify-content: center; padding: 10px 14px;
  font-size: .7rem; color: var(--muted); font-style: italic;
  background: rgba(255,255,255,0.03); border-bottom: none;
}

@media (max-width: 900px) {
  .comp-desktop { display: none !important; }
  .comp-mobile  { display: flex !important; }
  .kit-visual { width: 100%; height: 160px; }
  .kit-promo { flex-direction: column; }
  .kit-right { align-items: flex-start; width: 100%; }
}

/* Tab scroll hint intégré */
.curr-tab-hint {
  display: none;
  flex-shrink: 0;
  align-items: center; gap: 6px;
  padding: 0 16px;
  color: var(--mauve); font-size: .68rem; letter-spacing: .1em;
  border-right: 1px solid var(--border);
  animation: arrowBounce 1.4s ease-in-out infinite;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .curr-tab-hint { display: flex; }
  .curr-scroll-hint { display: none; } /* ancien hint supprimé */
}

/* Module dots — same visual language as .testi-dots, mobile only */
.curr-mod-dots { display: none; }
@media (max-width: 900px) {
  .curr-mod-dots {
    display: flex; justify-content: center; gap: 8px;
    padding: 12px 0 4px;
    background: var(--panel);
    border-bottom: 1px solid var(--border);
  }
  .cmdot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border); transition: all .3s; cursor: pointer;
  }
  .cmdot.active { background: var(--mauve); width: 22px; border-radius: 3px; }
}

/* ── KIT PROMO ── */
.kit-promo {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(212,175,110,.08), rgba(212,175,110,.04));
  border: 1px solid rgba(212,175,110,.25);
  border-radius: 12px;
  padding: 32px 36px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  position: relative; overflow: visible;
}
.kit-promo::before { display: none; }
.kit-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--ink);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  padding: 5px 14px; border-radius: 100px;
  z-index: 2;
}
.kit-left { flex: 1; min-width: 220px; }
.kit-eyebrow { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.kit-title { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.kit-desc { font-size: .82rem; color: var(--muted); line-height: 1.65; max-width: 380px; }
.kit-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.kit-price-wrap { display: flex; align-items: baseline; gap: 10px; }
.kit-old { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.kit-new { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.kit-cond { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }
.kit-cta {
  display: inline-block; margin-top: 8px;
  background: var(--gold); color: var(--ink);
  padding: 11px 24px; border-radius: 100px;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; transition: all .25s;
}
.kit-cta:hover { background: var(--gold2); transform: translateY(-1px); }
@media (max-width: 900px) {
  .kit-promo { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .kit-right { align-items: flex-start; }
  .kit-badge { top: 12px; right: 12px; }
}

/* Curriculum scroll hint mobile */
.curr-scroll-hint {
  display: none;
  align-items: center; gap: 10px;
  margin-bottom: 14px;
  color: var(--muted); font-size: .75rem; letter-spacing: .08em;
}
.csh-arrow {
  display: flex; align-items: center;
  color: var(--mauve);
  animation: arrowBounce 1.4s ease-in-out infinite;
}

.subtopic.gold { border-color: rgba(212,175,110,.2); color: rgba(212,175,110,.7); }
.subtopic.gold:hover { background: rgba(212,175,110,.1); border-color: rgba(212,175,110,.35); color: var(--gold2); }

/* Subtopics solo 3 días */
.subtopic.adv-only {
  border-color: rgba(212,175,110,.2);
  color: rgba(212,175,110,.75);
  background: rgba(212,175,110,.04);
}
.subtopic.adv-only:hover { background: rgba(212,175,110,.1); border-color: rgba(212,175,110,.35); color: var(--gold2); }
.adv-tag {
  display: inline-block;
  font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(212,175,110,.2); border: 1px solid rgba(212,175,110,.3);
  color: var(--gold); padding: 2px 7px; border-radius: 4px;
  margin-left: 6px; vertical-align: middle; white-space: nowrap;
}

@media (max-width: 900px) {
  .curr-scroll-hint { display: flex; }
}

/* Scroll hint mobile */
.testi-scroll-hint {
  display: none; /* caché sur desktop */
  align-items: center; gap: 10px;
  margin-bottom: 20px;
  color: var(--muted); font-size: .75rem; letter-spacing: .08em;
}
.tsh-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--mauve);
  animation: arrowBounce 1.4s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%,100% { transform: translateX(0); opacity: .6; }
  50%      { transform: translateX(6px); opacity: 1; }
}

@media (max-width: 900px) {
  .testi-section { padding: 72px 20px; background: var(--ink) !important; }
  .tcard-video { width: calc((100% - 16px) / 2); }
  .testi-head { flex-direction: column; align-items: flex-start; }
  .testi-nav { display: none; } /* flèches inutiles sur mobile, remplacées par le swipe */
  .testi-scroll-hint { display: flex; } /* visible uniquement sur mobile */
  .modal-inner { max-width: 320px; }
}
@media (max-width: 480px) {
  .tcard-video { width: 75vw; } /* 1 carte + aperçu de la suivante */
}

/* ── VIDEO SECTION ── */
.video-section {
  background: var(--deep);
  padding: 100px 56px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,192,.07), transparent 65%);
  pointer-events: none;
}
.video-top {
  text-align: center; margin-bottom: 52px; position: relative; z-index: 1;
}
.video-top .section-label { justify-content: center; }
.video-top .section-label::before { display: none; }
.video-top .section-h { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.video-top .section-p { margin: 0 auto; text-align: center; max-width: 440px; }

/* Player wrapper */
.video-player-wrap {
  position: relative; z-index: 1;
  width: 100%; max-width: 800px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(201,168,192,.18);
  box-shadow: 0 40px 100px rgba(0,0,0,.55), 0 0 0 1px rgba(201,168,192,.06);
  cursor: pointer;
  background: var(--panel);
}

/* Thumbnail / poster */
.video-poster {
  position: relative; width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: linear-gradient(135deg, #1A1525, #251B35);
  overflow: hidden;
}
.video-poster img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
  filter: brightness(.82);
}
.video-player-wrap:hover .video-poster img {
  transform: scale(1.03); filter: brightness(.72);
}

/* Grain overlay */
.video-poster::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  opacity: .35; pointer-events: none;
}

/* Play button */
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--mauve);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
  box-shadow: 0 0 0 16px rgba(201,168,192,.12), 0 8px 32px rgba(0,0,0,.4);
  z-index: 2;
}
.video-player-wrap:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 24px rgba(201,168,192,.14), 0 12px 40px rgba(0,0,0,.5);
  background: var(--mauve2);
}
.play-btn svg {
  width: 28px; height: 28px; fill: var(--ink);
  margin-left: 4px; /* optical centering */
}

/* Pulse ring animation */
.play-btn::before {
  content: '';
  position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(201,168,192,.35);
  animation: playPulse 2s ease-in-out infinite;
}
@keyframes playPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.18); opacity: 0; }
}

/* Video caption bar. Lives BELOW the player container, not overlaid, so the
   video frame ends with a clean edge. Same width as the player. */
.video-caption {
  width: 100%; max-width: 800px;
  margin: 14px auto 0;
  background: rgba(13,11,15,.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,192,.1);
  border-radius: 12px;
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.vc-left { display: flex; align-items: center; gap: 14px; }
.vc-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mauve), var(--rose));
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.vc-name { font-size: .85rem; font-weight: 500; color: var(--text); }
.vc-role { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.vc-duration {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.vc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mauve); }

/* Actual video element (hidden until play) */
/* Hero player — sits inside .video-poster, fills the 16:9 box.
   For <video>: object-fit:cover handles the crop natively.
   For <iframe>: object-fit isn't supported, so we scale and translate.
   The .video-fill modifier (added by build) opts into autoplay-fill mode;
   without it the element stays hidden until JS reveals it (legacy click flow). */
.video-actual {
  display: none;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: var(--card);
}
.video-actual.video-fill { display: block; }

/* Encuadre — controlled per video in Sanity (videoFit field). */

/* "Mantener proporciones" — show the full video with side margins. For
   <video> the browser handles it via object-fit. For <iframe> we leave it at
   100% width/height and Vimeo's player letterboxes the portrait source. */
.video-actual.video-fit-contain { object-fit: contain; }
iframe.video-actual.video-fill.video-fit-contain {
  width: 100%; height: 100%;
  left: 0; top: 0;
  transform: none;
  pointer-events: none;
}

/* "Recortar para llenar" — crop the video so it fills the 16:9 container.
   For <iframe> we scale up 177.78% (16:9 ÷ 9:16) so a portrait source covers
   the whole landscape box, then re-center. */
.video-actual.video-fit-cover { object-fit: cover; }
iframe.video-actual.video-fill.video-fit-cover {
  width: 177.78%; height: 177.78%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Custom overlay controls — single mute pill, bottom-right.
   Styled like .play-btn (mauve circle, ink-colored icon) to match the site. */
.video-ctrls {
  position: absolute; right: 18px; bottom: 18px; z-index: 5;
  display: flex; gap: 10px; pointer-events: none;
}
.video-ctrls button {
  pointer-events: auto;
  width: 48px; height: 48px; border-radius: 50%; border: 0;
  background: var(--mauve); color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 0 0 10px rgba(201,168,192,.12), 0 6px 24px rgba(0,0,0,.4);
  padding: 0;
}
.video-ctrls button:hover {
  background: var(--mauve2); transform: scale(1.08);
  box-shadow: 0 0 0 14px rgba(201,168,192,.14), 0 10px 30px rgba(0,0,0,.5);
}
.video-ctrls button svg { width: 20px; height: 20px; fill: currentColor; display: block; }
/* Icon swap: .is-active = currently unmuted (volume > 0). */
.video-ctrls .icon-unmute { display: none; }
.video-ctrls button.is-active .icon-unmute { display: block; }
.video-ctrls button.is-active .icon-mute { display: none; }

/* Transparent click target above iframe — pauses/resumes on tap. Sits under
   the overlay controls so the mute button stays clickable. */
.video-click-pause {
  position: absolute; inset: 0; z-index: 3;
  cursor: pointer; background: transparent; border: 0; padding: 0;
}

/* When the autoplay-fill player is present, hide the static poster/placeholder
   and the grain overlay. The big play button (#playBtn) is NOT hidden by CSS
   here — JS toggles its inline display based on Vimeo player state (visible
   when paused, hidden when playing). */
.video-poster:has(> .video-actual.video-fill) > #posterImg,
.video-poster:has(> .video-actual.video-fill) > #posterPlaceholder { display: none !important; }
.video-poster:has(> .video-actual.video-fill)::after { display: none; }

/* Fallback for browsers without :has() — JS adds .has-autoplay-video to <body>. */
body.has-autoplay-video #posterImg,
body.has-autoplay-video #posterPlaceholder { display: none !important; }
body.has-autoplay-video .video-poster::after { display: none; }
body.has-autoplay-video #videoWrap { cursor: pointer; }
/* Big mauve play button is hidden by default in autoplay mode; JS adds the
   .is-visible class when the video pauses so it reappears as a resume cue. */
body.has-autoplay-video #playBtn { display: none; z-index: 4; cursor: pointer; }
body.has-autoplay-video #playBtn.is-visible { display: flex; }

/* Below player — trust signals */
.video-trust {
  display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 1;
}
.vtrust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .76rem; color: var(--muted); letter-spacing: .04em;
}
.vtrust-item span { font-size: .9rem; }

@media (max-width: 900px) {
  .video-section { padding: 72px 20px; background: var(--deep) !important; }
  .play-btn { width: 62px; height: 62px; }
  .play-btn svg { width: 22px; height: 22px; }
  .video-caption { flex-direction: column; align-items: flex-start; gap: 12px; }
  .video-trust { gap: 18px; }
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* Force dark backgrounds everywhere on mobile */
  html, body { background: var(--ink) !important; -webkit-tap-highlight-color: transparent; cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
  .section { background: inherit; }
  .curriculum { background: var(--deep) !important; }
  .pricing { background: var(--ink) !important; }
  .forwho { background: var(--deep) !important; }
  .location { background: var(--ink) !important; }
  .final { background: var(--deep) !important; }
  footer { background: var(--ink) !important; }

  /* Nav */
  nav { padding: 14px 20px; background: rgba(13,11,15,0.95) !important; }
  nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }

  /* Toutes les sections — padding réduit */
  .section { padding: 44px 20px; }

  /* Hero — match original mobile screenshot:
     left-aligned text, 3 stats column on the right, buttons below */
  .hero {
    min-height: 0;
    padding: 104px 20px 44px;
    background: var(--ink);
    text-align: left;
    align-items: stretch;
    justify-content: flex-start;
  }
  .hero-inner {
    align-items: flex-start;
    max-width: 76%;
    margin: 0;
  }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.4rem); margin-bottom: 16px; }
  .hero-desc { max-width: 100%; margin: 0 0 28px; font-size: 1rem; line-height: 1.6; }
  .hero-actions { gap: 10px; justify-content: flex-start; }
  /* Stats column on the right, centered vertically against the hero body */
  .hero-bottom { display: contents; }
  .hero-proof {
    position: absolute;
    top: 104px;
    bottom: 44px;
    right: 20px;
    margin-top: 0;
    width: 22%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    border-top: none;
    padding-top: 0;
    z-index: 2;
  }
  .proof-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    text-align: left;
    width: 100%;
  }
  .proof-item:last-child { border-bottom: none; }
  .proof-item + .proof-item { border-left: none; padding-left: 0; margin-left: 0; }
  .proof-num { font-size: 1.8rem; }
  .proof-label { font-size: .68rem; line-height: 1.4; }

  /* Section headers — moins de marge */
  .section-h { font-size: clamp(1.9rem, 7vw, 2.6rem); margin-bottom: 10px; }
  .section-p { margin-bottom: 0; font-size: .92rem; line-height: 1.645; }
  .section-label { margin-bottom: 8px; }

  /* Ticker */
  .ticker { padding: 10px 0; }

  /* Curriculum tabs */
  .curr-layout {
    grid-template-columns: 1fr;
    border-radius: 10px; overflow: hidden;
    margin-top: 28px;
  }
  .curr-tabs {
    display: flex; overflow-x: auto; border-right: none;
    border-bottom: 1px solid var(--border);
    background: var(--panel);
    scrollbar-width: none;
  }
  .curr-tabs::-webkit-scrollbar { display: none; }
  .curr-tab {
    flex-shrink: 0; border-bottom: none;
    border-right: 1px solid var(--border);
    background: var(--panel);
    min-width: 130px;
    padding: 16px 18px;
  }
  .curr-tab.active { background: rgba(201,168,192,.1); }
  .curr-tab.advanced-tab { background: rgba(212,175,110,.06); }
  .curr-tab.advanced-tab.active { background: rgba(212,175,110,.12); }
  .curr-tab::before { top: auto; bottom: 0; left: 0; right: 0; width: auto; height: 3px; transform: scaleX(0); }
  .curr-tab.active::before { transform: scaleX(1); }
  .curr-panel { padding: 20px 18px; background: var(--card); }
  .curr-panels { background: var(--card); }
  .panel-title { font-size: 1.5rem; margin-bottom: 8px; }
  .panel-desc { font-size: .88rem; line-height: 1.6; margin-bottom: 16px; }
  .acc-desc { font-size: .88rem; line-height: 1.55; }
  .technique-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .tcard { background: rgba(212,175,110,.08); }

  /* Pricing */
  .pricing-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cards-wrap { grid-template-columns: 1fr; max-width: 100%; gap: 12px; }
  .pcard { background: var(--panel); border-radius: 12px; padding: 28px 24px; }
  .pcard.star { background: linear-gradient(135deg, #1E1630, #251B3A); }
  .pcard-price { font-size: 3rem; margin-bottom: 2px; }
  .pcard-sub { margin-bottom: 16px; }
  .pcard-desc { margin-bottom: 18px; font-size: .88rem; line-height: 1.55; }
  .pcard-divider { margin-bottom: 14px; }
  .feat { padding: 5px 0; font-size: .86rem; line-height: 1.35; }
  .pcard-cta { margin-top: 20px; padding: 12px; }
  .comp-wrap { overflow-x: auto; margin-top: 28px; }
  table.comp { min-width: 540px; }

  /* Kit promo */
  .kit-promo { padding: 20px; flex-direction: column; margin-top: 20px; }
  .kit-title { font-size: 1.1rem; }
  .kit-desc { font-size: .8rem; }
  .kit-right { align-items: flex-start; }

  /* Testimonials */
  .testi-section { padding: 44px 20px; background: var(--ink) !important; }
  .testi-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
  .tcard-video { width: calc((100% - 12px) / 2); }

  /* For who */
  .fw-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
  .fw-card { background: var(--panel); padding: 24px 22px; }
  .fw-n { font-size: 2.5rem; margin-bottom: 12px; }
  .fw-title { font-size: 1.05rem; }
  .fw-desc { font-size: .88rem; line-height: 1.55; }

  /* Location */
  .loc-grid { grid-template-columns: 1fr; gap: 24px; }
  .loc-cta-card { background: var(--panel); padding: 20px 22px; }
  .sch-item { background: var(--card); }
  .loc-block { margin-bottom: 20px; }

  /* Video section */
  .video-section { padding: 44px 20px 24px; background: var(--deep) !important; }
  .video-top { margin-bottom: 28px; }
  .video-trust { gap: 12px; margin-top: 20px; flex-direction: column; align-items: flex-start; }
  .vtrust-item { font-size: .92rem; }

  /* Final CTA */
  .final { padding: 60px 20px; }
  .final-h { font-size: clamp(2.4rem, 9vw, 3.5rem); margin-bottom: 16px; }
  .final-p { font-size: .9rem; margin-bottom: 28px; }
  .final-actions { gap: 10px; }

  /* Footer */
  footer { padding: 24px 20px; flex-direction: column; text-align: center; gap: 8px; }
}

/* ── DESKTOP TYPE SCALE BOOST (≥901px) ── */
@media (min-width: 901px) {
  body { font-size: 1.05rem; }

  /* Nav — slightly larger links + CTA */
  .nav-logo { font-size: 1.4rem; }
  .nav-links { gap: 44px; }
  .nav-links a { font-size: .85rem; }
  .nav-wa { font-size: .82rem; padding: 13px 30px; }

  /* Hero — wider canvas, larger description */
  .hero { padding: 160px 72px 120px; }
  .hero-inner { max-width: 960px; }
  .hero-tag { font-size: .8rem; padding: 9px 20px; margin-bottom: 36px; }
  .hero h1 { font-size: clamp(2.6rem, 4.8vw, 4.4rem); margin-bottom: 24px; }
  .hero-desc { font-size: 1.25rem; max-width: 640px; line-height: 1.65; margin-bottom: 0; }
  .btn-pill { padding: 17px 42px; font-size: .92rem; }

  /* Bottom row: buttons + stats on the same horizontal line */
  .hero-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 72px;
    margin-top: 64px;
    flex-wrap: wrap;
    position: relative; z-index: 2;
    animation: fadeSlide .7s .4s ease both;
  }
  .hero-proof { margin-top: 0; }
  .proof-item { padding: 0 44px; }
  .proof-item + .proof-item { padding-left: 44px; margin-left: 44px; }
  .proof-num { font-size: 3.6rem; }
  .proof-label { font-size: .95rem; margin-top: 10px; letter-spacing: .08em; }

  /* Ticker */
  .ticker-item { font-size: .82rem; padding: 0 36px; }

  /* Section shell — more breathing room + larger type */
  .section { padding: 130px 72px; }
  .section-label { font-size: .78rem; margin-bottom: 18px; }
  .section-label::before { width: 28px; }
  .section-h { font-size: clamp(2.8rem, 5vw, 4.4rem); margin-bottom: 20px; }
  .section-p { font-size: 1.15rem; max-width: 560px; }

  /* Video section */
  .video-section { padding: 120px 72px; }
  .video-top .section-h { font-size: clamp(2.6rem, 4.5vw, 3.8rem); }
  .video-top .section-p { font-size: 1.1rem; max-width: 520px; }
  .vc-name { font-size: .95rem; }
  .vc-role { font-size: .82rem; }
  .vc-duration { font-size: .82rem; }
  .vtrust-item { font-size: .88rem; }

  /* Curriculum — desktop accordion */
  .curr-desktop { margin-top: 88px; }
  .curr-legend-item { font-size: .8rem !important; }
  .curr-legend-hint { font-size: .78rem !important; }
  .curr-mod-label { font-size: .82rem; padding: 10px 6px; }
  .curr-accordion { height: 660px; }
  .acc-num { font-size: 1rem; color: rgba(255,255,255,0.55); }
  .acc-vtitle { font-size: .88rem; color: rgba(255,255,255,0.5); }
  .acc-eyebrow { font-size: .8rem; margin-bottom: 14px; }
  .acc-title { font-size: 2.1rem; margin-bottom: 18px; }
  .acc-desc { font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }
  .acc-chip { font-size: .88rem; padding: 9px 16px; }
  .acc-footer { font-size: .88rem; padding-top: 22px; }
  .curr-acc-counter { font-size: .88rem; }
  .curr-acc-arrow { width: 42px; height: 42px; font-size: 1rem; }

  /* Pricing */
  .pricing-head { margin-bottom: 64px; }
  .cards-wrap { max-width: 1040px; gap: 22px; }
  .pcard { padding: 48px 44px; }
  .pcard-chip { font-size: .72rem; padding: 5px 14px; margin-bottom: 24px; }
  .pcard-price { font-size: 4.6rem; }
  .pcard-price sup { font-size: 1.9rem; }
  .pcard-sub { font-size: .88rem; margin-bottom: 28px; }
  .pcard-name { font-size: 1.55rem; margin-bottom: 10px; }
  .pcard-desc { font-size: .98rem; line-height: 1.7; margin-bottom: 32px; }
  .feat { font-size: .95rem; padding: 8px 0; }
  .feat-check { font-size: .85rem; }
  .pcard-cta { padding: 16px; font-size: .88rem; }

  /* Comparison table */
  .comp-title { font-size: 1.65rem; margin-bottom: 32px; }
  table.comp { font-size: .95rem; }
  table.comp th { font-size: .78rem; padding: 16px 22px; }
  table.comp td { padding: 16px 22px; }

  /* Kit promo */
  .kit-promo { padding: 36px 40px; }
  .kit-eyebrow { font-size: .75rem; }
  .kit-title { font-size: 1.5rem; margin-bottom: 10px; }
  .kit-desc { font-size: .95rem; max-width: 440px; }
  .kit-old { font-size: 1.15rem; }
  .kit-new { font-size: 2.5rem; }
  .kit-cond { font-size: .82rem; }
  .kit-cta { font-size: .85rem; padding: 13px 28px; }

  /* Testimonials */
  .testi-section { padding: 130px 72px; }
  .testi-head { margin-bottom: 60px; }
  .tcard-name { font-size: .95rem; }
  .tcard-tag { font-size: .72rem; }

  /* For who */
  .fw-grid { gap: 22px; margin-top: 64px; }
  .fw-card { padding: 44px 38px; }
  .fw-n { font-size: 4rem; margin-bottom: 24px; }
  .fw-title { font-size: 1.4rem; margin-bottom: 14px; }
  .fw-desc { font-size: .98rem; line-height: 1.72; }

  /* Location */
  .loc-grid { gap: 72px; margin-top: 64px; }
  .loc-key { font-size: .75rem; margin-bottom: 10px; }
  .loc-val { font-size: 1.2rem; }
  .sch-item { padding: 20px 22px; }
  .sch-label { font-size: .72rem; }
  .sch-time { font-size: 1.1rem; }
  .loc-cta-card { padding: 32px 32px; }
  .lcc-label { font-size: .75rem; }
  .lcc-title { font-size: 1.15rem; }
  .lcc-arrow { font-size: 1.6rem; }

  /* Final CTA */
  .final { padding: 160px 72px; }
  .final-h { font-size: clamp(3.6rem, 7vw, 6.5rem); margin-bottom: 32px; }
  .final-p { font-size: 1.2rem; max-width: 500px; margin-bottom: 56px; }

  /* Footer */
  footer { padding: 40px 72px; font-size: .85rem; }
  .footer-logo { font-size: 1.15rem; }
}
