/* ══════════════════════════════════════════════════
   MASTERIA v3 — Light Theme · Premium Education
   ══════════════════════════════════════════════════ */

:root {
  --bg: #fafbfd;
  --bg-alt: #f0f2f8;
  --bg-card: #ffffff;
  --bg-glass: rgba(255,255,255,0.7);
  --bg-dark: #0c1222;

  --gold: #b8952a;
  --gold-light: #d4af37;
  --gold-bright: #e8c84a;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --purple: #7c3aed;
  --green: #16a34a;
  --red: #dc2626;

  --text-primary: #0c1222;
  --text-secondary: #4b5068;
  --text-muted: #868ca3;

  --border: rgba(0,0,0,0.07);
  --border-hover: rgba(0,0,0,0.13);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-glow-gold: 0 8px 32px rgba(184,149,42,0.18);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max-w: 1200px;
  --section-py: clamp(48px, 7vw, 88px);
  --section-px: clamp(20px, 5vw, 80px);
  --radius: 20px;
  --radius-sm: 12px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: var(--font-body); background: var(--bg);
  color: var(--text-primary); line-height: 1.6; overflow-x: hidden;
}
img, svg { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--section-px); }
.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text {
  background: linear-gradient(135deg, #2563eb, #7c3aed, #db2777);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-blue {
  background: linear-gradient(135deg, #2563eb, #06b6d4, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-warm {
  background: linear-gradient(135deg, #2563eb, #7c3aed, #f97316);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-royal {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899, #f97316);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Particles ── */
#particles-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay:.08s } .reveal-d2 { transition-delay:.16s }
.reveal-d3 { transition-delay:.24s } .reveal-d4 { transition-delay:.32s }
.reveal-d5 { transition-delay:.40s } .reveal-d6 { transition-delay:.48s }

/* ═══════ NAV ═══════ */
.nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  padding: 0 var(--section-px); height: 72px;
  display: flex; align-items: center;
  background: rgba(250,251,253,0.6);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(250,251,253,0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; letter-spacing: 2px; text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: color .25s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  font-size: 14px !important; font-weight: 600 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  padding: 10px 24px; border-radius: 100px;
  transition: transform .25s, box-shadow .25s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 24px rgba(37,99,235,0.25); }
.nav-menu-btn {
  display:none; background:none; border:none; cursor:pointer;
  width:40px; height:40px;
  flex-direction:column; justify-content:center; align-items:center; gap:6px;
  position:relative; z-index:210;
  -webkit-tap-highlight-color: transparent;
}
.nav-menu-btn span {
  display:block; width:22px; height:2px; background:var(--text-primary);
  border-radius:2px; transition:transform .3s cubic-bezier(.16,1,.3,1), opacity .2s;
}
.nav-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-menu-btn.active span:nth-child(2) { opacity:0; transform:translateX(-6px); }
.nav-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ═══════ BUTTONS ═══════ */
.btn-glow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  padding: 16px 36px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.btn-glow.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  box-shadow: var(--shadow-md);
}
.btn-glow.primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow-gold); }
.btn-glow.secondary {
  color: var(--text-primary); background: var(--bg-card);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.btn-glow.secondary:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); border-color:var(--border-hover); }

/* ═══════ HERO ═══════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 120px var(--section-px) 60px;
  overflow: visible; text-align: left;
}
.hero-glow {
  position: absolute; top: -15%; left: 30%; transform: translateX(-50%);
  width: 900px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.06) 0%, rgba(124,58,237,0.04) 40%, transparent 70%);
  filter: blur(50px); animation: heroFloat 12s ease-in-out infinite; pointer-events: none;
}
.hero-glow-gold {
  position: absolute; top: 20%; right: 5%;
  width: 500px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(184,149,42,0.07) 0%, transparent 70%);
  filter: blur(50px); animation: heroFloat 10s ease-in-out infinite reverse; pointer-events: none;
}
@keyframes heroFloat {
  0%,100% { transform: translateX(-50%) scale(1) translateY(0); }
  50% { transform: translateX(-50%) scale(1.08) translateY(-15px); }
}

/* ── Hero grid 2 colonnes ── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.hero-content { position: relative; z-index: 2; }

/* ── Logo programme ── */
.hero-program-logo { margin-bottom: 28px; }
.hero-program-logo-img {
  height: 52px; width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}

/* ── Badge pill ── */
.hero-badge-dot {
  width: 7px; height: 7px; background: var(--blue);
  border-radius: 50%; animation: pulse 2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ── H1 ── */
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 62px); font-weight: 800;
  line-height: 1.1; letter-spacing: -.035em; margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px); color: var(--text-secondary);
  max-width: 500px; margin: 0 0 40px; line-height: 1.8;
}
.hero-btns { display:flex; align-items:center; justify-content:flex-start; gap:16px; flex-wrap:wrap; }

/* ── Photo colonne droite ── */
.hero-visual { position: relative; z-index: 2; max-width: 380px; margin-left: auto; }
.hero-photo-wrap { position: relative; }
.hero-photo {
  width: 100%; display: block;
  border-radius: 24px;
  aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  box-shadow: 0 40px 100px rgba(0,0,0,0.18), 0 4px 20px rgba(0,0,0,0.08);
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.hero-photo-wrap:hover .hero-photo {
  transform: perspective(1400px) rotateY(0deg) rotateX(0deg) scale(1.01);
}

/* ── Floating cards ── */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);
  display: flex; align-items: center; gap: 12px; z-index: 10;
}
.hfc-1 {
  top: 20%; left: -44px;
  animation: hfcFloat1 4.5s ease-in-out infinite;
}
.hfc-2 {
  bottom: 20%; right: -44px;
  animation: hfcFloat2 5.5s ease-in-out infinite;
}
@keyframes hfcFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes hfcFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }
.hfc-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(184,149,42,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--gold);
}
.hfc-icon.green { background: rgba(16,185,129,0.1); color: var(--green); }
.hfc-val {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: 3px;
}
.hfc-val.green { color: var(--green); }
.hfc-label { font-size: 11px; color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.hero-photo-badge {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px; padding: 10px 22px;
  font-size: 12px; font-weight: 600; color: var(--text-secondary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07); white-space: nowrap; z-index: 10;
}
.hero-photo-badge i { color: var(--blue); margin-right: 6px; }

/* Hero mockup */
.hero-mockup { margin-top: 72px; perspective: 1200px; position: relative; z-index: 2; }
.hero-mockup-inner {
  transform: rotateX(6deg);
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.hero-mockup:hover .hero-mockup-inner { transform: rotateX(2deg); }
.mockup-topbar {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:20px; padding-bottom:14px; border-bottom:1px solid var(--border);
}
.mockup-dots { display:flex; gap:7px; }
.mockup-dot { width:10px; height:10px; border-radius:50%; }
.mockup-dot.r { background:#ef4444; } .mockup-dot.y { background:#eab308; } .mockup-dot.g { background:#22c55e; }
.mockup-tabs { display:flex; gap:4px; }
.mockup-tab {
  padding:6px 14px; border-radius:8px;
  font-size:12px; font-weight:500; color:var(--text-muted);
}
.mockup-tab.active { background:var(--bg-alt); color:var(--text-primary); }
.mockup-body { display:grid; grid-template-columns:1fr 1.6fr .8fr; gap:14px; }
.mockup-panel {
  border-radius:14px; padding:18px;
  background:var(--bg-alt); border:1px solid var(--border);
}
.mockup-panel-title {
  font-size:11px; font-weight:600; color:var(--text-muted);
  text-transform:uppercase; letter-spacing:.08em; margin-bottom:12px;
}
.mockup-stat-row { display:flex; align-items:baseline; gap:8px; margin-bottom:10px; }
.mockup-stat-big { font-family:var(--font-display); font-size:26px; font-weight:700; }
.mockup-stat-badge {
  font-size:11px; font-weight:600; padding:3px 8px;
  border-radius:6px; background:rgba(22,163,74,0.1); color:var(--green);
}
.mockup-mini-card {
  padding:12px; border-radius:10px; margin-bottom:8px;
  background:var(--bg-card); border:1px solid var(--border);
}
.mockup-mini-label { font-size:11px; color:var(--text-muted); margin-bottom:3px; }
.mockup-mini-val { font-family:var(--font-display); font-size:17px; font-weight:600; }
.mockup-chart-line { width:100%; height:80px; }

/* Hero stats */
.hero-stats {
  margin-top:44px; display:flex; justify-content:center; gap:48px;
  flex-wrap:wrap; position:relative; z-index:2;
}
.hero-stat { text-align:center; }
.hero-stat-val { font-family:var(--font-display); font-size:38px; font-weight:700; }
.hero-stat-label {
  font-size:12px; color:var(--text-muted); margin-top:4px;
  text-transform:uppercase; letter-spacing:.08em;
}

/* ═══════ SECTION SHARED ═══════ */
.section { padding: var(--section-py) 0; position: relative; z-index: 1; }
.section.alt { background: var(--bg-alt); }
.section-label {
  font-size:12px; font-weight:700; text-transform:uppercase;
  letter-spacing:.15em; color:var(--blue); margin-bottom:14px;
}
.section-label.gold { color:var(--gold); }
.section-title {
  font-family:var(--font-display);
  font-size:clamp(32px,4.5vw,52px); font-weight:700;
  line-height:1.14; letter-spacing:-.025em; margin-bottom:18px;
}
.section-desc {
  font-size:clamp(16px,1.6vw,18px); color:var(--text-secondary);
  max-width:560px; line-height:1.75;
}
.section-sep {
  width:100%; height:1px; position:relative; z-index:1;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ═══════ WHY INVEST ═══════ */
.why-grid {
  margin-top:56px; display:grid;
  grid-template-columns:1fr 1fr; gap:24px;
}
.why-card {
  border-radius:var(--radius); padding:40px 36px;
  background:var(--bg-card); border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  transition:transform .3s, box-shadow .3s;
}
.why-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.why-card.wide { grid-column: span 2; }
.why-card h3 {
  font-family:var(--font-display); font-size:22px; font-weight:600;
  margin-bottom:12px; line-height:1.35;
}
.why-card p { font-size:15px; color:var(--text-secondary); line-height:1.7; }
.why-stat-row {
  display:flex; gap:40px; margin-top:20px; flex-wrap:wrap;
}
.why-stat-item { text-align:center; }
.why-stat-big {
  font-family:var(--font-display); font-size:36px; font-weight:800;
  line-height:1;
}
.why-stat-big.red { color:var(--red); }
.why-stat-big.gold { color:var(--gold); }
.why-stat-sub { font-size:13px; color:var(--text-muted); margin-top:4px; }

/* ═══════ PROBLEM — Bento ═══════ */
/* ═══════ SECTION PROBLÈME — Liste diagnostique ═══════ */
.problem-list {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
}
.problem-row {
  display: grid;
  grid-template-columns: 72px 1fr 180px;
  gap: 28px;
  padding: 32px 36px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background .25s;
  cursor: default;
}
.problem-row:last-child { border-bottom: none; }
.problem-row::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, #dc2626, #ec4899);
  opacity: 0; transition: opacity .3s;
}
.problem-row:hover { background: rgba(220,38,38,0.02); }
.problem-row:hover::before { opacity: 1; }
.problem-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 900;
  line-height: 1; letter-spacing: -.05em;
  color: rgba(220,38,38,0.1);
  text-align: center;
  transition: color .3s;
}
.problem-row:hover .problem-num { color: rgba(220,38,38,0.18); }
.problem-icon {
  width: 36px; height: 36px;
  background: rgba(220,38,38,0.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #dc2626;
  margin-bottom: 10px;
  transition: background .3s;
}
.problem-row:hover .problem-icon { background: rgba(220,38,38,0.12); }
.problem-body { flex: 1; }
.problem-body h3 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  margin-bottom: 6px; color: var(--text-primary);
}
.problem-body p {
  font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 0;
}
.problem-stat {
  text-align: right; padding-left: 16px;
  border-left: 1px solid var(--border);
}
.problem-stat-val {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 900;
  color: #dc2626; line-height: 1; margin-bottom: 6px;
}
.problem-stat-label {
  font-size: 11px; color: var(--text-muted);
  line-height: 1.45;
}
.problem-fix {
  display: flex; align-items: flex-start; gap: 16px;
  margin-top: 28px; padding: 24px 32px;
  background: var(--bg-card); border: 1px solid rgba(37,99,235,0.15);
  border-radius: 16px; font-size: 15px; line-height: 1.7;
  color: var(--text-secondary);
}
.problem-fix i {
  font-size: 18px; color: var(--blue);
  margin-top: 2px; flex-shrink: 0;
}
.problem-fix strong { color: var(--text-primary); }

@media(max-width:900px) {
  .problem-row { grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 20px; }
  .problem-stat { display: none; }
  .problem-num { font-size: 40px; }
}
@media(max-width:600px) {
  .problem-row { grid-template-columns: 1fr; gap: 12px; padding: 20px 18px; }
  .problem-num { font-size: 32px; text-align: left; }
}

/* ═══════ PROGRAMME ═══════ */
.programme-header { text-align:center; margin-bottom:56px; }
.programme-header .section-desc { margin:0 auto; }
.modules-grid {
  display:grid; grid-template-columns:repeat(auto-fill, minmax(340px, 1fr)); gap:14px;
}
.module-card {
  position:relative; padding:26px 22px;
  border-radius:var(--radius-sm); background:var(--bg-card);
  border:1px solid var(--border); box-shadow:var(--shadow-sm);
  display:flex; gap:16px; overflow:hidden;
  transition:transform .3s, box-shadow .3s;
}
.module-card:hover { transform:translateY(-2px); box-shadow:var(--shadow-md); }
.module-num {
  flex-shrink:0; width:42px; height:42px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:15px; font-weight:700;
  background:rgba(37,99,235,0.06); color:var(--blue);
  border:1px solid rgba(37,99,235,0.1);
}
.module-body h3 {
  font-family:var(--font-display); font-size:15px; font-weight:600; line-height:1.45;
}
.module-card.bonus {
  grid-column:1/-1;
  border-color:rgba(37,99,235,0.12);
  background:linear-gradient(135deg, rgba(37,99,235,0.04), rgba(124,58,237,0.02));
}
.module-card.bonus .module-num {
  background:linear-gradient(135deg, #2563eb, #7c3aed);
  color:#fff; border:none;
}

/* ═══════ INCLUDES ═══════ */
.includes-grid {
  margin-top:56px; display:grid;
  grid-template-columns:repeat(2, 1fr); gap:20px;
}
.include-card {
  border-radius:var(--radius); padding:36px 32px;
  background:var(--bg-card); border:1px solid var(--border);
  box-shadow:var(--shadow-sm); transition:transform .3s, box-shadow .3s;
}
.include-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.include-icon {
  width:48px; height:48px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px; font-size:22px;
}
.include-icon.gold { background:rgba(184,149,42,0.08); }
.include-icon.blue { background:rgba(37,99,235,0.06); }
.include-icon.purple { background:rgba(124,58,237,0.06); }
.include-icon.green { background:rgba(22,163,74,0.06); }
.include-card h3 {
  font-family:var(--font-display); font-size:20px; font-weight:600; margin-bottom:10px;
}
.include-card p { font-size:15px; color:var(--text-secondary); line-height:1.7; }

/* ═══════ MASTERY — Bento ═══════ */
/* ═══════ MASTERY ORBIT ═══════ */
@keyframes ringRotate  { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes ringRotateR { to { transform: translate(-50%,-50%) rotate(-360deg); } }

.mastery-orbit-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 20px;
  margin: 64px auto 0;
  max-width: 820px;
  position: relative;
}

/* Anneaux décoratifs */
.mastery-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; pointer-events: none; z-index: 0;
}
.ring-outer {
  width: 360px; height: 360px; margin: -180px;
  border: 1px dashed rgba(37,99,235,0.13);
  animation: ringRotate 28s linear infinite;
}
.ring-inner {
  width: 200px; height: 200px; margin: -100px;
  border: 1px dashed rgba(184,149,42,0.16);
  animation: ringRotateR 20s linear infinite;
}

/* Centre — placé en grille col 2, row 2 */
.mastery-orbit-center {
  grid-column: 2; grid-row: 2;
  background: linear-gradient(145deg, rgba(37,99,235,0.07), rgba(37,99,235,0.02));
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 28px; padding: 32px 24px;
  text-align: center; z-index: 1;
  box-shadow: 0 12px 40px rgba(37,99,235,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.mastery-orbit-center h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  margin: 14px 0 10px; line-height: 1.3;
}
.mastery-orbit-center p {
  font-size: 13px; color: var(--text-muted); line-height: 1.7; margin: 0;
}

/* Icône partagée */
.moc-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto; font-size: 20px;
  background: rgba(184,149,42,0.08); border: 1px solid rgba(184,149,42,0.15);
  color: var(--gold); flex-shrink: 0;
}
.moc-icon.blue {
  background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.15);
  color: var(--blue);
}

/* Items orbitaux — placement grille explicite */
.mastery-orbit-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 22px; padding: 24px 18px;
  text-align: center; z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.mastery-orbit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.mastery-orbit-item h4 {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  margin: 12px 0 8px; line-height: 1.3; color: var(--text-primary);
}
.mastery-orbit-item p {
  font-size: 12px; color: var(--text-muted); line-height: 1.6; margin: 0;
}

/* Placement en croix */
.moi-top    { grid-column: 2; grid-row: 1; }
.moi-right  { grid-column: 3; grid-row: 2; }
.moi-bottom { grid-column: 2; grid-row: 3; }
.moi-left   { grid-column: 1; grid-row: 2; }

/* Mobile : 1 colonne */
@media(max-width:900px) {
  .mastery-orbit-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    max-width: 100%;
    gap: 14px; margin-top: 40px;
  }
  .mastery-ring { display: none; }
  .mastery-orbit-center,
  .mastery-orbit-item {
    grid-column: 1 !important; grid-row: auto !important;
    flex-direction: row; text-align: left;
    padding: 20px 18px; border-radius: 18px;
    align-items: center; gap: 16px;
  }
  .mastery-orbit-center { order: -1; }
  .mastery-orbit-center h3 { font-size: 16px; margin: 0 0 4px; }
  .mastery-orbit-center p,
  .mastery-orbit-item p { font-size: 13px; }
  .mastery-orbit-item h4 { font-size: 14px; margin: 0 0 4px; }
  .mastery-orbit-item:hover { transform: none; }
  .mastery-orbit-center .moc-icon,
  .mastery-orbit-item .moc-icon { margin: 0; }
  .mastery-orbit-center > *:last-child,
  .mastery-orbit-item > *:last-child { flex: 1; }
}

/* ═══════ JOURNEY ═══════ */
.journey-header { text-align:center; margin-bottom:64px; }
.journey-header .section-desc { margin:0 auto; }
.journey-grid {
  display:grid; grid-template-columns:repeat(4, 1fr); gap:20px;
  max-width:1100px; margin:0 auto;
}
.journey-card {
  border-radius:var(--radius); padding:36px 28px;
  background:var(--bg-card); border:1px solid var(--border);
  box-shadow:var(--shadow-sm); position:relative; overflow:hidden;
  transition:transform .35s, box-shadow .35s;
}
.journey-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.journey-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, #2563eb, #7c3aed, #ec4899);
  opacity:0; transition:opacity .3s;
}
.journey-card:hover::before { opacity:1; }
.journey-num {
  font-family:var(--font-display); font-size:40px; font-weight:800;
  line-height:1; margin-bottom:18px;
  background:linear-gradient(135deg, rgba(37,99,235,0.2), rgba(124,58,237,0.15));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.journey-card h3 { font-family:var(--font-display); font-size:17px; font-weight:600; margin-bottom:10px; }
.journey-card p { font-size:14px; color:var(--text-secondary); line-height:1.7; }

/* ═══════ FOR WHO ═══════ */
.for-who-grid { margin-top:56px; display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.for-who-card {
  border-radius:var(--radius); padding:40px 36px;
  background:var(--bg-card); border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.for-who-card h3 {
  font-family:var(--font-display); font-size:20px; font-weight:600; margin-bottom:20px;
  display:flex; align-items:center; gap:10px;
}
.for-who-card ul { display:flex; flex-direction:column; gap:12px; }
.for-who-card li {
  font-size:15px; color:var(--text-secondary); line-height:1.6;
  padding-left:24px; position:relative;
}
.for-who-card li::before {
  content:''; position:absolute; left:0; top:8px;
  width:8px; height:8px; border-radius:50%;
}
.for-who-card.yes li::before { background:var(--green); }
.for-who-card.no li::before { background:var(--red); opacity:.6; }

/* ═══════ PRICING ═══════ */
.pricing-card {
  max-width:560px; margin:56px auto 0;
  border-radius:var(--radius); padding:48px 44px;
  background:var(--bg-card); border:2px solid rgba(184,149,42,0.2);
  box-shadow:var(--shadow-lg); text-align:center;
  position:relative; overflow:hidden;
}
.pricing-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, #2563eb, #7c3aed, #ec4899, #f97316);
}
.pricing-label {
  font-size:13px; font-weight:700; text-transform:uppercase;
  letter-spacing:.1em; color:var(--blue); margin-bottom:8px;
}
.pricing-title {
  font-family:var(--font-display); font-size:24px; font-weight:700; margin-bottom:4px;
}
.pricing-sub { font-size:14px; color:var(--text-muted); margin-bottom:28px; }
.pricing-amount {
  display:flex; align-items:baseline; justify-content:center; gap:12px;
  margin-bottom:8px;
}
.pricing-old {
  font-family:var(--font-display); font-size:24px; font-weight:500;
  text-decoration:line-through; color:var(--text-muted);
}
.pricing-current {
  font-family:var(--font-display); font-size:56px; font-weight:800;
}
.pricing-period { font-size:14px; color:var(--text-muted); margin-bottom:32px; }
.pricing-features { text-align:left; margin-bottom:32px; display:flex; flex-direction:column; gap:12px; }
.pricing-features li {
  font-size:15px; color:var(--text-secondary); line-height:1.5;
  padding-left:28px; position:relative;
}
.pricing-features li::before {
  content:'✓'; position:absolute; left:0; top:0;
  color:var(--green); font-weight:700;
}
.pricing-guarantee {
  margin-top:24px; padding:16px 20px; border-radius:var(--radius-sm);
  background:var(--bg-alt); font-size:14px; color:var(--text-secondary);
}

/* ═══════ FOUNDER ═══════ */
.founder-grid { margin-top:56px; display:grid; grid-template-columns:1fr 1.5fr; gap:40px; align-items:start; }
.founder-photo {
  border-radius:var(--radius); aspect-ratio:4/5;
  background:var(--bg-alt); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; color:var(--text-muted); font-style:italic;
}
.founder-bio h3 { font-family:var(--font-display); font-size:28px; font-weight:700; margin-bottom:6px; }
.founder-role { font-size:15px; color:var(--blue); font-weight:600; margin-bottom:20px; }
.founder-bio p { font-size:15px; color:var(--text-secondary); line-height:1.75; margin-bottom:16px; }
.founder-stats { display:flex; gap:32px; margin-top:24px; flex-wrap:wrap; }
.founder-stat-val { font-family:var(--font-display); font-size:28px; font-weight:700; color:var(--blue); }
.founder-stat-label { font-size:12px; color:var(--text-muted); text-transform:uppercase; letter-spacing:.06em; }

/* ═══════ TESTIMONIALS ═══════ */
.testimonials-grid { margin-top:56px; display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testimonial-card {
  border-radius:var(--radius); padding:32px 28px;
  background:var(--bg-card); border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.testimonial-stars { color:var(--gold-bright); font-size:16px; letter-spacing:2px; margin-bottom:14px; }
.testimonial-avatar {
  width:40px; height:40px; border-radius:50%;
  background:linear-gradient(135deg, #2563eb, #7c3aed);
  display:flex; align-items:center; justify-content:center;
  font-size:15px; font-weight:700; color:#fff;
}
.testimonial-text { font-size:15px; color:var(--text-secondary); line-height:1.7; margin-bottom:20px; font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.testimonial-avatar {
  width:40px; height:40px; border-radius:50%;
  background:linear-gradient(135deg, var(--gold), var(--blue));
  display:flex; align-items:center; justify-content:center;
  font-size:15px; font-weight:700; color:#fff;
}
.testimonial-name { font-size:14px; font-weight:600; }
.testimonial-role { font-size:12px; color:var(--text-muted); }

/* ═══════ FAQ ═══════ */
.faq-list { max-width:760px; margin:56px auto 0; display:flex; flex-direction:column; gap:12px; }
.faq-item {
  border-radius:var(--radius-sm); background:var(--bg-card);
  border:1px solid var(--border); box-shadow:var(--shadow-sm);
  overflow:hidden;
}
.faq-q {
  width:100%; padding:20px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-family:var(--font-display); font-size:16px; font-weight:600;
  background:none; border:none; cursor:pointer; text-align:left;
  color:var(--text-primary); transition:color .2s;
}
.faq-q:hover { color:var(--gold); }
.faq-chevron {
  flex-shrink:0; width:20px; height:20px;
  transition:transform .3s;
}
.faq-item.open .faq-chevron { transform:rotate(180deg); }
.faq-a {
  max-height:0; overflow:hidden;
  transition:max-height .4s cubic-bezier(.16,1,.3,1), padding .3s;
  padding:0 24px;
}
.faq-item.open .faq-a { max-height:400px; padding:0 24px 20px; }
.faq-a p { font-size:15px; color:var(--text-secondary); line-height:1.7; }

/* ═══════ FINAL CTA ═══════ */
.final-cta { text-align:center; position:relative; overflow:hidden; }
.final-cta-bg {
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(184,149,42,0.05), transparent),
    radial-gradient(ellipse 40% 60% at 50% 0%, rgba(37,99,235,0.04), transparent);
}
.final-cta .container { position:relative; z-index:1; }
.final-cta .section-title { max-width:640px; margin:0 auto 18px; }
.final-cta .section-desc { max-width:500px; margin:0 auto 40px; }

/* ═══════ FOOTER ═══════ */
.footer {
  padding:60px 0 40px; border-top:1px solid var(--border);
  position:relative; z-index:1;
  background:var(--bg-alt);
}
.footer-inner {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:20px;
}
.footer-logo {
  font-family:var(--font-display); font-weight:800;
  font-size:18px; letter-spacing:2px; text-transform:uppercase;
}
.footer-logo span { color:var(--gold); }
.footer-links { display:flex; gap:24px; }
.footer-links a { font-size:14px; color:var(--text-muted); transition:color .25s; }
.footer-links a:hover { color:var(--text-secondary); }
.footer-copy { width:100%; text-align:center; margin-top:28px; font-size:13px; color:var(--text-muted); }
.footer-disclaimer {
  width:100%; text-align:center; margin-top:12px;
  font-size:11px; color:var(--text-muted); max-width:600px; margin-left:auto; margin-right:auto; line-height:1.6;
}

/* ═══════ GOLD-INCLUSIVE GRADIENTS ═══════ */
.gradient-gold-blue {
  background: linear-gradient(135deg, #d4af37, #e8c84a, #3b82f6);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.gradient-blue-gold {
  background: linear-gradient(135deg, #2563eb, #8b5cf6, #d4af37);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.gradient-gold-royal {
  background: linear-gradient(135deg, #d4af37, #e8c84a, #ec4899, #7c3aed, #2563eb);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

/* ═══════ BEAMS BACKGROUND ═══════ */
.beams-bg {
  position:fixed; inset:0; z-index:0; pointer-events:none;
  overflow:hidden; background:var(--bg);
}
.beam {
  position:absolute;
  top:-20%;
  width:1px;
  height:140%;
  background:linear-gradient(180deg, transparent 0%, var(--beam-color) 30%, var(--beam-color) 70%, transparent 100%);
  opacity:var(--beam-opacity);
  transform-origin:top center;
  animation:beamSway var(--beam-duration) ease-in-out infinite alternate;
  filter:blur(var(--beam-blur));
}
@keyframes beamSway {
  0% { transform:rotate(var(--beam-from)) translateX(var(--beam-drift-from)); }
  100% { transform:rotate(var(--beam-to)) translateX(var(--beam-drift-to)); }
}
.beam.b1 {
  left:10%;
  --beam-color:rgba(59,130,246,0.08);
  --beam-opacity:1;
  --beam-blur:40px;
  --beam-from:-8deg; --beam-to:4deg;
  --beam-drift-from:0px; --beam-drift-to:60px;
  --beam-duration:20s;
  width:120px;
}
.beam.b2 {
  left:30%;
  --beam-color:rgba(212,175,55,0.06);
  --beam-opacity:1;
  --beam-blur:50px;
  --beam-from:3deg; --beam-to:-5deg;
  --beam-drift-from:20px; --beam-drift-to:-40px;
  --beam-duration:25s;
  width:100px;
}
.beam.b3 {
  left:55%;
  --beam-color:rgba(139,92,246,0.06);
  --beam-opacity:1;
  --beam-blur:45px;
  --beam-from:-4deg; --beam-to:6deg;
  --beam-drift-from:-30px; --beam-drift-to:30px;
  --beam-duration:18s;
  width:140px;
}
.beam.b4 {
  left:75%;
  --beam-color:rgba(59,130,246,0.07);
  --beam-opacity:1;
  --beam-blur:35px;
  --beam-from:5deg; --beam-to:-3deg;
  --beam-drift-from:10px; --beam-drift-to:-50px;
  --beam-duration:22s;
  width:90px;
}
.beam.b5 {
  left:90%;
  --beam-color:rgba(212,175,55,0.05);
  --beam-opacity:1;
  --beam-blur:55px;
  --beam-from:-6deg; --beam-to:2deg;
  --beam-drift-from:-20px; --beam-drift-to:40px;
  --beam-duration:28s;
  width:110px;
}
.beam.b6 {
  left:20%;
  --beam-color:rgba(6,182,212,0.04);
  --beam-opacity:1;
  --beam-blur:60px;
  --beam-from:2deg; --beam-to:-4deg;
  --beam-drift-from:40px; --beam-drift-to:-20px;
  --beam-duration:32s;
  width:160px;
}
.beam.b7 {
  left:45%;
  --beam-color:rgba(59,130,246,0.05);
  --beam-opacity:1;
  --beam-blur:50px;
  --beam-from:-3deg; --beam-to:5deg;
  --beam-drift-from:-10px; --beam-drift-to:50px;
  --beam-duration:26s;
  width:80px;
}
.beam.b8 {
  left:65%;
  --beam-color:rgba(184,149,42,0.05);
  --beam-opacity:1;
  --beam-blur:42px;
  --beam-from:4deg; --beam-to:-6deg;
  --beam-drift-from:30px; --beam-drift-to:-30px;
  --beam-duration:30s;
  width:130px;
}

/* ═══════ SHAPE LANDING ANIMATION ═══════ */
.shapes-container {
  position:absolute; inset:0; overflow:hidden;
  pointer-events:none; z-index:0;
}
.shape {
  position:absolute;
  opacity:0.12;
  will-change:transform;
}
.shape.circle {
  border-radius:50%;
  border:2px solid;
}
.shape.square {
  border-radius:16px;
  border:2px solid;
}
.shape.diamond {
  border-radius:8px;
  border:2px solid;
  transform:rotate(45deg);
}
.shape.filled {
  border:none;
  opacity:0.06;
}
/* Shape instances */
.shape.sh1 {
  width:80px; height:80px; top:8%; left:8%;
  border-color:rgba(59,130,246,0.6);
  animation:shapeFloat1 28s ease-in-out infinite;
}
.shape.sh2 {
  width:120px; height:120px; top:20%; right:12%;
  border-color:rgba(212,175,55,0.5);
  animation:shapeFloat2 36s ease-in-out infinite;
}
.shape.sh3 {
  width:60px; height:60px; bottom:25%; left:15%;
  border-color:rgba(139,92,246,0.5);
  animation:shapeFloat3 24s ease-in-out infinite;
}
.shape.sh4 {
  width:100px; height:100px; bottom:15%; right:20%;
  background:rgba(59,130,246,0.08);
  animation:shapeFloat4 40s ease-in-out infinite;
}
.shape.sh5 {
  width:50px; height:50px; top:55%; left:5%;
  border-color:rgba(6,182,212,0.5);
  animation:shapeFloat1 32s ease-in-out infinite reverse;
}
.shape.sh6 {
  width:90px; height:90px; top:10%; left:55%;
  background:rgba(212,175,55,0.06);
  animation:shapeFloat2 44s ease-in-out infinite reverse;
}
.shape.sh7 {
  width:70px; height:70px; bottom:30%; right:8%;
  border-color:rgba(124,58,237,0.4);
  animation:shapeFloat3 30s ease-in-out infinite reverse;
}
.shape.sh8 {
  width:40px; height:40px; top:40%; right:35%;
  border-color:rgba(59,130,246,0.4);
  animation:shapeFloat4 22s ease-in-out infinite;
}
@keyframes shapeFloat1 {
  0%,100% { transform:translate(0,0) rotate(0deg) scale(1); }
  25% { transform:translate(20px,-30px) rotate(45deg) scale(1.1); }
  50% { transform:translate(-15px,-50px) rotate(90deg) scale(0.95); }
  75% { transform:translate(30px,-20px) rotate(135deg) scale(1.05); }
}
@keyframes shapeFloat2 {
  0%,100% { transform:translate(0,0) rotate(0deg); }
  33% { transform:translate(-40px,30px) rotate(-30deg); }
  66% { transform:translate(20px,-40px) rotate(20deg); }
}
@keyframes shapeFloat3 {
  0%,100% { transform:translate(0,0) scale(1) rotate(0deg); }
  50% { transform:translate(30px,40px) scale(1.15) rotate(60deg); }
}
@keyframes shapeFloat4 {
  0%,100% { transform:translate(0,0) rotate(0deg) scale(1); }
  25% { transform:translate(-20px,-25px) rotate(15deg) scale(1.08); }
  75% { transform:translate(25px,15px) rotate(-15deg) scale(0.92); }
}
@keyframes floatA {
  0%,100% { transform:translate(0,0) scale(1); }
  33% { transform:translate(40px,-30px) scale(1.1); }
  66% { transform:translate(-20px,40px) scale(0.95); }
}
@keyframes floatB {
  0%,100% { transform:translate(0,0) scale(1); }
  50% { transform:translate(-50px,30px) scale(1.15); }
}
@keyframes floatC {
  0%,100% { transform:translate(0,0) rotate(0deg); }
  50% { transform:translate(30px,-40px) rotate(10deg); }
}

/* ═══════ LIQUID GLASS BUTTON ═══════ */
.btn-liquid {
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-body); font-size:17px; font-weight:600;
  padding:18px 40px; border-radius:100px; border:none; cursor:pointer;
  color:var(--text-primary);
  background:rgba(255,255,255,0.45);
  backdrop-filter:blur(20px) saturate(1.6);
  -webkit-backdrop-filter:blur(20px) saturate(1.6);
  border:1px solid rgba(255,255,255,0.5);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(0,0,0,0.04);
  position:relative; overflow:hidden;
  transition:transform .3s, box-shadow .3s, background .3s;
}
.btn-liquid::before {
  content:''; position:absolute;
  top:-50%; left:-50%; width:200%; height:200%;
  background:linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,255,255,0.5) 45%,
    rgba(255,255,255,0.7) 50%,
    rgba(255,255,255,0.5) 55%,
    transparent 60%
  );
  animation:liquidShine 4s ease-in-out infinite;
  pointer-events:none;
}
@keyframes liquidShine {
  0% { transform:translateX(-80%) rotate(25deg); }
  100% { transform:translateX(80%) rotate(25deg); }
}
.btn-liquid:hover {
  transform:translateY(-2px);
  background:rgba(255,255,255,0.6);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(0,0,0,0.04);
}

/* ═══════ NEON BUTTON ═══════ */
.btn-neon {
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-body); font-size:17px; font-weight:700;
  padding:18px 40px; border-radius:100px; cursor:pointer;
  color:#fff; background:transparent;
  border:2px solid var(--blue);
  position:relative; overflow:hidden;
  text-shadow:0 0 8px rgba(37,99,235,0.4);
  box-shadow:
    0 0 12px rgba(37,99,235,0.2),
    inset 0 0 12px rgba(37,99,235,0.08);
  transition:transform .3s, box-shadow .3s, background .3s, color .3s;
}
.btn-neon::before {
  content:''; position:absolute; inset:-2px;
  border-radius:inherit;
  background:linear-gradient(135deg, #2563eb, #7c3aed, #ec4899, #2563eb);
  background-size:300% 300%;
  animation:neonBorder 3s ease infinite;
  z-index:-1; opacity:0;
  transition:opacity .3s;
}
.btn-neon::after {
  content:''; position:absolute; inset:0;
  border-radius:inherit;
  background:var(--bg-dark);
  z-index:-1;
}
@keyframes neonBorder {
  0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%}
}
.btn-neon:hover {
  transform:translateY(-2px);
  color:#fff;
  text-shadow:0 0 16px rgba(37,99,235,0.6);
  box-shadow:
    0 0 24px rgba(37,99,235,0.35),
    0 0 48px rgba(124,58,237,0.15),
    inset 0 0 16px rgba(37,99,235,0.12);
}
.btn-neon:hover::before { opacity:1; }

/* Light-bg neon variant */
.btn-neon.light {
  color:var(--blue); background:transparent;
  border-color:var(--blue);
  text-shadow:none;
}
.btn-neon.light::after { background:var(--bg); }
.btn-neon.light:hover {
  color:#fff; background:transparent;
  text-shadow:0 0 12px rgba(37,99,235,0.5);
}
.btn-neon.light:hover::after {
  background:linear-gradient(135deg, rgba(37,99,235,0.9), rgba(124,58,237,0.85));
}

/* ═══════ VARIED ENTRY ANIMATIONS ═══════ */
.reveal-left {
  opacity:0; transform:translateX(-50px);
  transition:opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right {
  opacity:0; transform:translateX(50px);
  transition:opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal-right.visible { opacity:1; transform:translateX(0); }
.reveal-scale {
  opacity:0; transform:scale(0.88);
  transition:opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal-scale.visible { opacity:1; transform:scale(1); }
.reveal-flip {
  opacity:0; transform:perspective(800px) rotateY(12deg) translateX(20px);
  transition:opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-flip.visible { opacity:1; transform:perspective(800px) rotateY(0) translateX(0); }
.reveal-up-big {
  opacity:0; transform:translateY(60px);
  transition:opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-up-big.visible { opacity:1; transform:translateY(0); }

/* ── Founder bio header (titre + petite photo côte à côte) ── */
.founder-bio-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.founder-side-img {
  width: 88px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: rotate(1.5deg);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.founder-side-img:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow: var(--shadow-lg);
}

/* ═══════ TESTIMONIALS MARQUEE — 3 rows alternating ═══════ */
.testimonials-marquee {
  overflow:hidden; position:relative;
  mask-image:linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image:linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  display:flex; flex-direction:column; gap:16px;
}
.marquee-track {
  display:flex; gap:16px; width:max-content;
  align-items:flex-start;
  animation:marqueeScroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state:paused; }
.marquee-rev {
  animation-name:marqueeScrollRev;
  animation-duration:50s;
}
.marquee-3 { animation-duration:33s; animation-delay:-16s; }
@keyframes marqueeScroll {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
@keyframes marqueeScrollRev {
  0%   { transform:translateX(-50%); }
  100% { transform:translateX(0); }
}
.testimonial-card {
  flex-shrink:0; width:380px;
  border-radius:var(--radius); padding:32px 28px;
  background:var(--bg-card); border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}

/* ═══════ RESPONSIVE ═══════ */
@media(max-width:1024px){
  .journey-grid{grid-template-columns:repeat(2,1fr)}
  .mockup-body{grid-template-columns:1fr 1fr}
  .mockup-body>:last-child{display:none}
}
@keyframes menuSlideDown {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:translateY(0); }
}
@media(max-width:900px){
  .nav{display:none}
  .nav-links{display:none}
  .nav-menu-btn{display:flex}
  .nav-links.open{
    display:flex;flex-direction:column;
    position:fixed;top:72px;left:0;right:0;bottom:0;
    background:var(--bg);
    justify-content:flex-start;align-items:stretch;
    gap:0;z-index:200;
    padding:8px 24px 32px;
    overflow-y:auto;
    animation:menuSlideDown .25s cubic-bezier(.16,1,.3,1);
    border-top:1px solid var(--border);
  }
  .nav-links.open a:not(.nav-cta){
    font-size:17px;font-weight:500;
    color:var(--text-primary);
    padding:18px 0;
    border-bottom:1px solid var(--border);
    text-align:left;
    letter-spacing:0;
  }
  .nav-links.open a:not(.nav-cta):hover{color:var(--blue)}
  .nav-links.open .nav-cta{
    margin-top:24px;
    padding:16px 32px;
    font-size:16px !important;
    text-align:center;
    border-bottom:none;
    border-radius:100px;
    width:100%;
    justify-content:center;
  }
  .problem-list { border-radius: 16px; }
  .mastery-orbit-wrap { max-width: 480px; margin-left: auto; margin-right: auto; }
  .modules-grid{grid-template-columns:1fr}
  .includes-grid{grid-template-columns:1fr}
  .for-who-grid{grid-template-columns:1fr}
  .why-grid{grid-template-columns:1fr}
  .why-card.wide{grid-column:span 1}
  .founder-grid{grid-template-columns:1fr}
  .founder-side-wrap{display:none}
  .testimonials-grid{grid-template-columns:1fr}
}
@media(max-width:600px){
  .journey-grid{grid-template-columns:1fr}
  .hero h1{font-size:28px}
  .hero-btns{flex-direction:column; align-items:center;}
  .btn-glow{width:100%;justify-content:center}
  /* Photo visible sur mobile, pleine largeur, sous les boutons */
  .hero-visual{
    display:block;
    max-width: 320px;
    margin: 32px auto 0;
  }
  .hero-photo{
    transform: none;
    aspect-ratio: 4/5;
    border-radius: 20px;
  }
  /* Cards flottantes masquées sur mobile (trop petits) */
  .hfc-1, .hfc-2, .hero-photo-badge { display: none; }
  /* Logo plus petit */
  .hero-program-logo-img { height: 36px; }
  .hero-program-logo { margin-bottom: 16px; }
  .pricing-card{padding:32px 24px}
  .pricing-current{font-size:44px}
  .timeline-grid{grid-template-columns:1fr}
  .timeline-grid::before{display:none}
  .perf-grid{grid-template-columns:1fr}
  .brique-grid{grid-template-columns:1fr !important}
}

/* ══════════════════════════════════════════════════
   FUSION — Module7 Presentation Elements (Light)
   ══════════════════════════════════════════════════ */

/* Extended palette */
:root {
  --emerald: #10b981;
  --violet: #8b5cf6;
  --fuchsia: #d946ef;
  --amber: #f59e0b;
  --rose: #f43f5e;
}

/* ── Hero badge pill (from Module7) ── */
.hero-badge-pill {
  display:inline-flex; align-items:center; gap:10px;
  font-size:13px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; padding:10px 24px;
  border-radius:100px; margin-bottom:32px;
  background:linear-gradient(135deg, rgba(184,149,42,0.08), rgba(37,99,235,0.06), rgba(139,92,246,0.05));
  border:1px solid rgba(184,149,42,0.18);
  color:var(--gold);
}
.hero-badge-pill i { font-size:14px; }

/* ── Brique-style colored module cards ── */
.brique-grid {
  display:grid; grid-template-columns:repeat(2, 1fr); gap:16px;
  margin-top:48px;
}
.brique-card {
  border-radius:var(--radius); padding:28px 26px;
  background:var(--bg-card); border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  display:flex; gap:18px; align-items:flex-start;
  transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .35s;
  position:relative; overflow:hidden;
}
.brique-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.brique-icon {
  width:48px; height:48px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; flex-shrink:0;
}
.brique-card h3 {
  font-family:var(--font-display); font-size:15px; font-weight:600; line-height:1.45;
}
.brique-card .brique-tag {
  font-size:10px; font-weight:700; text-transform:uppercase;
  letter-spacing:.1em; margin-bottom:6px; display:block;
}

/* Color variants */
.brique-card.c-emerald { border-color:rgba(16,185,129,0.15); background:linear-gradient(135deg, rgba(16,185,129,0.03), var(--bg-card)); }
.brique-card.c-emerald .brique-icon { background:rgba(16,185,129,0.08); color:#10b981; }
.brique-card.c-emerald:hover { border-color:rgba(16,185,129,0.3); }
.brique-card.c-emerald .brique-tag { color:#10b981; }

.brique-card.c-blue { border-color:rgba(37,99,235,0.15); background:linear-gradient(135deg, rgba(37,99,235,0.03), var(--bg-card)); }
.brique-card.c-blue .brique-icon { background:rgba(37,99,235,0.08); color:#2563eb; }
.brique-card.c-blue:hover { border-color:rgba(37,99,235,0.3); }
.brique-card.c-blue .brique-tag { color:#2563eb; }

.brique-card.c-violet { border-color:rgba(139,92,246,0.15); background:linear-gradient(135deg, rgba(139,92,246,0.03), var(--bg-card)); }
.brique-card.c-violet .brique-icon { background:rgba(139,92,246,0.08); color:#8b5cf6; }
.brique-card.c-violet:hover { border-color:rgba(139,92,246,0.3); }
.brique-card.c-violet .brique-tag { color:#8b5cf6; }

.brique-card.c-fuchsia { border-color:rgba(217,70,239,0.15); background:linear-gradient(135deg, rgba(217,70,239,0.03), var(--bg-card)); }
.brique-card.c-fuchsia .brique-icon { background:rgba(217,70,239,0.08); color:#d946ef; }
.brique-card.c-fuchsia:hover { border-color:rgba(217,70,239,0.3); }
.brique-card.c-fuchsia .brique-tag { color:#d946ef; }

.brique-card.c-amber { border-color:rgba(245,158,11,0.15); background:linear-gradient(135deg, rgba(245,158,11,0.03), var(--bg-card)); }
.brique-card.c-amber .brique-icon { background:rgba(245,158,11,0.08); color:#f59e0b; }
.brique-card.c-amber:hover { border-color:rgba(245,158,11,0.3); }
.brique-card.c-amber .brique-tag { color:#f59e0b; }

.brique-card.c-gold { border-color:rgba(184,149,42,0.15); background:linear-gradient(135deg, rgba(184,149,42,0.04), var(--bg-card)); }
.brique-card.c-gold .brique-icon { background:rgba(184,149,42,0.08); color:#b8952a; }
.brique-card.c-gold:hover { border-color:rgba(184,149,42,0.3); }
.brique-card.c-gold .brique-tag { color:#b8952a; }

.brique-card.c-rose { border-color:rgba(244,63,94,0.15); background:linear-gradient(135deg, rgba(244,63,94,0.03), var(--bg-card)); }
.brique-card.c-rose .brique-icon { background:rgba(244,63,94,0.08); color:#f43f5e; }
.brique-card.c-rose:hover { border-color:rgba(244,63,94,0.3); }
.brique-card.c-rose .brique-tag { color:#f43f5e; }

/* Bonus card spanning full width */
.brique-card.bonus-wide {
  grid-column:1/-1;
  background:linear-gradient(135deg, rgba(37,99,235,0.04), rgba(139,92,246,0.03), rgba(184,149,42,0.03));
  border-color:rgba(37,99,235,0.12);
}
.brique-card.bonus-wide .brique-icon {
  background:linear-gradient(135deg, #2563eb, #7c3aed);
  color:#fff;
}

/* ── Timeline (from Module7 ritual) ── */
.timeline-grid {
  display:grid; grid-template-columns:repeat(4, 1fr);
  gap:0; max-width:1100px; margin:0 auto;
  position:relative;
}
.timeline-grid::before {
  content:''; position:absolute;
  top:30px; left:10%; right:10%;
  height:3px; border-radius:4px;
  background:linear-gradient(90deg, var(--gold), var(--gold-bright), var(--blue), var(--purple));
  z-index:0; opacity:.5;
}
.timeline-step {
  position:relative; z-index:1; padding:0 14px; text-align:center;
}
.timeline-num {
  width:60px; height:60px; border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:22px; font-weight:800;
  margin:0 auto 22px;
  background:linear-gradient(135deg, #b8952a, #d4af37, #e8c84a);
  color:#fff;
  box-shadow:0 4px 20px rgba(184,149,42,0.25);
  transition:transform .3s, box-shadow .3s;
}
.timeline-step:hover .timeline-num {
  transform:scale(1.08);
  box-shadow:0 6px 28px rgba(184,149,42,0.35);
}
.timeline-step h3 {
  font-family:var(--font-display); font-size:17px;
  font-weight:600; margin-bottom:10px;
}
.timeline-step p {
  font-size:14px; color:var(--text-secondary); line-height:1.7;
}
.timeline-content {
  padding:24px 20px; border-radius:var(--radius);
  background:var(--bg-card); border:1px solid var(--border);
  box-shadow:var(--shadow-sm); margin-top:0;
  transition:transform .3s, box-shadow .3s;
}
.timeline-step:hover .timeline-content {
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
}

/* ── Colored info boxes (from Module7 warnings/tips) ── */
.info-box {
  padding:22px 26px; border-radius:var(--radius-sm);
  display:flex; gap:16px; align-items:flex-start;
  margin-top:12px;
}
.info-box i { margin-top:3px; font-size:18px; flex-shrink:0; }
.info-box h4 { font-family:var(--font-display); font-size:15px; font-weight:700; margin-bottom:6px; }
.info-box p { font-size:14px; line-height:1.65; color:var(--text-secondary); }

.info-box.rose { background:rgba(244,63,94,0.04); border:1px solid rgba(244,63,94,0.12); }
.info-box.rose i, .info-box.rose h4 { color:#f43f5e; }

.info-box.emerald { background:rgba(16,185,129,0.04); border:1px solid rgba(16,185,129,0.12); }
.info-box.emerald i, .info-box.emerald h4 { color:#10b981; }

.info-box.amber-box { background:rgba(245,158,11,0.04); border:1px solid rgba(245,158,11,0.12); }
.info-box.amber-box i, .info-box.amber-box h4 { color:#f59e0b; }

.info-box.blue-box { background:rgba(37,99,235,0.04); border:1px solid rgba(37,99,235,0.12); }
.info-box.blue-box i, .info-box.blue-box h4 { color:#2563eb; }

/* ── Performance stat grid (from Module7 backtest) ── */
.perf-grid {
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:20px; margin-top:48px;
}
.perf-stat {
  padding:36px 28px; border-radius:var(--radius);
  background:var(--bg-card); border:1px solid var(--border);
  box-shadow:var(--shadow-sm); text-align:center;
  transition:transform .35s, box-shadow .35s;
  position:relative; overflow:hidden;
}
.perf-stat:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
.perf-stat::before {
  content:''; position:absolute; top:0; left:0; right:0;
  height:3px; opacity:0; transition:opacity .3s;
}
.perf-stat:hover::before { opacity:1; }
.perf-stat.c-gold::before { background:linear-gradient(90deg, #b8952a, #d4af37); }
.perf-stat.c-blue::before { background:linear-gradient(90deg, #2563eb, #3b82f6); }
.perf-stat.c-emerald::before { background:linear-gradient(90deg, #10b981, #34d399); }
.perf-stat.c-violet::before { background:linear-gradient(90deg, #8b5cf6, #a78bfa); }
.perf-stat.c-fuchsia::before { background:linear-gradient(90deg, #d946ef, #e879f9); }
.perf-stat.c-amber::before { background:linear-gradient(90deg, #f59e0b, #fbbf24); }

.perf-val {
  font-family:var(--font-display); font-size:44px;
  font-weight:800; line-height:1; margin-bottom:10px;
}
.perf-label {
  font-size:13px; color:var(--text-muted);
  text-transform:uppercase; letter-spacing:.06em;
}
.perf-sub {
  font-size:12px; color:var(--text-muted); margin-top:8px;
  font-style:italic;
}

/* ── Enhanced includes (FA icons in gradient circles) ── */
.include-icon-fa {
  width:52px; height:52px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px; font-size:22px;
}
.include-icon-fa.gold-grad {
  background:linear-gradient(135deg, rgba(184,149,42,0.12), rgba(212,175,55,0.06));
  color:var(--gold); border:1px solid rgba(184,149,42,0.15);
}
.include-icon-fa.blue-grad {
  background:linear-gradient(135deg, rgba(37,99,235,0.1), rgba(59,130,246,0.05));
  color:var(--blue); border:1px solid rgba(37,99,235,0.12);
}
.include-icon-fa.violet-grad {
  background:linear-gradient(135deg, rgba(139,92,246,0.1), rgba(167,139,250,0.05));
  color:var(--violet); border:1px solid rgba(139,92,246,0.12);
}
.include-icon-fa.emerald-grad {
  background:linear-gradient(135deg, rgba(16,185,129,0.1), rgba(52,211,153,0.05));
  color:var(--emerald); border:1px solid rgba(16,185,129,0.12);
}

/* ── Section glow backgrounds (light theme adaptation) ── */
.section-glow-gold { position:relative; }
.section-glow-gold::after {
  content:''; position:absolute;
  top:10%; right:-5%; width:400px; height:400px;
  border-radius:50%; pointer-events:none; z-index:0;
  background:radial-gradient(ellipse, rgba(184,149,42,0.05) 0%, transparent 70%);
  filter:blur(60px);
}
.section-glow-blue { position:relative; }
.section-glow-blue::after {
  content:''; position:absolute;
  bottom:5%; left:-5%; width:400px; height:400px;
  border-radius:50%; pointer-events:none; z-index:0;
  background:radial-gradient(ellipse, rgba(37,99,235,0.04) 0%, transparent 70%);
  filter:blur(60px);
}

/* ── Comparison table (from Module7 perf table) ── */
.compare-table {
  width:100%; border-collapse:separate;
  border-spacing:0; border-radius:var(--radius);
  overflow:hidden; border:1px solid var(--border);
  background:var(--bg-card); box-shadow:var(--shadow-sm);
  margin-top:36px;
}
.compare-table th {
  padding:16px 20px; text-align:left;
  font-size:11px; font-weight:700;
  text-transform:uppercase; letter-spacing:.1em;
  color:var(--gold); background:rgba(184,149,42,0.04);
  border-bottom:1px solid var(--border);
}
.compare-table th:not(:first-child) { text-align:center; }
.compare-table td {
  padding:16px 20px; font-size:14px;
  border-bottom:1px solid var(--border);
}
.compare-table td:not(:first-child) { text-align:center; }
.compare-table tr:last-child td { border-bottom:none; }
.compare-table tr:hover td { background:rgba(37,99,235,0.02); }
.compare-table .highlight-row td {
  background:rgba(184,149,42,0.03);
  font-weight:600;
}
.compare-badge {
  display:inline-block; padding:3px 10px;
  border-radius:8px; font-size:12px; font-weight:700;
}

/* ── Mastery grille du bas ── */
.mastery-bottom-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px;
}

@media(max-width:1024px){
  .timeline-grid{grid-template-columns:repeat(2,1fr)}
  .brique-grid{grid-template-columns:1fr}
  .perf-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  /* Perf-grid : 1 colonne (override la règle 1024px) */
  .perf-grid { grid-template-columns: 1fr !important; }
  .perf-val { font-size: 38px; }

  /* Mastery grille du bas : 1 colonne */
  .mastery-bottom-grid { grid-template-columns: 1fr; }

  /* Timeline : horizontal sur mobile */
  .timeline-step {
    display: flex; align-items: flex-start;
    gap: 16px; text-align: left; padding: 0;
  }
  .timeline-num {
    margin: 0; flex-shrink: 0;
    width: 48px; height: 48px;
    font-size: 18px; border-radius: 14px;
  }
  .timeline-content { flex: 1; margin-top: 0; }
}
@media(max-width:900px){
  .compare-table { font-size:13px; }
  .compare-table th, .compare-table td { padding:12px 14px; }
}

/* ═══════ FLOATING SCREENSHOTS — 3D EFFECTS ═══════ */

/* ── Performance screenshots ── */
.perf-screenshots {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}
.perf-screenshot-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
}
.perf-screenshot-main {
  width: 100%;
  border-radius: 16px;
  border: 3px solid #fff;
  box-shadow: 0 24px 72px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  transform: rotate(-1deg);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
  display: block;
}
.perf-screenshot-main:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 36px 90px rgba(0,0,0,0.14);
}
.perf-screenshot-overlay {
  position: absolute;
  bottom: -32px;
  right: -24px;
  width: 42%;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow: 0 20px 56px rgba(0,0,0,0.16);
  transform: rotate(2.5deg);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.perf-screenshot-overlay:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.2);
}

/* ── Include cards floating images ── */
.include-card-img-wrap {
  overflow: visible;
  position: relative;
}
.include-card-img-wrap:has(.include-float-right) { padding-right: 178px; }
.include-card-img-wrap:has(.include-float-left)  { padding-left:  178px; }
.include-float-img {
  position: absolute;
  width: 152px;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
  z-index: 5;
}
.include-float-right {
  top: 20px;
  right: 16px;
  bottom: auto;
  transform: rotate(2deg);
}
.include-float-left {
  top: 20px;
  left: 16px;
  bottom: auto;
  transform: rotate(-2deg);
}
.include-float-img:hover {
  transform: rotate(0deg) scale(1.04) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

/* ── Founder photo ── */
.founder-photo-wrap {
  position: relative;
}
.founder-img {
  width: 100%;
  border-radius: var(--radius);
  border: 3px solid #fff;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-img-overlay {
  position: absolute;
  bottom: -24px;
  right: -20px;
  width: 58%;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  transform: rotate(2deg);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.founder-img-overlay:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.22);
}

/* ── Programme section preview image ── */
.programme-preview-wrap {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}
.programme-preview {
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius);
  border: 3px solid #fff;
  box-shadow: var(--shadow-lg);
  transform: rotate(-0.5deg);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
  display: block;
}
.programme-preview:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}

/* ── Testimonial image cards ── */
.testimonial-img-card {
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform .3s, box-shadow .3s;
}
.testimonial-img-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-img-card img {
  display: block;
  width: 360px;
  height: auto;
}

@media(max-width:900px) {
  /* Hero 2 colonnes → 1 colonne */
  .hero { text-align: center; overflow: hidden; }
  .hero-program-logo { display: flex; justify-content: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-sub { margin: 0 auto 36px; max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hfc-1 { left: -8px; top: 58%; }
  .hfc-2 { right: -8px; }
  /* Autres */
  .include-float-img { display: block; width: 82px; top: 14px; right: 14px; }
  .include-float-left { left: 14px; right: auto; }
  .include-card-img-wrap:has(.include-float-right) { padding-right: 104px; }
  .include-card-img-wrap:has(.include-float-left)  { padding-left:  104px; }
  .perf-screenshot-overlay { bottom: -16px; right: -10px; width: 48%; }
  .founder-img-overlay { width: 50%; right: -10px; }
  .marquee-rev { display:none; }
  .testimonial-img-card img { width: 300px; }
}
@media(max-width:600px) {
  .perf-screenshot-wrap { display: flex; flex-direction: column; align-items: center; }
  .perf-screenshot-overlay {
    display: block;
    position: static;
    width: 78%;
    margin: 18px auto 0;
    transform: rotate(1deg);
  }
  .founder-img-overlay { display: none; }
  .marquee-3 { display:none; }
  .testimonial-img-card img { width: 260px; }
  .programme-preview-wrap { display: none; }
  .compare-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .hero-stats { gap: 16px; }
  .hero-stat-val { font-size: 26px; }
  .section-title { letter-spacing: -.02em; }
  .pricing-card { padding: 28px 20px; }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-grid::before { display: none; }
  .founder-bio h3 { font-size: 22px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }
}

/* ══════════════════════════════════════════════════
   HERO PROOF STRIP
   ══════════════════════════════════════════════════ */
.hero-proof-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  margin: 40px 0 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 32px;
  box-shadow: var(--shadow-sm);
  max-width: 720px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 2;
}
.hero-proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-secondary);
  padding: 0 20px;
}
.hero-proof-item i { color: var(--gold); font-size: 13px; }
.hero-proof-item strong { color: var(--text-primary); }
.hero-proof-sep {
  width: 1px; height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   PRICING CTA BUTTON — GOLD GLOW
   ══════════════════════════════════════════════════ */
@keyframes pricingPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(184,149,42,0.35), 0 0 0 0 rgba(184,149,42,0); }
  50%      { box-shadow: 0 12px 48px rgba(184,149,42,0.5), 0 0 0 8px rgba(184,149,42,0.12); }
}
@keyframes shimmerSlide {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
.pricing-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; padding: 20px 36px;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: #0c1222;
  background: linear-gradient(135deg, #b8952a 0%, #e8c84a 50%, #d4af37 100%);
  border-radius: 100px; border: none; cursor: pointer; text-decoration: none;
  position: relative; overflow: hidden;
  animation: pricingPulse 2.5s ease-in-out infinite;
  transition: transform .3s cubic-bezier(.16,1,.3,1), filter .3s;
  letter-spacing: -.01em;
}
.pricing-cta-btn:hover {
  transform: translateY(-3px) scale(1.01);
  filter: brightness(1.05);
  animation: none;
  box-shadow: 0 16px 56px rgba(184,149,42,0.55);
}
.btn-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.35) 50%, transparent 65%);
  animation: shimmerSlide 2.8s linear infinite;
}
.badge-beta {
  display: inline-block; font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 6px; letter-spacing: .05em; text-transform: uppercase;
  background: rgba(37,99,235,0.1); color: var(--blue);
  margin-left: 8px; vertical-align: middle;
}

/* ══════════════════════════════════════════════════
   SECTION CONFÉRENCES & COACHING
   ══════════════════════════════════════════════════ */
.conf-bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  margin: 56px 0 48px;
  align-items: start;
}
.conf-video-card {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 16/9;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform .6s cubic-bezier(.16,1,.3,1), box-shadow .6s;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.1);
}
.conf-video-card:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.01);
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}
.conf-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.conf-video-badge {
  position: absolute; bottom: 16px; left: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.72); backdrop-filter: blur(12px);
  color: #fff; padding: 8px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
}
.conf-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ef4444;
  animation: pulse 1.5s ease-in-out infinite; flex-shrink: 0;
}
.conf-photos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.conf-photos-full {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
}
.conf-photo {
  width: 100%; aspect-ratio: 1;
  object-fit: cover; border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
  cursor: pointer;
  transform-style: preserve-3d;
}
.conf-photo:hover {
  transform: scale(1.04) perspective(800px) rotateY(3deg) rotateX(-2deg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.16);
  z-index: 2; position: relative;
}
.conf-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.conf-stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 20px; text-align: center;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
  transform-style: preserve-3d;
}
.conf-stat-card:hover {
  transform: translateY(-6px) perspective(600px) rotateX(4deg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.conf-stat-icon {
  font-size: 22px; color: var(--text-secondary); margin-bottom: 14px;
}
.conf-stat-icon.gold { color: var(--gold); }
.conf-stat-icon.blue { color: var(--blue); }
.conf-stat-val {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; margin-bottom: 8px; line-height: 1.2;
}
.conf-stat-label {
  font-size: 12px; color: var(--text-muted); line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   TÉMOIGNAGES COACHING
   ══════════════════════════════════════════════════ */
.coaching-testi-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-secondary);
  margin-bottom: 24px;
}
.coaching-testi-wrap {
  margin-bottom: 16px;
}
.coaching-testi-grid {
  columns: 4; column-gap: 14px;
}
.coaching-testi-img {
  width: 100%; display: block; margin-bottom: 14px;
  border-radius: 14px; border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
  break-inside: avoid;
}
.coaching-testi-img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.coaching-testi-wide { column-span: all; }

/* ══════════════════════════════════════════════════
   RESPONSIVE — NOUVELLES SECTIONS
   ══════════════════════════════════════════════════ */
@media(max-width:1100px) {
  .conf-stats-row { grid-template-columns: 1fr 1fr; }
}
@media(max-width:900px) {
  .conf-bento { grid-template-columns: 1fr; }
  .conf-video-card { transform: none; }
  .conf-stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .coaching-testi-grid { columns: 3; }
  .hero-proof-strip { border-radius: 20px; gap: 8px; padding: 16px 20px; }
  .hero-proof-sep { display: none; }
  .hero-proof-item { padding: 4px 8px; }
}
@media(max-width:600px) {
  .conf-photos-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .conf-photos-full { grid-template-columns: 1fr 1fr; }
  .conf-stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .conf-stat-card { padding: 20px 14px; }
  .conf-stat-val { font-size: 22px; }
  .coaching-testi-grid { columns: 2; column-gap: 10px; }
  .pricing-cta-btn { font-size: 15px; padding: 18px 20px; }
  .hero-proof-strip { flex-direction: column; border-radius: 16px; gap: 4px; }
  .hero-proof-item { font-size: 12px; }
  .inflation-bars { gap: 8px; }
  .inflation-bar-track { height: 80px; }
  .why-card-chart { margin-top: 16px; }
}

/* ══════════════════════════════════════════════════
   BLOC 30 MIN / MOIS
   ══════════════════════════════════════════════════ */
.thirty-min-block {
  display: flex; align-items: flex-start; gap: 28px;
  margin-top: 48px; padding: 36px 40px;
  background: linear-gradient(135deg, rgba(37,99,235,0.04) 0%, rgba(184,149,42,0.06) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative; overflow: hidden;
}
.thirty-min-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 24px 24px 0 0;
}
.thirty-min-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(184,149,42,0.1));
  border: 1px solid var(--border); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--blue);
}
.thirty-min-content { flex: 1; }
.thirty-min-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  margin-bottom: 12px; line-height: 1.3;
}
.thirty-min-highlight {
  background: linear-gradient(90deg, var(--blue), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.thirty-min-desc {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.75; margin-bottom: 20px;
}
.thirty-min-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.thirty-min-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 100px;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary);
}
.thirty-min-pill i { color: var(--green); font-size: 11px; }

@media(max-width:900px) {
  .thirty-min-block { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .thirty-min-title { font-size: 17px; }
}

/* ══════════════════════════════════════════════════
   SIMULATION INFLATION
   ══════════════════════════════════════════════════ */
.inflation-sim {
  margin-top: 24px;
  padding: 20px;
  background: rgba(220,38,38,0.04);
  border: 1px solid rgba(220,38,38,0.12);
  border-radius: 16px;
}
.inflation-sim-title {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 18px;
}
.inflation-bars {
  display: flex; align-items: flex-end; gap: 12px;
  margin-bottom: 16px;
}
.inflation-bar-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.inflation-bar-track {
  width: 100%; height: 100px; position: relative;
  background: rgba(220,38,38,0.07);
  border-radius: 6px; overflow: hidden;
  display: flex; align-items: flex-end;
}
.inflation-bar-fill {
  width: 100%; background: linear-gradient(180deg, rgba(220,38,38,0.5), rgba(220,38,38,0.25));
  border-radius: 6px 6px 0 0;
  transition: height .6s cubic-bezier(.16,1,.3,1);
}
.inflation-bar-fill.danger {
  background: linear-gradient(180deg, #dc2626, rgba(220,38,38,0.5));
}
.inflation-bar-val {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  color: var(--text-primary); text-align: center; line-height: 1.2;
}
.inflation-bar-val.danger { color: #dc2626; }
.inflation-bar-year {
  font-size: 10px; color: var(--text-muted); font-weight: 500;
}
.inflation-sim-loss {
  font-size: 13px; font-weight: 700; color: #dc2626;
  display: flex; align-items: center; gap: 8px;
  padding-top: 12px; border-top: 1px solid rgba(220,38,38,0.15);
}

/* ══════════════════════════════════════════════════
   IMAGE SP500 DANS WHY-CARD
   ══════════════════════════════════════════════════ */
.why-card-chart {
  width: 100%; border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  display: block;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.why-card-chart:hover {
  transform: scale(1.02);
}

/* ══════════════════════════════════════════════════
   LOGO MOBILE FIXE — Top center, mobile only
   ══════════════════════════════════════════════════ */
.mobile-logo-fixed {
  display: none;
}
@media(max-width:900px) {
  .mobile-logo-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    padding: 8px 20px;
    border-radius: 100px;
    /* Glass layers inline */
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    background: rgba(255, 255, 255, 0.22);
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.12),
      inset 1.5px 1.5px 0 rgba(255, 255, 255, 0.55),
      inset -1px -1px 0 rgba(255, 255, 255, 0.18),
      inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }
}

/* ══════════════════════════════════════════════════
   LIQUID GLASS BOTTOM NAV — Mobile only
   ══════════════════════════════════════════════════ */
.liquid-nav {
  display: none;
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

/* Conteneur principal — dimensionné par liquid-nav-inner */
.lnav-outer {
  position: relative;
  border-radius: 100px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.28),
    0 2px 8px rgba(0, 0, 0, 0.16),
    0 0 0 0.5px rgba(255, 255, 255, 0.08);
  transition: box-shadow .35s cubic-bezier(.16,1,.3,1);
}

/* Couche 1 — backdrop blur + distorsion liquid glass */
.lnav-glass-blur {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 100px;
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(2);
  -webkit-backdrop-filter: blur(24px) saturate(2);
  filter: url(#glass-distortion);
  isolation: isolate;
  pointer-events: none;
}

/* Couche 2 — teinte blanche translucide */
.lnav-glass-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

/* Couche 3 — reflets spéculaires sur les bords */
.lnav-glass-border {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 100px;
  overflow: hidden;
  box-shadow:
    inset 1.5px 1.5px 0 rgba(255, 255, 255, 0.52),
    inset -1px -1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.11);
  pointer-events: none;
}

/* Contenu — transparent, glass layers gèrent l'aspect visuel */
.liquid-nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  border-radius: 100px;
  transition: padding .35s cubic-bezier(.16,1,.3,1), gap .35s;
  position: relative;
  z-index: 3;
}

.liquid-nav.lnav-shrunk .liquid-nav-inner {
  padding: 6px 8px;
  gap: 2px;
}

.lnav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 18px;
  text-decoration: none;
  transition: color .2s, background .2s, width .35s cubic-bezier(.16,1,.3,1), height .35s;
  flex-shrink: 0;
}

.lnav-item { position: relative; z-index: 1; }
.lnav-item:hover { color: rgba(0, 0, 0, 0.85); }
.lnav-item.lnav-active { color: rgba(0, 0, 0, 0.9); }

/* Bulle glissante */
.lnav-bubble {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 44px;
  width: 48px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  transition: left .38s cubic-bezier(.16,1,.3,1), width .38s cubic-bezier(.16,1,.3,1), opacity .25s;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}
.liquid-nav.lnav-shrunk .lnav-bubble { height: 38px; }

.liquid-nav.lnav-shrunk .lnav-item {
  width: 40px;
  height: 40px;
  font-size: 16px;
}

/* Bouton Tarif — CTA gold avec reflets liquid glass */
.lnav-cta {
  width: auto !important;
  padding: 0 20px;
  gap: 8px;
  background: linear-gradient(135deg, #b8952a, #e8c84a);
  color: #0c1222 !important;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: padding .35s cubic-bezier(.16,1,.3,1), transform .25s, box-shadow .25s !important;
  box-shadow:
    0 4px 20px rgba(184,149,42,0.45),
    inset 1.5px 1.5px 0 rgba(255, 255, 255, 0.55),
    inset -1px -1px 0 rgba(255, 255, 255, 0.15);
}
.lnav-cta .btn-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.3) 50%, transparent 65%);
  animation: shimmerSlide 3s linear infinite;
}
.lnav-cta:hover {
  transform: scale(1.04) !important;
  box-shadow: 0 6px 28px rgba(184,149,42,0.55) !important;
  background: linear-gradient(135deg, #d4af37, #f0d060) !important;
}
.liquid-nav.lnav-shrunk .lnav-cta {
  padding: 0 14px;
  font-size: 13px;
}

@media(max-width:900px) {
  .liquid-nav { display: block; }
  body { padding-bottom: 96px; }
}
