/* ═══════════════════════════════════════════════════════════
   ROAS ACADEMY v2 — Inspired by Adsmastery.com
   Dark premium · Split hero · Image-forward sections
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Meilleure expérience tactile mobile */
a, button, [role="button"], input, select, textarea {
  -webkit-tap-highlight-color: transparent;
}
button { touch-action: manipulation; }
img { -webkit-user-drag: none; }

:root {
  --bg:       #060b14;
  --bg2:      #0a1020;
  --bg3:      #0f1829;
  --surface:  #111c30;
  --surface2: #162036;
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.12);

  --green:    #10b981;
  --green-d:  #059669;
  --green-dd: #047857;
  --green-glow: rgba(16,185,129,0.18);

  --gold:     #f59e0b;
  --red:      #ef4444;
  --white:    #ffffff;
  --muted:    rgba(255,255,255,0.55);
  --muted2:   rgba(255,255,255,0.35);

  --ff:    'Inter', sans-serif;
  --ffh:   'Space Grotesk', sans-serif;
  --r:     10px;
  --r-lg:  16px;
  --r-xl:  22px;
  --r-2xl: 32px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4 { font-family: var(--ffh); line-height: 1.15; }

/* ─── CONTAINER ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff;
  font-family: var(--ffh); font-weight: 700; font-size: .95rem;
  padding: 14px 28px; border-radius: var(--r-lg); border: none;
  cursor: pointer; transition: all .25s; white-space: nowrap;
}
.btn-primary:hover { background: #0ea271; transform: translateY(-2px); box-shadow: 0 10px 32px var(--green-glow); }
.btn-primary.btn-lg { font-size: 1.05rem; padding: 17px 34px; border-radius: var(--r-xl); }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,.85);
  font-family: var(--ffh); font-weight: 500; font-size: .95rem;
  padding: 14px 24px; border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.14); cursor: pointer; transition: all .25s;
}
.btn-ghost-hero:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }

.btn-vip {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f59e0b, #d97706); color: #0a0f1a;
  font-family: var(--ffh); font-weight: 700; font-size: .95rem;
  padding: 14px 28px; border-radius: var(--r-lg); border: none;
  cursor: pointer; transition: all .25s;
}
.btn-vip:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(245,158,11,.3); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  font-family: var(--ffh); font-weight: 600; font-size: .95rem;
  padding: 14px 24px; border-radius: var(--r-lg); transition: all .25s;
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }
.btn-nav {
  display: inline-flex; align-items: center;
  background: var(--green); color: #fff;
  font-family: var(--ffh); font-weight: 600; font-size: .85rem;
  padding: 10px 20px; border-radius: var(--r); transition: all .25s;
}
.btn-nav:hover { background: #0ea271; }

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-block;
  background: rgba(16,185,129,.12); color: var(--green);
  font-size: .75rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 100px; border: 1px solid rgba(16,185,129,.25);
  margin-bottom: 14px;
}
.section-label.light { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.15); }
.section-h2 { font-size: clamp(1.7rem,3.5vw,2.6rem); font-weight: 800; margin-bottom: 14px; }
.section-p  { color: var(--muted); font-size: 1.02rem; max-width: 580px; margin-bottom: 32px; }
.accent     { color: var(--green); }
.ai-badge-title {
  display: inline-block;
  font-size: clamp(.9rem,1.6vw,1.1rem);
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  vertical-align: middle;
  margin-left: 8px;
  position: relative;
  top: -2px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes floatUD  { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes pulse    { 0%,100% { transform:scale(1); opacity:1; } 50% { transform:scale(1.15); opacity:.7; } }
@keyframes glowPulse{ 0%,100% { opacity:.35; } 50% { opacity:.65; } }
@keyframes shimmer  { from { transform:translateX(-100%); } to { transform:translateX(100%); } }

.anim-up { animation: fadeUp .7s ease forwards; }

/* Reveal on scroll */
.reveal { opacity:0; transform:translateY(36px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in  { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, var(--green-dd), var(--green-d));
  padding: 9px 20px; display:flex; align-items:center; justify-content:center;
  gap: 12px; font-size:.83rem; position:relative; z-index:200;
}
.topbar-dot {
  width:7px; height:7px; background:#fff; border-radius:50%;
  animation: pulse 1.4s infinite; flex-shrink:0;
}
.topbar-cta {
  background:rgba(255,255,255,.18); color:#fff;
  font-weight:700; padding:4px 12px; border-radius:6px;
  font-size:.8rem; transition:.2s;
}
.topbar-cta:hover { background:rgba(255,255,255,.3); }
.topbar-close {
  position:absolute; right:16px; background:none; border:none;
  color:#fff; cursor:pointer; opacity:.7; font-size:.75rem;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
  position:sticky; top:0; z-index:1000;
  background:rgba(6,11,20,.94); backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border); transition:.3s;
}
.navbar.scrolled { box-shadow:0 4px 40px rgba(0,0,0,.5); }
.nav-inner {
  max-width:1180px; margin:0 auto; padding:14px 24px;
  display:flex; align-items:center; gap:28px;
}
.brand {
  font-family:var(--ffh); font-size:1.45rem; font-weight:900;
  letter-spacing:-.5px; flex-shrink:0;
}
.brand span { color:var(--green); }
.nav-links { display:flex; gap:24px; flex:1; justify-content:center; }
.nav-links a { color:var(--muted); font-size:.88rem; font-weight:500; transition:.2s; }
.nav-links a:hover { color:#fff; }
.nav-burger { display:none; background:none; border:1px solid var(--border2); color:#fff; padding:8px 12px; border-radius:8px; cursor:pointer; margin-left:auto; font-size:.9rem; }
.nav-drawer {
  display:none; flex-direction:column; padding:16px 20px 24px; gap:2px;
  border-top:1px solid var(--border);
  background: rgba(6,11,20,.98);
  animation: drawerSlide .22s ease;
}
@keyframes drawerSlide {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:translateY(0); }
}
.nav-drawer a { padding:12px 4px; color:rgba(255,255,255,.8); font-weight:500; border-bottom:1px solid var(--border); font-size:.95rem; transition:.2s; }
.nav-drawer a:hover { color:var(--green); padding-left:8px; }
.nav-drawer a.btn-nav { border-bottom:none; margin-top:12px; justify-content:center; border-radius:var(--r); }
.nav-drawer.open { display:flex; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(16,185,129,.1) 0%, transparent 60%),
    linear-gradient(rgba(16,185,129,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,.03) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  position:relative; overflow:hidden; padding:80px 0 0;
}
.hero-inner {
  max-width:1180px; margin:0 auto; padding:0 24px;
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
  min-height:calc(100vh - 130px);
}
.hero-tag {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(16,185,129,.1); color:var(--green);
  border:1px solid rgba(16,185,129,.28); border-radius:100px;
  font-size:.78rem; font-weight:600; padding:7px 16px;
  margin-bottom:26px; letter-spacing:.02em;
}
.tag-dot {
  width:6px; height:6px; background:var(--green); border-radius:50%;
  animation:pulse 1.4s infinite; flex-shrink:0;
}
h1 {
  font-size:clamp(2.2rem,4.5vw,3.5rem); font-weight:900;
  line-height:1.1; margin-bottom:22px;
}
.h1-accent {
  display:block; color:var(--green);
  background:linear-gradient(135deg,#10b981,#34d399,#6ee7b7);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}
.hero-desc {
  color:var(--muted); font-size:1.05rem; max-width:480px;
  margin-bottom:30px; line-height:1.7;
}
.hero-desc strong { color:#fff; }
.hero-stats {
  display:flex; align-items:center; gap:0;
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r-lg); margin-bottom:32px; overflow:hidden;
}
.hstat { padding:16px 24px; text-align:center; flex:1; }
.hstat-sep { width:1px; background:var(--border); align-self:stretch; }
.hstat-n {
  display:block; font-family:var(--ffh); font-size:1.8rem;
  font-weight:900; color:var(--green); line-height:1;
}
.hstat-x { font-size:1rem; }
.hstat-l { display:block; font-size:.72rem; color:var(--muted2); margin-top:4px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:32px; }
.hero-trust { display:flex; align-items:center; gap:14px; }
.trust-avatars { display:flex; }
.ta {
  width:34px; height:34px; border-radius:50%;
  border:2px solid var(--bg); margin-left:-8px;
}
.ta:first-child { margin-left:0; }
.ta1{background:linear-gradient(135deg,#059669,#34d399);}
.ta2{background:linear-gradient(135deg,#7c3aed,#a78bfa);}
.ta3{background:linear-gradient(135deg,#0891b2,#38bdf8);}
.ta4{background:linear-gradient(135deg,#dc2626,#f87171);}
.ta5{background:linear-gradient(135deg,#d97706,#fbbf24);}
.stars-row { color:var(--gold); font-size:.85rem; letter-spacing:2px; }
.trust-text p { font-size:.8rem; color:var(--muted); }
.trust-text strong { color:#fff; }

/* HERO RIGHT */
.hero-right { position:relative; display:flex; justify-content:center; align-items:flex-end; }
.hero-photo-wrap {
  position:relative; width:100%; max-width:500px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid rgba(16,185,129,.25);
  box-shadow: 0 24px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(16,185,129,.1), 0 0 60px rgba(16,185,129,.08);
  animation: floatUD 6s ease-in-out infinite;
}
.hero-photo-bg {
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,11,20,.6) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-photo {
  width:100%; height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
  position:relative; z-index:0;
}
/* Badge bas de photo */
.hero-photo-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  padding: 14px 20px;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.9);
  letter-spacing: .04em;
}
.hero-photo-badge i { color: var(--green); font-size: .8rem; }

/* floating metric cards */
.hcard {
  position:absolute; z-index:4;
  display:flex; align-items:center; gap:10px;
  background:rgba(6,11,20,.92); backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--r-lg); padding:12px 16px;
  box-shadow:0 8px 32px rgba(0,0,0,.5);
  animation: floatUD 4s ease-in-out infinite;
}
.hcard-1 { top:12%; right:-18px; animation-delay:0s; }
.hcard-2 { top:42%; left:-18px; animation-delay:1.5s; }
.hcard-3 { bottom:18%; right:14%; animation-delay:3s; }
.hcard-icon {
  width:36px; height:36px; border-radius:9px;
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; color:#fff; flex-shrink:0;
}
.live-icon { background: rgba(239,68,68,.2); }
.live-icon i { color: #ef4444; animation: pulse 1.2s infinite; }
.hcard-val { font-family:var(--ffh); font-size:.88rem; font-weight:700; }
.hcard-sub { font-size:.7rem; color:var(--muted2); }
.hero-wave { margin-top:40px; line-height:0; }

/* ═══════════════════════════════════════════════════════
   PROOF GALLERY — Défilement infini
═══════════════════════════════════════════════════════ */
.proof-gallery {
  background: var(--bg);
  padding: 20px 0 20px;
  overflow: hidden;
  position: relative;
}

.proof-gallery::before,
.proof-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.proof-gallery::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.proof-gallery::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.proof-gallery-header {
  text-align: center;
  margin-bottom: 32px;
}

.proof-gallery-label {
  display: inline-block;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--green);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 7px 20px;
  border-radius: 50px;
  text-transform: uppercase;
}

.proof-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.proof-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: proofScroll 35s linear infinite;
}

.proof-track:hover {
  animation-play-state: paused;
}

@keyframes proofScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.proof-card {
  position: relative;
  width: 240px;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}

.proof-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(16,185,129,0.2);
  border-color: rgba(16,185,129,0.4);
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.proof-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 24px 14px 14px;
  transform: translateY(100%);
  transition: transform .3s ease;
}

.proof-card:hover .proof-card-overlay {
  transform: translateY(0);
}

.proof-card-overlay span {
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
}

/* ═══════════════════════════════════════════════════════
   LOGOS BAR
═══════════════════════════════════════════════════════ */
.logos-bar {
  background:var(--bg2); border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:24px; text-align:center; overflow:hidden;
}
.logos-label { font-size:.74rem; color:var(--muted2); letter-spacing:.1em; text-transform:uppercase; margin-bottom:16px; }
.logos-track {
  display:flex; align-items:center; justify-content:center;
  flex-wrap:wrap; gap:8px 24px;
}
.logo-item { display:flex; align-items:center; gap:6px; font-size:.88rem; color:var(--muted2); font-weight:600; }
.logo-item i { font-size:1rem; }
.logo-text-bold { font-weight:700; }
.logo-sep { color:var(--border2); }

/* ═══════════════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════════════ */
.problem-sec { padding:60px 0; background:var(--bg2); }
.problems-split { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; margin-top:28px; }
.problems-list { display:flex; flex-direction:column; gap:24px; }
.prob-item { display:flex; gap:16px; align-items:flex-start; }
.prob-icon {
  width:42px; height:42px; border-radius:10px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:1rem;
}
.prob-icon.bad { background:rgba(239,68,68,.1); color:#ef4444; border:1px solid rgba(239,68,68,.2); }
.prob-item h4 { font-size:.95rem; font-weight:700; margin-bottom:5px; }
.prob-item p  { font-size:.84rem; color:var(--muted); line-height:1.65; }
.problems-img { position:relative; }
.problems-img img { width:100%; border-radius:var(--r-xl); border:1px solid var(--border); box-shadow:0 24px 80px rgba(0,0,0,.5); }
.prob-img-card {
  position:absolute; bottom:20px; left:20px; right:20px;
  background:rgba(6,11,20,.9); backdrop-filter:blur(12px);
  border:1px solid rgba(239,68,68,.25); border-radius:var(--r-lg);
  padding:14px 16px; display:flex; gap:12px; align-items:center;
}
.prob-img-icon { font-size:1.3rem; color:#ef4444; flex-shrink:0; }
.prob-img-card strong { display:block; font-size:.85rem; margin-bottom:3px; }
.prob-img-card p { font-size:.75rem; color:var(--muted); }

/* ═══════════════════════════════════════════════════════
   SOLUTION SECTION
═══════════════════════════════════════════════════════ */
.solution-sec { padding:60px 0; background:var(--bg); }
.solution-inner { display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.solution-img-col { position:relative; }
.solution-img-col img { width:100%; border-radius:var(--r-xl); border:1px solid rgba(16,185,129,.2); box-shadow:0 24px 80px rgba(0,0,0,.5), 0 0 60px rgba(16,185,129,.08); }
.sol-badge {
  position:absolute; top:-16px; left:50%; transform:translateX(-50%);
  background:var(--green); color:#fff; font-size:.77rem; font-weight:700;
  padding:8px 18px; border-radius:100px; white-space:nowrap;
  box-shadow:0 8px 24px var(--green-glow);
}
.sol-badge i { margin-right:4px; }
.section-h2 + .solution-desc { margin-top:0; }
.solution-desc { color:var(--muted); font-size:1rem; line-height:1.7; margin-bottom:24px; }
.solution-desc strong { color:#fff; }
.sol-features { display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
.sol-feat { display:flex; align-items:center; gap:10px; font-size:.88rem; color:rgba(255,255,255,.8); }
.sol-feat i { color:var(--green); font-size:.8rem; }
.sol-quote {
  background:var(--surface); border:1px solid var(--border);
  border-left:3px solid var(--green); border-radius:var(--r);
  padding:20px; margin-top:20px;
}
.sol-quote i { color:var(--green); margin-bottom:8px; display:block; font-size:1.1rem; }
.sol-quote p { font-size:.88rem; color:rgba(255,255,255,.75); font-style:italic; margin-bottom:8px; }
.sol-quote span { font-size:.75rem; color:var(--muted2); }

/* ═══════════════════════════════════════════════════════
   FOR WHOM
═══════════════════════════════════════════════════════ */
.forwhom-sec { padding:60px 0; background:var(--bg2); }
.forwhom-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:24px; }
.fw-card {
  background:var(--bg); border:1px solid var(--border);
  border-radius:var(--r-xl); padding:28px 22px; transition:.3s;
}
.fw-card:hover { border-color:rgba(16,185,129,.4); transform:translateY(-5px); box-shadow:0 16px 48px rgba(16,185,129,.1); }
.fw-emoji { font-size:2.4rem; margin-bottom:14px; }
.fw-card h3 { font-size:1rem; margin-bottom:10px; }
.fw-card p  { font-size:.82rem; color:var(--muted); margin-bottom:16px; }
.fw-list { list-style:none; display:flex; flex-direction:column; gap:6px; }
.fw-list li { font-size:.78rem; color:var(--muted2); padding-left:14px; position:relative; }
.fw-list li::before { content:'✓'; position:absolute; left:0; color:var(--green); font-weight:700; }
.not-right {
  background:rgba(239,68,68,.06); border:1px solid rgba(239,68,68,.18);
  border-radius:var(--r); padding:16px 20px;
  display:flex; align-items:flex-start; gap:12px;
}
.not-right i { color:#ef4444; flex-shrink:0; margin-top:2px; }
.not-right p { font-size:.86rem; color:rgba(255,255,255,.7); }
.not-right strong { color:#fca5a5; }

/* ═══════════════════════════════════════════════════════
   PROGRAMME
═══════════════════════════════════════════════════════ */
.programme-sec { padding:60px 0; background:var(--bg); }
.prog-layout { display:grid; grid-template-columns:1fr 340px; gap:40px; align-items:start; }
.prog-weeks  { display:flex; flex-direction:column; gap:10px; }
.prog-week {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r-xl); overflow:hidden; transition:.3s;
}
.prog-week:hover { border-color:rgba(16,185,129,.25); }
.prog-week.active { border-color:rgba(16,185,129,.5); box-shadow:0 0 0 1px rgba(16,185,129,.15); }
.pw-head {
  display:flex; align-items:center; gap:16px;
  padding:22px 24px; cursor:pointer; user-select:none;
}
.pw-num {
  font-family:var(--ffh); font-size:1.8rem; font-weight:900;
  color:rgba(255,255,255,.12); width:44px; flex-shrink:0; line-height:1;
}
.prog-week.active .pw-num { color:var(--green); }
.pw-meta { flex:1; }
.pw-tag {
  display:inline-block; background:rgba(16,185,129,.12); color:var(--green);
  font-size:.68rem; font-weight:700; padding:3px 10px;
  border-radius:100px; letter-spacing:.06em; text-transform:uppercase; margin-bottom:5px;
}
.pw-tag-ai {
  background: linear-gradient(135deg, rgba(99,102,241,.18), rgba(168,85,247,.18));
  color: #a78bfa;
  border: 1px solid rgba(168,85,247,.3);
  text-transform: none;
  letter-spacing: .02em;
  animation: ai-pulse 2.5s ease-in-out infinite;
}
@keyframes ai-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(168,85,247,0); }
  50% { box-shadow: 0 0 10px 2px rgba(168,85,247,.25); }
}
.pw-meta h4 { font-size:.95rem; color:rgba(255,255,255,.9); line-height:1.3; }
.pw-arrow i { color:var(--muted2); font-size:.8rem; transition:.3s; flex-shrink:0; }
.prog-week.active .pw-arrow i { transform:rotate(180deg); color:var(--green); }
.pw-body { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.prog-week.active .pw-body { max-height:800px; }
.pw-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; padding:0 24px 24px; border-top:1px solid var(--border); padding-top:20px; }
.pw-content ul { list-style:none; display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.pw-content ul li { font-size:.84rem; color:rgba(255,255,255,.72); padding-left:18px; position:relative; }
.pw-content ul li::before { content:'→'; position:absolute; left:0; color:var(--green); font-size:.75rem; }
.pw-livrable {
  display:flex; gap:10px; align-items:flex-start;
  background:rgba(16,185,129,.07); border:1px solid rgba(16,185,129,.18);
  border-radius:var(--r); padding:12px;
}
.pw-livrable i { color:var(--green); flex-shrink:0; font-size:.85rem; margin-top:2px; }
.pw-livrable div { font-size:.82rem; color:rgba(255,255,255,.75); }
.pw-livrable strong { color:#fff; }
.pw-case {
  background:rgba(255,255,255,.03); border:1px solid var(--border);
  border-radius:var(--r); padding:14px; display:flex; flex-direction:column; gap:8px;
}
.case-flag { font-size:1.6rem; }
.case-body { font-size:.8rem; color:var(--muted); line-height:1.6; }
.case-body strong { color:#fff; }
.case-good { color:var(--green); font-weight:700; }
.case-bad  { color:#f87171; text-decoration:line-through; }

/* Sidebar */
.prog-sidebar { display:flex; flex-direction:column; gap:16px; position:sticky; top:80px; }
.ps-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r-xl); padding:24px;
}
.ps-title { font-family:var(--ffh); font-size:.88rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.08em; margin-bottom:16px; }
.ps-items { display:flex; flex-direction:column; gap:10px; }
.ps-item { display:flex; align-items:center; gap:10px; font-size:.85rem; color:rgba(255,255,255,.75); }
.ps-item i { color:var(--green); font-size:.85rem; width:16px; }
.ps-item-ai {
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(168,85,247,.1));
  border: 1px solid rgba(168,85,247,.2);
  border-radius: 8px;
  padding: 7px 10px;
  color: #c4b5fd;
}
.ps-item-ai i { color: #a78bfa; }
.ps-price { text-align:center; font-size:.8rem; color:var(--muted2); margin-top:12px; }
.ps-price strong { color:var(--green); }
.ps-img-card { padding:16px; }
.ps-live-badge {
  display:flex; align-items:center; gap:8px;
  font-size:.78rem; color:var(--muted); margin-top:10px;
}
.live-pulse { width:8px; height:8px; background:#ef4444; border-radius:50%; animation:pulse 1.2s infinite; display:inline-block; }

/* ═══════════════════════════════════════════════════════
   RESULTS
═══════════════════════════════════════════════════════ */
.results-sec { padding:60px 0; background:var(--bg2); }
.results-dashboard {
  position:relative; border-radius:var(--r-xl); overflow:hidden;
  margin-bottom:40px; border:1px solid rgba(16,185,129,.2);
  box-shadow:0 24px 80px rgba(0,0,0,.5), 0 0 60px rgba(16,185,129,.05);
}
.results-dashboard img { width:100%; height:340px; object-fit:cover; }
.rd-overlay {
  position:absolute; inset:0;
  background:linear-gradient(transparent 30%, rgba(6,11,20,.95) 90%);
  display:flex; align-items:flex-end; padding:28px;
}
.rd-stats { display:flex; gap:32px; flex-wrap:wrap; }
.rd-stat { display:flex; flex-direction:column; gap:4px; }
.rd-val { font-family:var(--ffh); font-size:1.5rem; font-weight:900; color:var(--green); }
.rd-lbl { font-size:.72rem; color:var(--muted2); }
.results-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:32px; }
.rtab {
  background:rgba(255,255,255,.05); border:1px solid var(--border);
  color:var(--muted); padding:10px 22px; border-radius:100px;
  font-size:.86rem; font-weight:500; cursor:pointer; transition:.25s;
  font-family:var(--ff);
}
.rtab:hover { color:#fff; border-color:rgba(16,185,129,.35); }
.rtab.active { background:var(--green); border-color:var(--green); color:#fff; }
.rtab-content { display:none; }
.rtab-content.active { display:block; }

.results-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.rcard {
  background:var(--bg); border:1px solid var(--border);
  border-radius:var(--r-xl); padding:22px; transition:.3s;
}
.rcard:hover { border-color:rgba(16,185,129,.35); transform:translateY(-4px); box-shadow:0 16px 48px rgba(16,185,129,.08); }
.rcard-top { display:flex; align-items:center; gap:8px; margin-bottom:10px; }
.rcard-flag { font-size:1.6rem; }
.rcard-sector { font-size:.7rem; color:var(--muted2); font-weight:600; text-transform:uppercase; letter-spacing:.05em; }
.rcard-metric { font-family:var(--ffh); font-size:2rem; font-weight:900; color:var(--green); margin-bottom:10px; line-height:1; }
.rcard-metric span { font-size:1rem; font-weight:600; }
.rcard p { font-size:.81rem; color:var(--muted); margin-bottom:12px; }
.rcard-arrow { display:flex; align-items:center; gap:8px; font-size:.78rem; color:var(--muted2); background:rgba(255,255,255,.03); padding:8px 10px; border-radius:8px; }
.rcard-arrow i { color:var(--muted2); font-size:.7rem; }
.rcard-arrow .g { color:var(--green); font-weight:700; }
.rcard-join { background:linear-gradient(135deg,rgba(16,185,129,.1),rgba(16,185,129,.04)); border-color:rgba(16,185,129,.3); }
.rcard-join-inner { text-align:center; padding:12px 0; }
.rcard-join i { font-size:2rem; color:var(--green); margin-bottom:12px; }
.rcard-join h4 { margin-bottom:8px; }
.rcard-join p { font-size:.82rem; color:var(--muted); margin-bottom:16px; }

/* benchmarks */
.bench-layout { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.bench-intro-text h3 { font-size:1.2rem; margin-bottom:10px; }
.bench-intro-text p  { font-size:.86rem; color:var(--muted); margin-bottom:24px; }
.bench-phone-img { width:100%; max-width:280px; border-radius:var(--r-xl); border:1px solid rgba(16,185,129,.2); box-shadow:0 16px 48px rgba(16,185,129,.1); }
.bench-tables { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.btable { background:var(--bg); border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; }
.btable-header { background:rgba(16,185,129,.08); border-bottom:1px solid rgba(16,185,129,.15); padding:10px 16px; font-size:.8rem; font-weight:700; color:var(--green); }
.brow { display:flex; justify-content:space-between; align-items:center; padding:9px 16px; border-bottom:1px solid var(--border); font-size:.8rem; }
.brow:last-child { border-bottom:none; }
.brow span:first-child { color:var(--muted); }
.bval { font-weight:700; color:#fff; }
.bval.g { color:var(--green); }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials-sec { padding:60px 0; background:var(--bg); }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.testi-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r-xl); padding:26px; transition:.3s;
}
.testi-card:hover { border-color:rgba(16,185,129,.3); }
.testi-featured {
  border-color:rgba(16,185,129,.3);
  background:linear-gradient(135deg, rgba(16,185,129,.06), var(--surface));
  grid-row: span 1;
}
.testi-stars { color:var(--gold); font-size:.85rem; letter-spacing:3px; margin-bottom:14px; }
.testi-quote { font-size:.88rem; color:rgba(255,255,255,.75); font-style:italic; margin-bottom:18px; line-height:1.7; }
.testi-author { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.testi-av { width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:1rem; color:#fff; flex-shrink:0; }
.testi-author strong { display:block; font-size:.88rem; }
.testi-author span { font-size:.75rem; color:var(--muted2); }
.testi-result { display:inline-block; background:rgba(16,185,129,.12); color:var(--green); font-size:.75rem; font-weight:700; padding:4px 12px; border-radius:100px; }

/* ═══════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
.pricing-sec { padding:60px 0; background:var(--bg2); }
.urgency-strip {
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  background:rgba(245,158,11,.08); border:1px solid rgba(245,158,11,.22);
  border-radius:var(--r); padding:14px 20px; margin-bottom:40px;
}
.urgency-strip i { color:var(--gold); flex-shrink:0; }
#countdown { font-size:.88rem; font-weight:600; flex:1; }
.urg-spots { font-size:.82rem; color:var(--muted); margin-left:auto; }
.urg-spots strong { color:#fbbf24; }
.pricing-grid { display:grid; grid-template-columns:1.1fr 1fr; gap:24px; margin-bottom:36px; }
.price-card {
  background:var(--bg); border:1px solid var(--border);
  border-radius:var(--r-2xl); padding:34px; position:relative; transition:.3s;
}
.price-card:hover { transform:translateY(-4px); }
.price-popular { border-color:rgba(16,185,129,.5); box-shadow:0 0 0 1px rgba(16,185,129,.15), 0 24px 60px rgba(16,185,129,.12); }
.price-vip     { border-color:rgba(245,158,11,.35); }
.pc-badge {
  display:inline-block; background:var(--green); color:#fff;
  font-size:.76rem; font-weight:700; padding:5px 14px;
  border-radius:100px; margin-bottom:20px;
}
.pc-badge.vip { background:linear-gradient(135deg,#f59e0b,#d97706); color:#0a0f1a; }
.pc-head h3 { font-size:1.1rem; margin-bottom:14px; }
.pc-price { display:flex; align-items:baseline; gap:10px; margin-bottom:6px; }
.pc-old { font-size:.95rem; color:var(--muted2); text-decoration:line-through; }
.pc-now { font-family:var(--ffh); font-size:2.5rem; font-weight:900; color:var(--green); }
.pc-now.gold { color:#fbbf24; }
.pc-terms { font-size:.8rem; color:var(--muted2); margin-bottom:24px; }
.pc-features { display:flex; flex-direction:column; gap:10px; margin-bottom:28px; padding-top:20px; border-top:1px solid var(--border); }
.pc-feat { display:flex; align-items:flex-start; gap:10px; font-size:.86rem; color:rgba(255,255,255,.75); }
.pc-feat i { color:var(--green); flex-shrink:0; margin-top:2px; }
.vip-feat { color:rgba(255,255,255,.9); }
.vip-feat i { color:var(--gold); }
.pc-note { text-align:center; font-size:.75rem; color:var(--muted2); margin-top:12px; }
.guarantee {
  display:flex; align-items:center; gap:20px;
  background:rgba(16,185,129,.06); border:1px solid rgba(16,185,129,.2);
  border-radius:var(--r-lg); padding:22px;
}
.guar-icon { font-size:2.2rem; color:var(--green); flex-shrink:0; }
.guar-text strong { display:block; margin-bottom:4px; }
.guar-text p { font-size:.84rem; color:var(--muted); }

/* ═══════════════════════════════════════════════════════
   INSCRIPTION
═══════════════════════════════════════════════════════ */
.inscription-sec { padding:60px 0; background:var(--bg); }

/* Bloc titre + badges centré au-dessus */
.insc-top {
  text-align:center;
  max-width:620px;
  margin:0 auto 32px;
}
.insc-top .section-h2 { margin-bottom:14px; }
.insc-top-sub { color:var(--muted); margin-bottom:28px; }
.insc-top-sub strong { color:#fff; }

/* Badges en ligne horizontale */
.insc-top .insc-checklist {
  flex-direction:row;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 20px;
  margin-bottom:0;
}

/* Formulaire centré */
.insc-split { display:flex; justify-content:center; }
.insc-right--centered { width:100%; max-width:580px; }

.insc-checklist { display:flex; flex-direction:column; gap:10px; margin-bottom:32px; }
.insc-checklist div { display:flex; align-items:center; gap:8px; font-size:.86rem; color:var(--muted); white-space:nowrap; }
.insc-checklist i { color:var(--green); width:16px; }
.insc-photo { display:flex; gap:16px; align-items:center; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-xl); padding:16px; margin-top:32px; }
.insc-photo img { width:90px; height:110px; object-fit:cover; object-position:top; border-radius:var(--r-lg); }
.insc-photo-caption strong { display:block; font-size:.9rem; margin-bottom:4px; }
.insc-photo-caption p { font-size:.78rem; color:var(--muted); }

.insc-form {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--r-2xl); padding:36px;
  display:flex; flex-direction:column; gap:16px;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-field { display:flex; flex-direction:column; gap:6px; }
.form-field label { font-size:.8rem; font-weight:600; color:rgba(255,255,255,.65); }
.form-field input,.form-field select,.form-field textarea {
  background:rgba(255,255,255,.04); border:1px solid var(--border2);
  border-radius:var(--r); padding:12px 16px; color:#fff;
  font-family:var(--ff); font-size:.9rem; transition:.25s; outline:none;
  -webkit-appearance:none;
}
.form-field input::placeholder,.form-field textarea::placeholder { color:rgba(255,255,255,.28); }
.form-field input:focus,.form-field select:focus,.form-field textarea:focus { border-color:var(--green); box-shadow:0 0 0 3px rgba(16,185,129,.12); }
.form-field select option { background:var(--surface2); }
.form-field textarea { resize:vertical; min-height:80px; }
.offer-pills { display:flex; flex-direction:column; gap:10px; }
.offer-pill {
  display:flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.03); border:1px solid var(--border);
  border-radius:var(--r); padding:12px 16px; cursor:pointer; transition:.25s; font-size:.88rem;
}
.offer-pill:has(input:checked) { border-color:var(--green); background:rgba(16,185,129,.07); }
.offer-pill input { accent-color:var(--green); }
.form-note { font-size:.73rem; color:var(--muted2); text-align:center; }

.form-success { display:none; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:48px 32px; background:var(--surface); border:1px solid rgba(16,185,129,.3); border-radius:var(--r-2xl); }
.fs-icon { font-size:3.5rem; color:var(--green); margin-bottom:16px; }
.form-success h3 { font-size:1.4rem; margin-bottom:12px; }
.form-success p { color:var(--muted); }

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
.faq-sec { padding:60px 0; background:var(--bg2); }
.faq-layout { display:grid; grid-template-columns:340px 1fr; gap:40px; align-items:start; }
.faq-left > p { color:var(--muted); margin-bottom:24px; font-size:.9rem; }
.faq-left .btn-whatsapp { margin-bottom:32px; }
.faq-img-wrap img { width:100%; border-radius:var(--r-xl); border:1px solid var(--border); margin-top:24px; }
.faq-right { display:flex; flex-direction:column; gap:10px; }
.faq-item {
  background:var(--bg); border:1px solid var(--border);
  border-radius:var(--r-lg); overflow:hidden; transition:.25s;
}
.faq-item.active { border-color:rgba(16,185,129,.4); }
.faq-q {
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  padding:18px 22px; cursor:pointer; user-select:none;
  font-size:.9rem; font-weight:600; color:rgba(255,255,255,.88);
}
.faq-q i { flex-shrink:0; color:var(--muted2); font-size:.8rem; transition:.3s; }
.faq-item.active .faq-q i { transform:rotate(45deg); color:var(--green); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.active .faq-a { max-height:300px; }
.faq-a p { padding:0 22px 18px; font-size:.84rem; color:var(--muted); border-top:1px solid var(--border); padding-top:14px; line-height:1.7; }

/* ═══════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════ */
.final-sec { padding:60px 0 50px; background:var(--bg); overflow:hidden; }
.final-inner {
  display:grid; grid-template-columns:1fr auto; gap:60px; align-items:end;
  background:linear-gradient(135deg, rgba(16,185,129,.1), rgba(16,185,129,.03));
  border:1px solid rgba(16,185,129,.25); border-radius:var(--r-2xl);
  padding:60px; position:relative; overflow:hidden;
}
.final-inner::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 80% at 80% 50%, rgba(16,185,129,.08), transparent);
  pointer-events:none;
}
.final-left { position:relative; z-index:1; }
.final-left h2 { font-size:clamp(1.8rem,3vw,2.4rem); margin-bottom:14px; }
.final-left > p { color:var(--muted); margin-bottom:28px; font-size:1rem; }
.final-left strong { color:#fff; }
.final-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:20px; }
.final-guar { font-size:.8rem; color:var(--muted2); display:flex; align-items:center; gap:8px; }
.final-guar i { color:var(--green); }
.final-instructor { height:320px; object-fit:cover; object-position:top; border-radius:var(--r-xl); position:relative; z-index:1; filter:drop-shadow(0 20px 40px rgba(0,0,0,.5)); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer { background:#030710; border-top:1px solid var(--border); padding:40px 0 0; }
.footer-row { display:grid; grid-template-columns:2fr 1fr 1fr; gap:36px; padding-bottom:32px; }
.footer-brand p { color:var(--muted2); font-size:.84rem; margin:14px 0 20px; max-width:280px; }
.footer-brand-logo { display:inline-block; font-family:var(--ffh); font-size:1.5rem; font-weight:900; margin-bottom:0; }
.footer-brand-logo span { color:var(--green); }
.footer-socials { display:flex; gap:10px; }
.footer-socials a {
  width:38px; height:38px; border-radius:9px;
  background:rgba(255,255,255,.06); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem; color:var(--muted); transition:.25s;
}
.footer-socials a:hover { background:var(--green); color:#fff; border-color:var(--green); }
.footer-links h5,.footer-contact-col h5 { font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--muted2); margin-bottom:16px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:.85rem; color:var(--muted); transition:.2s; }
.footer-links a:hover { color:var(--green); }
.footer-contact-col p { display:flex; align-items:center; gap:8px; font-size:.83rem; color:var(--muted); margin-bottom:8px; }
.footer-contact-col i { color:var(--green); width:14px; }
.footer-bottom {
  border-top:1px solid var(--border); padding:18px 0;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
}
.footer-bottom p { font-size:.78rem; color:var(--muted2); }
.footer-bottom div { display:flex; gap:18px; }
.footer-bottom a { font-size:.75rem; color:var(--muted2); transition:.2s; }
.footer-bottom a:hover { color:rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════════════
   STICKY CTA (mobile)
═══════════════════════════════════════════════════════ */
.sticky-cta {
  display:none; position:fixed; bottom:16px; left:12px; right:12px; z-index:900;
  opacity:0; transform:translateY(12px); transition:.3s;
}
.sticky-cta.show { opacity:1; transform:translateY(0); }
.sticky-cta .btn-primary { width:100%; box-shadow:0 8px 32px rgba(16,185,129,.4); font-size:.95rem; }

/* ─── READ PROGRESS ─── */
.read-progress {
  position:fixed; top:0; left:0; height:3px; z-index:9999;
  background:linear-gradient(90deg,var(--green),#34d399);
  width:0; transition:width .1s;
}

/* ─── Ghost button mobile ─── */
.btn-ghost-mobile span { white-space: nowrap; }

/* ─── TESTI grid fix ─── */
.testi-results-img { min-height: 240px; overflow:hidden; }

/* ─── Solution image glow ─── */
.solution-img-col::after {
  content:''; position:absolute; inset:-1px;
  border-radius:var(--r-xl);
  background:linear-gradient(135deg, rgba(16,185,129,.15), transparent 60%);
  pointer-events:none;
}

/* ─── Prog week number gradient on last ─── */
.prog-week:last-child.active .pw-num {
  background:linear-gradient(135deg,#10b981,#34d399);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════════ */
@media (max-width:1024px) {
  /* Hero */
  .hero { background-image: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(16,185,129,.12) 0%, transparent 60%); padding: 70px 0 0; }
  .hero-inner { grid-template-columns:1fr; padding-bottom:40px; min-height:auto; gap:40px; }
  .hero-right { display:none; }
  .hero-left  { text-align:center; }
  .hero-tag   { justify-content:center; }
  .hero-desc  { max-width:100%; margin-left:auto; margin-right:auto; }
  .hero-stats { justify-content:center; }
  .hero-actions { justify-content:center; }
  .hero-trust { justify-content:center; }

  /* Sections */
  .solution-inner   { grid-template-columns:1fr; gap:40px; }
  .solution-img-col { max-width: 520px; margin: 0 auto; }
  .sol-badge        { white-space:normal; text-align:center; }
  .forwhom-grid     { grid-template-columns:1fr 1fr; }
  .prog-layout      { grid-template-columns:1fr; }
  .prog-sidebar     { display:grid; grid-template-columns:1fr 1fr; position:static; gap:16px; }
  .results-grid     { grid-template-columns:1fr 1fr; }
  .testi-grid       { grid-template-columns:1fr 1fr; }
  .bench-layout     { grid-template-columns:1fr; }
  .bench-tables     { grid-template-columns:1fr 1fr; }
  .pricing-grid     { grid-template-columns:1fr; max-width:540px; margin:0 auto 36px; }
  .insc-split       { justify-content:center; }
  .insc-top .insc-checklist { flex-direction:row; flex-wrap:wrap; justify-content:center; gap:10px 14px; }
  .insc-right--centered { max-width:100%; }
  .faq-layout       { grid-template-columns:1fr; }
  .faq-img-wrap     { display:none; }
  .final-inner      { grid-template-columns:1fr; padding:40px; }
  .final-instructor { display:none; }
  .footer-row       { grid-template-columns:1fr 1fr; }
  .problems-split   { gap:28px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════════════ */
@media (max-width:768px) {
  /* Topbar */
  .topbar { flex-wrap:wrap; justify-content:center; gap:8px; padding:10px 44px 10px 16px; font-size:.78rem; text-align:center; }
  .topbar-close { top:50%; transform:translateY(-50%); }

  /* Navbar */
  .nav-links, .btn-nav { display:none; }
  .nav-burger { display:block; }
  .nav-inner  { padding:12px 16px; }

  /* Global sections */
  section { padding:44px 0 !important; }
  .container { padding:0 16px; }

  /* Hero */
  .hero { padding:44px 0 0; }
  .hero-inner { padding:0 16px 40px; }
  h1 { font-size: clamp(1.8rem,7vw,2.5rem); }
  .hero-tag { font-size:.72rem; padding:6px 12px; }
  .hero-desc { font-size:.95rem; }
  .hero-stats { flex-direction:row; flex-wrap:wrap; gap:0; }
  .hstat { padding:12px 14px; flex:1; min-width:90px; }
  .hstat-n { font-size:1.35rem; }
  .hstat-l { font-size:.65rem; }
  .hero-actions { flex-direction:column; width:100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost-hero { width:100%; justify-content:center; }
  .hero-trust { flex-direction:column; gap:10px; align-items:center; }
  .hero-wave { margin-top:20px; }

  /* Proof gallery */
  .proof-card { width:180px; height:270px; }

  /* Problem */
  .problems-split { grid-template-columns:1fr; }
  .problems-img   { display:none; }
  .prob-item      { gap:12px; }
  .prob-icon      { width:36px; height:36px; font-size:.85rem; }

  /* Solution */
  .sol-badge { position:static; transform:none; margin-bottom:16px; white-space:normal; display:inline-block; }
  .solution-img-col { padding-top:0; }

  /* For Whom */
  .forwhom-grid { grid-template-columns:1fr; }
  .fw-card { padding:22px 18px; }

  /* Programme */
  .pw-head  { padding:16px; gap:12px; }
  .pw-num   { font-size:1.4rem; width:36px; }
  .pw-meta h4 { font-size:.88rem; }
  .pw-tag   { font-size:.62rem; }
  .pw-grid  { grid-template-columns:1fr; gap:16px; padding:16px; }
  .pw-case  { order: -1; }
  .prog-sidebar { grid-template-columns:1fr; }
  .ps-card  { padding:18px; }
  .prog-week.active .pw-body { max-height:1200px; }

  /* Results */
  .results-dashboard img { height:200px; }
  .rd-overlay  { padding:16px; }
  .rd-stats    { gap:12px 20px; flex-wrap:wrap; }
  .rd-val      { font-size:1.2rem; }
  .rd-lbl      { font-size:.65rem; }
  .results-tabs { gap:6px; }
  .rtab        { padding:8px 14px; font-size:.78rem; }
  .results-grid { grid-template-columns:1fr; }
  .rcard       { padding:18px; }
  .rcard-metric { font-size:1.6rem; }

  /* Benchmarks */
  .bench-tables { grid-template-columns:1fr; }
  .bench-intro-text { margin-bottom:0; }
  .bench-phone-img  { max-width:200px; }

  /* Testimonials */
  .testi-grid { grid-template-columns:1fr; }
  .testi-card { padding:20px; }
  .testi-featured { grid-row:auto; }

  /* Pricing */
  .pricing-grid { grid-template-columns:1fr; max-width:100%; }
  .price-card   { padding:24px 20px; }
  .pc-now       { font-size:2rem; }
  .urgency-strip { flex-direction:column; align-items:center; text-align:center; gap:8px; }
  .urg-spots    { margin-left:0; }

  /* Inscription */
  .insc-form  { padding:20px 16px; gap:14px; }
  .form-row   { grid-template-columns:1fr; }
  .insc-checklist { flex-direction:row; flex-wrap:wrap; justify-content:center; gap:8px 14px; }
  .insc-checklist div { font-size:.78rem; }
  .insc-photo { flex-direction:column; text-align:center; }
  .insc-photo img { width:80px; height:100px; margin:0 auto; }
  .offer-pills { flex-direction:column; }

  /* FAQ */
  .faq-layout { grid-template-columns:1fr; }
  .faq-left   { text-align:center; }
  .faq-left .btn-whatsapp { display:inline-flex; }
  .faq-q      { padding:14px 16px; font-size:.85rem; }
  .faq-a p    { padding:12px 16px 16px; font-size:.82rem; }

  /* Final CTA */
  .final-inner      { padding:28px 20px; gap:24px; }
  .final-left h2    { font-size:clamp(1.5rem,5vw,2rem); }
  .final-btns       { flex-direction:column; width:100%; }
  .final-btns .btn-primary,
  .final-btns .btn-whatsapp { width:100%; justify-content:center; }
  .final-guar       { font-size:.75rem; flex-wrap:wrap; }

  /* Footer */
  .footer-row   { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; text-align:center; gap:10px; }
  .footer-bottom div { flex-wrap:wrap; justify-content:center; }

  /* Sticky CTA */
  .sticky-cta { display:flex; }

  /* WhatsApp widget */
  .wa-widget { bottom:88px; right:14px; }
  .wa-popup  { width: min(288px, calc(100vw - 32px)); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════════════════ */
@media (max-width:480px) {
  h1 { font-size: clamp(1.65rem,8vw,2.1rem); }
  .section-h2 { font-size: clamp(1.4rem,6vw,1.9rem); }

  /* Topbar compact */
  .topbar { font-size:.72rem; padding:8px 40px 8px 12px; }
  .topbar span strong { display:block; }

  /* Hero stats — 1 ligne de 3 */
  .hstat { padding:10px 8px; }
  .hstat-n { font-size:1.2rem; }
  .hstat-x { font-size:.8rem; }

  /* Proof gallery */
  .proof-card { width:160px; height:240px; }

  /* Programme */
  .pw-head { padding:14px 12px; gap:10px; }
  .pw-num  { font-size:1.2rem; width:30px; }
  .pw-meta h4 { font-size:.82rem; }
  .pw-tag  { font-size:.58rem; padding:2px 8px; }
  .pw-tag-ai { font-size:.64rem; }

  /* Results dashboard */
  .results-dashboard img { height:160px; }
  .rd-stats { gap:10px; }
  .rd-val   { font-size:1rem; }

  /* Pricing */
  .pc-now { font-size:1.8rem; }
  .price-card { padding:20px 16px; }
  .pc-features { gap:8px; }
  .pc-feat { font-size:.8rem; }

  /* Inscription form */
  .insc-form { padding:16px 14px; border-radius:var(--r-xl); }
  .form-field input,
  .form-field select,
  .form-field textarea { padding:10px 12px; font-size:.85rem; }
  .btn-primary.btn-lg { font-size:.9rem; padding:15px 20px; }

  /* Testimonials */
  .testi-quote { font-size:.82rem; }

  /* Final CTA */
  .final-inner { padding:22px 16px; border-radius:var(--r-xl); }

  /* Section labels */
  .section-label { font-size:.68rem; }

  /* AI badge title */
  .ai-badge-title { font-size:.8rem; margin-left:4px; }

  /* Guarantee */
  .guarantee { flex-direction:column; text-align:center; padding:18px; }
  .guar-icon { font-size:1.8rem; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — EXTRA SMALL (≤ 360px)
═══════════════════════════════════════════════════════ */
@media (max-width:360px) {
  .container { padding:0 12px; }
  h1 { font-size:1.55rem; }
  .section-h2 { font-size:1.3rem; }
  .hstat-sep  { display:none; }
  .hstat      { border:1px solid var(--border); border-radius:var(--r); }
  .hero-stats { display:grid; grid-template-columns:1fr 1fr; gap:8px; background:none; border:none; }
  .btn-primary.btn-lg { font-size:.85rem; padding:13px 16px; }
  .rtab { padding:7px 10px; font-size:.74rem; }
  .insc-checklist div { font-size:.72rem; }
  .pc-now { font-size:1.6rem; }
  .final-inner { padding:18px 14px; }
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP WIDGET
═══════════════════════════════════════════════════════════ */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* FAB button */
.wa-fab {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  transition: transform .25s ease, box-shadow .25s ease;
  flex-shrink: 0;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,.65);
}
.wa-fab .wa-icon-wa,
.wa-fab .wa-icon-x {
  font-size: 1.6rem;
  color: #fff;
  transition: all .2s;
}
.wa-fab.open .wa-icon-wa { display: none !important; }
.wa-fab.open .wa-icon-x  { display: block !important; }

/* Pulsating ring */
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.6);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Notification badge */
.wa-notif {
  position: absolute;
  bottom: 44px;
  right: 0;
  background: #ef4444;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
  animation: notifBounce .6s ease 1.5s both;
}
.wa-notif.hidden { display: none; }
@keyframes notifBounce {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Popup card */
.wa-popup {
  width: 320px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0,0,0,.35);
  transform: scale(.85) translateY(16px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
}
.wa-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Popup header */
.wa-popup-header {
  background: #075e54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}
.wa-popup-info { flex: 1; }
.wa-popup-info strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
}
.wa-status {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.75);
  font-size: .75rem;
}
.wa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: waDot 2s ease infinite;
}
@keyframes waDot {
  0%,100% { opacity: 1; }
  50%      { opacity: .4; }
}
.wa-popup-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}
.wa-popup-close:hover { color: #fff; }

/* Popup body */
.wa-popup-body {
  background: #ece5dd url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3C/svg%3E");
  padding: 16px;
}
.wa-message {
  background: #fff;
  border-radius: 10px 10px 10px 0;
  padding: 12px 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
  max-width: 85%;
  display: inline-block;
}
.wa-message p {
  font-size: .875rem;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 4px;
}
.wa-message p:last-child { margin-bottom: 0; }

/* Popup footer */
.wa-popup-footer {
  padding: 12px 16px;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wa-input {
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  color: #1a1a1a;
  outline: none;
  transition: border-color .2s;
}
.wa-input:focus { border-color: #25d366; }
.wa-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 24px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.wa-send:hover {
  background: #128c7e;
  transform: translateY(-1px);
}

/* Adjust position when mobile CTA is visible */
@media (max-width: 768px) {
  .wa-widget { bottom: 88px; right: 16px; }
  .wa-popup  { width: 288px; }
}

/* ═══════════════════════════════════════════════════════
   SAFE AREA — iPhone X / notch support
═══════════════════════════════════════════════════════ */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .sticky-cta {
    bottom: calc(16px + env(safe-area-inset-bottom));
    padding-bottom: 0;
  }
  .wa-widget {
    bottom: calc(88px + env(safe-area-inset-bottom));
  }
  .footer {
    padding-bottom: calc(0px + env(safe-area-inset-bottom));
  }
}

/* ═══════════════════════════════════════════════════════
   PRINT — masquer les éléments inutiles
═══════════════════════════════════════════════════════ */
@media print {
  .topbar, .navbar, .sticky-cta, .wa-widget,
  .read-progress, .hero-wave { display: none !important; }
  body { background: #fff; color: #000; }
}

