/* ============================================================
   PROGAIN PROTOCOLS — Landing Page
   Palette officielle : Noir #0a0a0a | Jaune #F8E71C | Blanc #FFFFFF
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

:root {
  /* Palette officielle ProGain */
  --yellow:      #F8E71C;
  --yellow-dk:   #d4c318;
  --yellow-glow: rgba(248,231,28,.18);
  --yellow-faint:rgba(248,231,28,.07);

  --black:       #0a0a0a;
  --black2:      #111111;
  --black3:      #161616;
  --black4:      #1e1e1e;
  --black5:      #242424;
  --border:      #2a2a2a;
  --border-lt:   #333333;

  --white:       #ffffff;
  --white90:     rgba(255,255,255,.90);
  --white70:     rgba(255,255,255,.70);
  --white50:     rgba(255,255,255,.50);
  --white30:     rgba(255,255,255,.30);
  --white15:     rgba(255,255,255,.15);
  --white08:     rgba(255,255,255,.08);

  --success:     #22c55e;
  --error:       #ef4444;

  --font-head:   'Montserrat', 'Arial Black', sans-serif;
  --font-body:   'Inter', sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;

  --sh-sm:  0 2px 12px rgba(0,0,0,.4);
  --sh-md:  0 8px 40px rgba(0,0,0,.55);
  --sh-lg:  0 24px 70px rgba(0,0,0,.7);
  --sh-yellow: 0 0 40px rgba(248,231,28,.2);

  --t: .22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== UTILITAIRES ===== */
.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.text-yellow { color: var(--yellow); }

.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--yellow-faint);
  border: 1px solid rgba(248,231,28,.22);
  padding: .38em 1em;
  border-radius: 999px;
}

.section-eyebrow.light {
  color: var(--yellow);
  background: var(--yellow-faint);
  border-color: rgba(248,231,28,.3);
}

.eyebrow-wrap { margin-bottom: 1.1rem; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.section-lead {
  color: var(--white70);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.optional {
  font-size: .78em;
  color: var(--white50);
  font-weight: 400;
}

/* ===== BOUTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8em 1.8em;
  border-radius: var(--r-md);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: 0 4px 24px rgba(248,231,28,.28);
}

.btn-yellow:hover {
  background: #ffe94a;
  box-shadow: 0 8px 36px rgba(248,231,28,.42);
  transform: translateY(-2px);
}

.btn-yellow:active { transform: translateY(0); }

.btn-outline-yellow {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

.btn-outline-yellow:hover {
  background: var(--yellow-faint);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white30);
}

.btn-outline-white:hover {
  background: var(--white08);
  border-color: var(--white50);
  transform: translateY(-2px);
}

.btn-large  { font-size: 1.05rem; padding: 1em 2.4em; }
.btn-sm     { font-size: .82rem;  padding: .55em 1.2em; }
.btn-block  { width: 100%; }

.btn-header { font-size: .84rem; padding: .6em 1.3em; }

.btn-cta-main {
  width: 100%;
  padding: 1em;
  font-size: 1rem;
  border-radius: var(--r-md);
  margin-top: .4rem;
}

.btn-download { width: 100%; margin-bottom: 1.2rem; font-size: 1rem; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,10,10,.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}

.header-inner {
  width: min(1160px, 92%);
  margin-inline: auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Fallback logo */
.logo-fallback { display: flex; align-items: center; gap: .5rem; }
.lf-icon {
  width: 36px; height: 36px;
  background: var(--yellow);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 1rem; font-weight: 900;
}
.lf-text { display: flex; flex-direction: column; line-height: 1; }
.lf-main { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; color: var(--white); }
.lf-sub  { font-size: .6rem; font-weight: 700; letter-spacing: .18em; color: var(--yellow); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--black2);
  overflow: hidden;
  padding: 80px 0 60px;
}

/* Pattern de fond subtil */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 90% 70% at 80% 20%, rgba(248,231,28,.055) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(248,231,28,.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--black), transparent);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  width: min(1160px, 92%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
}

/* — Hero gauche — */
.hero-left { display: flex; flex-direction: column; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--yellow-faint);
  border: 1px solid rgba(248,231,28,.22);
  padding: .4em 1em;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  animation: blink 1.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--white70);
  margin-bottom: 1.8rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero-subtitle strong { color: var(--white90); }

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.2rem;
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--white70);
  line-height: 1.5;
}

.bullet-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .12em;
}

.bullet-check i {
  font-size: .62rem;
  color: var(--black);
  font-weight: 900;
}

/* Form hero */
.hero-form-wrap {
  background: var(--black3);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-bottom: 1.8rem;
}

/* Social proof hero */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.sp-avatars { display: flex; }

.sp-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--black2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  color: var(--white);
  margin-left: -8px;
}

.sp-avatar:first-child { margin-left: 0; }

.hero-social-proof p {
  font-size: .85rem;
  color: var(--white50);
}

.hero-social-proof strong { color: var(--white80, var(--white70)); }

/* — Hero droit — */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.guide-mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.guide-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(248,231,28,.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.guide-mockup-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg), var(--sh-yellow);
  transition: transform .4s ease;
}

.guide-mockup-img:hover { transform: translateY(-6px) rotate(.5deg); }

/* Fallback ebook visuel */
.guide-fallback {
  width: 100%;
  padding-bottom: 135%;
  position: relative;
  border-radius: var(--r-md);
  background: var(--black4);
  border: 2px solid rgba(248,231,28,.3);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.gf-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  background: linear-gradient(145deg, var(--black3), var(--black5));
}

.gf-badge {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--yellow);
  border: 1px solid rgba(248,231,28,.3);
  padding: .3em .8em;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.gf-inner h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.1;
}

.gf-inner p {
  font-size: .82rem;
  color: var(--white70);
  margin-bottom: 2rem;
}

.gf-brand {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--yellow);
}

.guide-float-badge {
  position: absolute;
  top: 16px;
  right: -16px;
  z-index: 2;
  background: var(--black2);
  border: 2px solid var(--yellow);
  border-radius: 999px;
  padding: .7rem 1.1rem;
  text-align: center;
  box-shadow: var(--sh-yellow);
}

.gfb-value {
  display: block;
  font-size: .78rem;
  color: var(--white50);
  text-decoration: line-through;
  line-height: 1.2;
}

.gfb-free {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.hero-calendly-btn { width: 100%; max-width: 360px; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--black3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}

.stats-inner {
  width: min(1160px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem 2.5rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  display: inline;
}

.stat-sfx {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--yellow);
}

.stat-txt {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat-lbl {
  font-size: .72rem;
  color: var(--white50);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .3rem;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border-lt);
  flex-shrink: 0;
}

/* ===== PROBLEM ===== */
.section-problem {
  padding: 7rem 0;
  background: var(--black);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.problem-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-lt);
  box-shadow: var(--sh-md);
}

.problem-card:hover::after { transform: scaleX(1); }

.pc-icon {
  width: 48px; height: 48px;
  background: var(--yellow-faint);
  border: 1px solid rgba(248,231,28,.18);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--yellow);
  margin-bottom: 1.1rem;
}

.problem-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .7rem;
  line-height: 1.35;
}

.problem-card p {
  font-size: .88rem;
  color: var(--white50);
  line-height: 1.65;
}

.problem-bridge {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(248,231,28,.06), rgba(248,231,28,.02));
  border: 1px solid rgba(248,231,28,.2);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}

.pb-icon {
  width: 52px; height: 52px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--black);
  flex-shrink: 0;
}

.pb-text {
  flex: 1;
  font-size: 1rem;
  color: var(--white70);
  min-width: 200px;
}

.pb-text strong { color: var(--white); }

/* ===== GUIDE SECTION ===== */
.section-guide {
  padding: 7rem 0;
  background: var(--black2);
  border-top: 1px solid var(--border);
}

.guide-content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  align-items: start;
}

.guide-chapters { display: flex; flex-direction: column; }

.gc-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--t);
}

.gc-item:last-child { border-bottom: none; }
.gc-item:hover { transform: translateX(6px); }

.gc-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(248,231,28,.18);
  line-height: 1;
  flex-shrink: 0;
  min-width: 64px;
  transition: color var(--t);
}

.gc-item:hover .gc-num { color: rgba(248,231,28,.4); }

.gc-body h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .45rem;
}

.gc-body p {
  font-size: .88rem;
  color: var(--white50);
  line-height: 1.65;
}

/* Guide visual col */
.guide-visual-col {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.guide-book-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-lg), var(--sh-yellow);
}

.guide-book-img {
  width: 100%;
  display: block;
  border-radius: var(--r-md);
}

.guide-book-shine {
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(105deg, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}

.guide-book-fallback {
  aspect-ratio: 3/4;
  background: var(--black4);
  border-radius: var(--r-md);
  border: 2px solid rgba(248,231,28,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow);
  text-align: center;
  padding: 2rem;
}

.guide-cta-box {
  background: var(--black3);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-md);
  padding: 1.5rem;
}

.gcb-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.gcb-strike {
  font-size: .82rem;
  color: var(--white30);
  text-decoration: line-through;
}

.gcb-free-tag {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--yellow);
  background: var(--yellow-faint);
  border: 1px solid rgba(248,231,28,.25);
  padding: .2em .7em;
  border-radius: var(--r-sm);
}

/* ===== COACHES ===== */
.section-coaches {
  padding: 7rem 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.coach-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px 1fr;
  transition: all var(--t);
}

.coach-card:hover {
  border-color: rgba(248,231,28,.28);
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.coach-photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--black4);
}

.coach-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform .4s ease;
}

.coach-photo-max {
  object-position: center 5%;
}

.coach-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: var(--black4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white15);
}

.coach-role-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25em .8em;
  border-radius: 999px;
  white-space: nowrap;
}

.coach-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coach-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: .2rem;
}

.coach-title {
  font-size: .8rem;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: .05em;
  margin-bottom: .9rem;
}

.coach-bio {
  font-size: .87rem;
  color: var(--white50);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.coach-quote {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.coach-quote .fa-quote-left {
  color: var(--yellow);
  font-size: .9rem;
  margin-top: .2rem;
  flex-shrink: 0;
}

.coach-quote span {
  font-size: .88rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
}

.coaches-cta {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(248,231,28,.05), transparent);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.coaches-cta p {
  font-size: 1.05rem;
  color: var(--white70);
  margin-bottom: 1.3rem;
}

.coaches-cta .btn {
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  text-align: center;
}

/* ===== TESTIMONIALS ===== */
.section-social {
  padding: 7rem 0;
  background: var(--black2);
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}

.testi-card {
  background: var(--black4);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--t);
  position: relative;
}

.testi-card:hover {
  border-color: rgba(248,231,28,.18);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.testi-featured {
  background: linear-gradient(145deg, rgba(248,231,28,.06), var(--black4));
  border-color: rgba(248,231,28,.25);
}

.testi-stars {
  color: var(--yellow);
  font-size: .88rem;
  letter-spacing: .1em;
  margin-bottom: 1.1rem;
}

.testi-card blockquote {
  font-size: .93rem;
  color: var(--white70);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding-left: 1.2rem;
}

.testi-card blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--yellow);
  border-radius: 99px;
  opacity: .5;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: .9rem;
  color: var(--white);
  font-weight: 700;
}

.testi-author span {
  display: block;
  font-size: .74rem;
  color: var(--white50);
}

/* ===== FORM FINAL ===== */
.section-form-final {
  padding: 7rem 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.section-form-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(248,231,28,.04), transparent 60%);
  pointer-events: none;
}

.form-final-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ffl-left { display: flex; flex-direction: column; }

.ffl-text {
  font-size: 1rem;
  color: var(--white70);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.ffl-text strong { color: var(--yellow); }

.ffl-benefits {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2.5rem;
}

.ffl-benefits li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .92rem;
  color: var(--white70);
}

.ffl-benefits li i {
  color: var(--yellow);
  font-size: .8rem;
  flex-shrink: 0;
}

.ffl-logo { margin-top: auto; }

.ffl-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: .7;
}

/* Form Box */
.form-box {
  background: var(--black3);
  border: 1px solid rgba(248,231,28,.2);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--sh-lg), 0 0 60px rgba(248,231,28,.06);
}

.form-box-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.fbh-thumb {
  width: 52px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 1px solid rgba(248,231,28,.25);
  flex-shrink: 0;
}

.fbh-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .2rem;
}

.fbh-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

/* ===== LEAD FORM (commun hero + bas) ===== */
.lead-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lead-form .form-group {
  margin-bottom: 1.1rem;
}

.lead-form .form-group-select { /* full width */ }

.lead-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--white70);
  margin-bottom: .45rem;
}

.lead-form input,
.lead-form select {
  width: 100%;
  padding: .82em 1rem;
  background: var(--black5);
  border: 1.5px solid var(--border-lt);
  border-radius: var(--r-md);
  color: var(--white);
  font-size: .93rem;
  font-family: var(--font-body);
  transition: all var(--t);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.lead-form input::placeholder { color: var(--white30); }

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--yellow);
  background: rgba(248,231,28,.04);
  box-shadow: 0 0 0 3px rgba(248,231,28,.1);
}

.lead-form input.is-error,
.lead-form select.is-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.field-error {
  display: block;
  font-size: .76rem;
  color: var(--error);
  margin-top: .3rem;
  min-height: 1em;
}

.form-privacy {
  font-size: .72rem;
  color: var(--white30);
  text-align: center;
  margin-top: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

/* Success state */
.success-state { text-align: center; padding: .5rem 0; }

.success-icon-wrap {
  font-size: 3.5rem;
  color: var(--success);
  margin-bottom: .9rem;
  animation: pop .5s cubic-bezier(.17,.89,.32,1.28);
}

@keyframes pop {
  0%   { transform: scale(0); opacity: 0; }
  80%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}

.success-state h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: .6rem;
}

.success-state p {
  font-size: .9rem;
  color: var(--white50);
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.success-spam-warning {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: rgba(248,231,28,.08);
  border: 1px solid rgba(248,231,28,.25);
  border-radius: 10px;
  padding: .9rem 1.1rem;
  margin: 1rem 0 1.2rem;
  text-align: left;
}

.success-spam-warning .fa-exclamation-triangle {
  color: var(--yellow);
  font-size: .95rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

.success-spam-warning span {
  font-size: .84rem;
  color: var(--white50);
  line-height: 1.55;
}

.success-spam-warning strong {
  color: var(--yellow);
}

.success-upsell {
  border-top: 1px solid var(--border);
  padding-top: 1.4rem;
  margin-top: .4rem;
}

.success-upsell p {
  font-size: .85rem;
  color: var(--white50);
  margin-bottom: .8rem;
}

/* ===== CALENDLY ===== */
.section-calendly {
  padding: 7rem 0;
  background: var(--black2);
  border-top: 1px solid var(--border);
}

.calendly-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: center;
}

.cal-text {
  font-size: 1rem;
  color: var(--white70);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.cal-text strong { color: var(--white); }

.cal-bullets {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}

.cal-bullets li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .93rem;
  color: var(--white70);
}

.cal-bullets li i { color: var(--yellow); font-size: .85rem; }

.cal-scarcity {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--white30);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.cal-scarcity i { color: var(--yellow); }

/* Cal Card */
.cal-card {
  background: var(--black3);
  border: 1px solid rgba(248,231,28,.2);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--sh-md);
}

.ccv-logo { margin-bottom: 1.5rem; }

.ccv-logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.ccv-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: .2rem;
}

.ccv-subtitle {
  font-size: .82rem;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.ccv-details { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }

.ccv-detail {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .87rem;
  color: var(--white50);
}

.ccv-detail i { color: var(--yellow); width: 14px; flex-shrink: 0; }

.ccv-coaches {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--black4);
  border-radius: var(--r-md);
}

.ccv-coach {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  flex: 1;
}

.ccv-coach-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid rgba(248,231,28,.3);
}

.ccv-coach-init {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black5);
  border: 2px solid rgba(248,231,28,.2);
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--yellow);
}

.ccv-coach span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--white70);
}

/* ===== FAQ ===== */
.section-faq {
  padding: 7rem 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 720px;
  margin-top: 2rem;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  gap: 1rem;
  transition: color var(--t);
}

.faq-q:hover { color: var(--yellow); }

.faq-icon {
  flex-shrink: 0;
  color: var(--yellow);
  transition: transform .3s ease;
  font-size: .85rem;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.open .faq-a { max-height: 200px; }

.faq-a p {
  padding-bottom: 1.4rem;
  font-size: .9rem;
  color: var(--white50);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.section-final-cta {
  padding: 8rem 0;
  background: linear-gradient(145deg, rgba(248,231,28,.04) 0%, var(--black2) 50%, var(--black) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(248,231,28,.06), transparent 65%);
  pointer-events: none;
}

.final-cta-inner { position: relative; z-index: 1; }

.final-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 1rem;
}

.final-sub {
  font-size: 1.05rem;
  color: var(--white50);
  margin-bottom: 2.5rem;
}

.final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black2);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: .8rem;
}

.footer-tagline,
.footer-tagline-fallback + .footer-tagline {
  font-size: .88rem;
  color: var(--white50);
}

.footer-nav h4,
.footer-contact h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.2rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: .55rem; }

.footer-nav ul a {
  font-size: .87rem;
  color: var(--white50);
  transition: color var(--t);
}

.footer-nav ul a:hover { color: var(--yellow); }

.footer-btn { margin-bottom: 1.2rem; }

.social-row {
  display: flex;
  gap: .6rem;
}

.social-link {
  width: 36px; height: 36px;
  background: var(--black4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white50);
  font-size: .9rem;
  transition: all var(--t);
}

.social-link:hover {
  background: var(--yellow-faint);
  border-color: rgba(248,231,28,.35);
  color: var(--yellow);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom p { font-size: .76rem; color: var(--white30); }
.footer-legal { font-style: italic; }

/* ===== SCROLL REVEAL ===== */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1020px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-right {
    order: -1;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .guide-mockup-wrap {
    max-width: 260px;
  }

  .hero-calendly-btn { max-width: 260px; }

  .form-final-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .guide-content-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .guide-visual-col {
    position: static;
    max-width: 300px;
    margin-inline: auto;
  }

  .calendly-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

@media (max-width: 720px) {
  .hero { padding: 60px 0 50px; }
  .hero-title { font-size: 2.4rem; }

  .header-inner { height: 60px; }
  .btn-header { font-size: .76rem; padding: .52em 1em; }
  .logo-img { height: 36px; }

  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-sep { display: none; }
  .stat-item { padding: .8rem 1rem; }

  .problem-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .coaches-grid { grid-template-columns: 1fr; }

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

  .problem-bridge {
    flex-direction: column;
    text-align: center;
  }

  .final-cta-btns { flex-direction: column; align-items: center; }

  .coach-card {
    grid-template-columns: 1fr;
  }
  .coach-photo {
    max-height: 320px;
    object-position: center 15%;
  }
  .coach-photo-frame { min-height: 300px; }
}

@media (max-width: 480px) {
  .hero-form-wrap { padding: 1.4rem; }
  .form-box { padding: 1.6rem 1.2rem; }
  .section-title { font-size: 1.8rem; }
}
