*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:   #ffffff;
  --off:     #f7f7fb;
  --off2:    #f0f0f8;
  --text:    #1a1a2e;
  --muted:   #6b6b8a;
  --light-border: rgba(0,0,0,0.07);
  --blue:    #4455ff;
  --purple:  #cc44ee;
  --grad:    linear-gradient(135deg, #4455ff 0%, #9933dd 50%, #cc44ee 100%);
  --grad2:   linear-gradient(90deg, #4455ff 0%, #cc44ee 100%);
  --radius:  16px;
  --shadow:  0 4px 24px rgba(60,40,120,0.08);
  --shadow-md: 0 8px 40px rgba(60,40,120,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ─── GRAD TEXT ─── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.inline-logo {
  height: 2.7em;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  margin-top: -0.2em;
  filter: drop-shadow(0 2px 4px rgba(100,60,240,0.1));
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  background: var(--grad);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 17px 44px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(100,60,220,0.3);
  transition: transform .2s, box-shadow .2s, opacity .2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(150,60,240,0.4);
  opacity: .92;
}

.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

/* ─── SECTION HELPERS ─── */
.section-white  { background: var(--white);  padding: 90px 24px; }
.section-off    { background: var(--off);    padding: 90px 24px; }
.section-off2   { background: var(--off2);   padding: 90px 24px; }

.section-title {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  text-align: center;
}

.section-sub-text {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 52px;
  max-width: 540px;
  margin-inline: auto;
  text-align: center;
}

/* ══════════════════════════════════
   1. NAVBAR
══════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 60px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-border);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 4px 24px rgba(60,40,120,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover { color: var(--text); }

.btn-nav {
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(100,60,220,0.2);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .3s, opacity .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════
   2. HERO
══════════════════════════════════ */
.hero {
  background: var(--off);
  text-align: center;
  padding: 100px 24px 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(100,60,240,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(100,60,240,0.07);
  border: 1px solid rgba(100,60,240,0.18);
  color: #7744cc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-logo-duo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-main-logo {
  height: 180px;
  width: auto;
}

.hero-plus {
  font-size: 24px;
  font-weight: 300;
  color: var(--muted);
  opacity: 0.5;
}

.hero-claude-logo {
  height: 50px;
  width: auto;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 880px;
  margin-inline: auto;
}

.hero h1 .highlight {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 580px;
  margin-inline: auto;
}

.hero-sub strong { color: var(--text); font-weight: 700; }

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-cta-badge {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
  font-weight: 600;
}

.pains-container {
  max-width: 1000px;
  margin: 0 auto;
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pain-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.pain-text strong {
  color: var(--text);
  font-weight: 700;
}

.pain-card-highlight {
  border: 2px solid var(--purple);
  background: rgba(204, 68, 238, 0.03);
}

/* ─── FAQ ─── */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  transition: transform .2s, border-color .2s;
}

.faq-item:hover {
  transform: translateX(4px);
  border-color: var(--purple);
}

.faq-question {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  display: block;
}

.faq-answer {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── SUCCESS ROADMAP ─── */
.roadmap-container {
  position: relative;
  margin-top: 80px;
  padding: 40px 0 60px 80px;
  border-left: 2px solid var(--light-border);
  border-bottom: 2px solid var(--light-border);
}

/* Arrows */
.roadmap-container::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid var(--muted);
}

.roadmap-container::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--muted);
}

.roadmap-axis-y {
  position: absolute;
  top: 50%;
  left: -60px;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  white-space: nowrap;
}

.roadmap-axis-x {
  position: absolute;
  bottom: -30px;
  right: 0;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.roadmap-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  min-height: 400px;
}

.milestone-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 40px;
}

.milestone-dot {
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 4px solid var(--blue);
  border-radius: 50%;
  z-index: 5;
}

.milestone-info {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  width: 100%;
  text-align: left;
  transition: transform 0.3s, border-color 0.3s;
  margin-bottom: calc(var(--step) * 40px); /* Creates the curve effect */
}

.milestone-card:hover .milestone-info {
  transform: translateY(-5px);
  border-color: var(--purple);
}

.milestone-card.highlight .milestone-info {
  border: 2px solid var(--purple);
  background: rgba(204, 68, 238, 0.02);
}

.milestone-gain {
  display: block;
  font-size: 18px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.milestone-title {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.milestone-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.milestone-day {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 900;
  color: var(--text);
}

@media (max-width: 900px) {
  .roadmap-grid {
    flex-direction: column;
    min-height: auto;
    gap: 40px;
    padding-left: 20px;
  }
  .roadmap-container {
    border-bottom: none;
    padding-bottom: 0;
  }
  .milestone-card {
    flex-direction: row;
    padding-bottom: 0;
    align-items: center;
    width: 100%;
  }
  .milestone-dot {
    left: -29px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .milestone-info {
    margin-bottom: 0 !important;
    margin-left: 20px;
  }
  .milestone-day {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-right: 15px;
    min-width: 40px;
    text-align: right;
  }
  .roadmap-axis-x { display: none; }
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--grad);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(100,60,220,0.3);
  z-index: 999;
  transition: transform .2s, opacity .2s;
  opacity: 0.8;
}

.back-to-top:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.hero-pains li { font-size: 16px; color: var(--muted); text-align: justify; line-height: 1.6; }
.hero-pains li strong { color: var(--text); }

/* ══════════════════════════════════
   3. POURQUOI DIFFÉRENT
══════════════════════════════════ */
/* ══════════════════════════════════
   3. VS TABLE
══════════════════════════════════ */
.vs-container {
  max-width: 1040px;
  margin: 0 auto;
}

.vs-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.vs-column {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform .3s ease;
}

.vs-column:hover {
  transform: translateY(-5px);
}

.vs-bad {
  background: var(--off);
  opacity: 0.9;
}

.vs-good {
  border: 1px solid rgba(100,60,240,0.15);
  background: linear-gradient(to bottom, var(--white), rgba(100,60,240,0.02));
  box-shadow: var(--shadow-md);
}

.vs-header {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-align: center;
}

.vs-bad .vs-header { color: var(--muted); }
.vs-good .vs-header { color: #6633cc; }

.vs-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vs-item strong {
  font-size: 18px;
  color: var(--text);
}

.vs-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  text-align: justify;
}

.vs-good .vs-item strong {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-cta-wrap {
  display: flex;
  justify-content: flex-start;
}

/* ══════════════════════════════════
   3b. POURQUOI CLAUDE ?
══════════════════════════════════ */
.claude-container {
  max-width: 1040px;
  margin: 0 auto;
}

.claude-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.claude-feature {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s ease;
}

.claude-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.claude-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.claude-feature h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.claude-feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  text-align: justify;
}


/* ══════════════════════════════════
   4. MÉTHODE M.A.R.R.E.
══════════════════════════════════ */
.marre-row {
  max-width: 980px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.marre-step {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 28px 12px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

.marre-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad2);
}

.marre-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.marre-letter {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.marre-word { font-size: 11px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; }
.marre-desc { font-size: 12px; color: var(--muted); line-height: 1.5; text-align: justify; }

.program-grid {
  max-width: 820px;
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}

.program-item {
  background: var(--off);
  border: 1px solid var(--light-border);
  border-left: 3px solid #9933dd;
  border-radius: 10px;
  padding: 18px 22px;
}

.program-item h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.program-item p  { font-size: 13px; color: var(--muted); line-height: 1.5; text-align: justify; }

/* ══════════════════════════════════
   5. FORMATEUR
══════════════════════════════════ */
.trainer-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 22px;
  padding: 48px 52px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.trainer-avatar {
  width: 80px; height: 80px;
  background: var(--grad);
  border-radius: 50%;
  margin: 0 auto 18px;
  display: block;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 4px 20px rgba(100,60,220,0.3);
}

.trainer-card h2 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 20px; }

.trainer-bullets { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }

.trainer-bullets li { font-size: 14px; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; }

.trainer-bullets li::before {
  content: '▸';
  font-size: 14px; flex-shrink: 0; margin-top: 2px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trainer-quote {
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  border-left: 3px solid #9933dd;
  padding-left: 16px;
  text-align: justify;
  margin-top: 18px;
  line-height: 1.6;
}

/* ══════════════════════════════════
   6. PAS FAIT POUR TOI
══════════════════════════════════ */
.notfor-grid {
  max-width: 720px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}

.notfor-item {
  background: rgba(220,40,40,0.04);
  border: 1px solid rgba(220,40,40,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--muted);
  display: flex; align-items: flex-start; gap: 8px;
}

.bridge {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(100,60,240,0.05);
  border: 1px solid rgba(100,60,240,0.15);
  border-radius: var(--radius);
  padding: 22px 28px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  text-align: center;
}

.bridge strong { color: #6633cc; }

/* ══════════════════════════════════
   7. RÉSULTATS
══════════════════════════════════ */
.results-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.results-visual {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
}

.results-visual h3 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  text-align: center;
}

.results-stat { display: flex; flex-direction: column; gap: 12px; }

.stat-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  background: var(--off);
  border-radius: 10px;
  padding: 12px 14px;
}

.stat-before { font-size: 11px; color: rgba(0,0,0,0.3); text-decoration: line-through; line-height: 1.4; }

.stat-arrow {
  font-size: 14px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.stat-after { font-size: 12px; font-weight: 700; color: var(--text); text-align: right; line-height: 1.4; }

.results-content h2 { font-size: clamp(20px, 3vw, 26px); font-weight: 800; color: var(--text); margin-bottom: 24px; }

.results-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.results-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--muted); text-align: justify; }
.results-list li strong { color: var(--text); }

.results-list li .bullet {
  width: 32px; height: 32px; min-width: 32px;
  background: var(--grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  color: var(--white);
  box-shadow: 0 2px 12px rgba(100,60,220,0.3);
  flex-shrink: 0;
}

/* ══════════════════════════════════
   8. BONUS
══════════════════════════════════ */
.bonus-grid {
  max-width: 820px;
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bonus-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}

.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.bonus-icon { font-size: 36px; margin-bottom: 12px; }
.bonus-card h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.bonus-card p  { font-size: 13px; color: var(--muted); line-height: 1.5; text-align: justify; }

/* ══════════════════════════════════
   9. CTA FINALE
══════════════════════════════════ */
.section-cta {
  background: var(--off);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(100,60,240,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.section-cta h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.cta-sub-line {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 44px;
}

.choices {
  max-width: 560px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.choice-bad {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 14px;
  color: rgba(0,0,0,0.35);
}

.choice-good {
  background: rgba(100,60,240,0.06);
  border: 1px solid rgba(100,60,240,0.18);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
}

.choice-good strong { color: #6633cc; }

.cta-nudge {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}

.cta-nudge strong { color: var(--text); }

.cta-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-main-btn {
  font-size: 15px;
  padding: 20px 56px;
}

.cta-reassure {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════
   10. FOOTER
══════════════════════════════════ */
footer {
  background: var(--white);
  border-top: 1px solid var(--light-border);
  padding: 48px 24px 30px;
}

.footer-inner { max-width: 800px; margin: 0 auto; }

.footer-legal {
  background: var(--off);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 22px 26px;
  font-size: 11px;
  line-height: 1.75;
  color: rgba(0,0,0,0.3);
  margin-bottom: 32px;
}

.footer-legal strong {
  color: rgba(0,0,0,0.5);
  display: block;
  margin-bottom: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid var(--light-border);
  padding-top: 22px;
}

.footer-logo {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links { display: flex; gap: 22px; list-style: none; font-size: 11px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: 11px; color: rgba(0,0,0,0.2); text-align: center; margin-top: 16px; }

.trainer-social-proof {
  margin: 32px 0;
  background: var(--off);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--light-border);
}

.linkedin-slide {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: block;
  margin-bottom: 16px;
}

.proof-caption {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */

/* Tablet large */
@media (max-width: 1024px) {
  nav { padding: 14px 32px; }
  .results-inner { gap: 32px; }
}

/* Tablet */
@media (max-width: 900px) {
  .marre-row { grid-template-columns: repeat(3, 1fr); }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 20px; }
}

/* Mobile large */
@media (max-width: 768px) {
  nav {
    padding: 14px 20px;
    position: relative;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--light-border);
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(60,40,120,0.1);
  }

  .nav-links.open { display: flex; }

  .nav-links li a {
    display: block;
    padding: 14px 24px;
    font-size: 13px;
  }

  .hero { padding: 64px 20px 56px; }

  .hero-pains { padding: 22px 20px; }

  .section-white, .section-off, .section-off2 { padding: 60px 20px; }
  .section-cta { padding: 70px 20px; }

  .hero-logo-duo { gap: 16px; margin-bottom: 32px; }
  .hero-main-logo { height: 132px; }
  .hero-claude-logo { height: 36px; }
  .hero-plus { font-size: 18px; }

  .hero-pains { padding: 24px 28px; }
  .hero-pains li { font-size: 14px; }

  .vs-table, .claude-grid, .pains-grid { grid-template-columns: 1fr; gap: 24px; }

  .marre-row { grid-template-columns: 1fr 1fr; gap: 10px; }

  .program-grid { grid-template-columns: 1fr; }

  .trainer-card { padding: 32px 22px; }

  .notfor-grid { grid-template-columns: 1fr; }

  .results-inner { grid-template-columns: 1fr; gap: 28px; }

  .stat-row { gap: 6px; }
  .stat-before { font-size: 11px; }
  .stat-after { font-size: 11px; }

  .bonus-grid { grid-template-columns: 1fr; }
  .claude-grid { grid-template-columns: 1fr; }

  .choices { max-width: 100%; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 14px; }
}

/* Mobile small */
@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }

  .marre-row { grid-template-columns: 1fr; }

  .btn { padding: 15px 32px; font-size: 13px; }
  .cta-main-btn { padding: 17px 36px; font-size: 14px; }

  .section-title { font-size: 24px; }

  .stat-row { grid-template-columns: 1fr; gap: 4px; }
  .stat-after { text-align: left; font-size: 13px; font-weight: 800; color: #6633cc; }
  .stat-arrow { display: none; }
  .stat-after::before { content: '→ '; }
}
