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

:root {
  --dark: #111111;
  --dark-2: #1A1A1A;
  --light: #FAFAFA;
  --text: #222222;
  --white: #FFFFFF;
  --accent: #FF6B00;
  --accent-light: rgba(255, 107, 0, 0.12);
  --accent-glow: rgba(255, 107, 0, 0.25);
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --card-border: rgba(255,255,255,0.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================
   TYPOGRAPHY
============================= */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
h4 { font-family: 'Poppins', sans-serif; font-weight: 600; line-height: 1.35; }

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title.text-white { color: var(--white); }
.section-title.align-left { text-align: left; }

.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}

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

/* =============================
   BUTTONS
============================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 13px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-primary:hover {
  background: #e55c00;
  border-color: #e55c00;
  box-shadow: 0 8px 32px rgba(255,107,0,0.4);
  transform: translateY(-2px);
}

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

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

.btn-ghost-sm {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.15);
  font-size: 0.875rem;
  padding: 10px 20px;
}
.btn-ghost-sm:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

.btn-nav {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.875rem;
}
.btn-nav:hover { background: #e55c00; }

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* =============================
   NAV
============================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav.scrolled {
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo .dot { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}
.nav-links a:hover { color: var(--white); }

/* BURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  transition: all 0.3s ease;
}
.nav-toggle:hover {
  background: rgba(255,107,0,0.15);
  border-color: rgba(255,107,0,0.3);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
/* Burger animé en X quand ouvert */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* OVERLAY SOMBRE */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1098;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* MENU MOBILE PANNEAU */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 90vw);
  height: 100vh;
  background: #0F0F0F;
  z-index: 1099;
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid rgba(255,107,0,0.15);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
}

/* HEADER DU MENU MOBILE */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

/* BOUTON FERMER (X) */
.mobile-close {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.mobile-close:hover {
  background: rgba(255,107,0,0.15);
  border-color: rgba(255,107,0,0.4);
}
.mobile-close span {
  display: block;
  width: 16px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  position: absolute;
  transition: background 0.3s ease;
}
.mobile-close span:nth-child(1) { transform: rotate(45deg); }
.mobile-close span:nth-child(2) { transform: rotate(-45deg); }
.mobile-close:hover span { background: var(--accent); }

/* LIENS DU MENU MOBILE */
.mobile-links {
  list-style: none;
  padding: 20px 0;
  flex: 1;
}
.mobile-links li {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.open .mobile-links li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.08s; }
.mobile-menu.open .mobile-links li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.14s; }
.mobile-menu.open .mobile-links li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.20s; }
.mobile-menu.open .mobile-links li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.26s; }

.mobile-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  color: rgba(255,255,255,0.75);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}
.mobile-link:hover {
  color: var(--white);
  background: rgba(255,107,0,0.06);
  border-left-color: var(--accent);
  padding-left: 32px;
}
.mobile-link-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  min-width: 24px;
}

/* CTA DANS LE MENU MOBILE */
.mobile-cta {
  margin: 8px 28px 24px;
  justify-content: center;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.32s, transform 0.4s ease 0.32s;
  flex-shrink: 0;
}
.mobile-menu.open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER DU MENU MOBILE */
.mobile-footer {
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.4s ease 0.38s;
}
.mobile-menu.open .mobile-footer { opacity: 1; }
.mobile-footer p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* =============================
   HERO
============================= */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-bg { position: absolute; inset: 0; }

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: rgba(255,107,0,0.15);
  top: -100px; left: -100px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: rgba(255,107,0,0.08);
  bottom: 0; right: 10%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 40px;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.hero-stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-plus { font-size: 1.5rem; font-weight: 700; color: var(--accent); }

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  margin: 0 24px;
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  animation: bounce 2s infinite;
}
.hero-scroll-hint svg { width: 24px; height: 24px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================
   SECTIONS BASE
============================= */
.section-light { background: var(--light); padding: 96px 0; }
.section-dark { background: var(--dark); padding: 96px 0; }

.section-light .section-eyebrow,
.section-light .section-title,
.section-light .section-sub { text-align: center; }

/* =============================
   SECTION 2 : PROBLÈME
============================= */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.pain-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}
.pain-icon svg { width: 24px; height: 24px; }

.pain-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 700; }
.pain-card p { font-size: 0.9rem; color: var(--gray); }

.pain-conclusion {
  background: linear-gradient(135deg, rgba(255,107,0,0.06), rgba(255,107,0,0.02));
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius);
  padding: 28px 36px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
}
.pain-conclusion strong { color: var(--accent); }

/* =============================
   SECTION 3 : TRANSFORMATION
============================= */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.transform-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
}

.transform-before, .transform-after {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.transform-before { color: rgba(255,255,255,0.4); }
.transform-after { color: var(--accent); }

.transform-arrow {
  display: flex;
  justify-content: center;
  margin: 16px 0;
  color: var(--accent);
}
.transform-arrow svg { width: 32px; height: 32px; }

.transform-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.transform-col p {
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  word-break: break-word;
}
.col-before p { color: rgba(255,255,255,0.4); text-decoration: line-through; }
.col-after p { color: var(--white); }

.benefit-list { display: flex; flex-direction: column; gap: 24px; }

.benefit-item { display: flex; gap: 16px; align-items: flex-start; }

.benefit-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.benefit-icon svg { width: 20px; height: 20px; }

.benefit-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.benefit-item p { color: rgba(255,255,255,0.55); font-size: 0.875rem; }

/* =============================
   SECTION 4 : VIDÉO
============================= */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  position: relative;
  background: var(--dark);
}

.video-placeholder, .video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-thumb { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(17,17,17,0.2), rgba(17,17,17,0.4));
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(255,107,0,0.5);
  transition: all var(--transition);
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 48px rgba(255,107,0,0.6);
}
.play-btn svg { width: 32px; height: 32px; color: var(--white); }
.video-embed iframe { width: 100%; height: 100%; border: none; }
.hidden { display: none !important; }

/* =============================
   SECTION 5 : QUI EST RIKALOS
============================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(255,107,0,0.4);
}
.about-badge-float svg { width: 16px; height: 16px; }

.about-content .section-title { margin-bottom: 20px; }

.about-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-roles { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }

.role-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}
.role-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* =============================
   SECTION 6 : RÉSULTATS
============================= */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.counter-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
}
.counter-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
}

.counter-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}
.counter-icon svg { width: 24px; height: 24px; }

.counter-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.counter-suffix {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-top: 2px;
}

.counter-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

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

.proof-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.proof-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.proof-card:hover img { transform: scale(1.04); }

.proof-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(17,17,17,0.85));
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}

/* =============================
   SECTION 7 : ERREURS
============================= */
.mistakes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mistake-item {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.mistake-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.mistake-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,107,0,0.15);
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px;
}

.mistake-body h4 { font-size: 1rem; margin-bottom: 8px; }
.mistake-body p { font-size: 0.875rem; color: var(--gray); margin-bottom: 16px; }

.progress-bar {
  height: 6px;
  background: var(--gray-light);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #FF8C3A);
  border-radius: 3px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}

.progress-label { font-size: 0.75rem; color: var(--gray); }

/* =============================
   SECTION 8 : EBOOKS
============================= */
.ebook-section { background: var(--light); }

.ebooks-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.ebooks-grid-single {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}

.ebook-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.ebook-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ebook-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

.ebook-badge-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}

.ebook-cover img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.ebook-info { padding: 24px; }

.ebook-info h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.4;
}

.ebook-benefits { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.ebook-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
}
.ebook-benefits li svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.ebook-price { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.price-old { font-size: 0.85rem; color: var(--gray); text-decoration: line-through; }
.price-new { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--accent); }

/* Méthodes de paiement */
.payment-methods { margin-top: 14px; text-align: center; }
.payment-methods p {
  font-size: 0.78rem;
  margin-bottom: 8px;
}
.payment-methods-light p { color: var(--gray); }
.payment-methods-dark p { color: rgba(255,255,255,0.4); }

.payment-logos { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.payment-logo {
  width: 40px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  line-height: 1.1;
  overflow: hidden;
  flex-shrink: 0;
}
.payment-logo img { width: 100%; height: 100%; object-fit: contain; }

.payment-methods-light .payment-logo {
  background: #f2f2f2;
  border: 1px solid #e2e2e2;
  color: var(--text);
}
.payment-methods-dark .payment-logo {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

/* =============================
   SECTION 9 : APPRENDRE
============================= */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.learn-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.learn-item:hover {
  border-color: rgba(255,107,0,0.3);
  background: rgba(255,107,0,0.04);
  transform: translateY(-3px);
}

.learn-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.learn-icon svg { width: 24px; height: 24px; }

.learn-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.learn-item p { color: rgba(255,255,255,0.55); font-size: 0.875rem; }

/* =============================
   SECTION 10 : TÉMOIGNAGES
============================= */
.temoignages-section { background: var(--dark-2); }

/* FIX CAROUSEL — conteneur strict */
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  gap: 24px;
  will-change: transform;
}

/* FIX CARTE — largeur calculée + pas de débordement */
.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  min-width: 0;
  box-sizing: border-box;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
}

.stars { color: var(--accent); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }

/* FIX TEXTE — empêche le débordement horizontal */
.testi-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testi-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  word-break: break-word;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.carousel-btn:hover { background: var(--accent); border-color: var(--accent); }
.carousel-btn svg { width: 20px; height: 20px; }

.carousel-dots { display: flex; gap: 8px; }

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* =============================
   SECTION 11 : FAQ
============================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); color: var(--accent); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* =============================
   SECTION 12 : OFFRE
============================= */
.offer-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 96px 0;
  background: var(--dark);
}

.offer-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.12), transparent 70%);
  pointer-events: none;
}

.urgency-timer {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius);
  padding: 20px 36px;
  margin-bottom: 48px;
  max-width: 100%;
  box-sizing: border-box;
}

.timer-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
}
.timer-label svg { width: 16px; height: 16px; color: var(--accent); }

.timer-display {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.timer-unit {
  text-align: center;
  min-width: 56px;
}
.timer-unit span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px 12px;
}
.timer-unit small {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.timer-sep { font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }

/* FIX OFFRE CARD — une colonne sur mobile */
.offer-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.offer-left {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.offer-left h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 28px; }

.offer-includes { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.offer-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.offer-includes li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; color: var(--accent); }

.guarantee-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 12px;
  padding: 20px;
}
.guarantee-badge svg { width: 28px; height: 28px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.guarantee-badge strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.guarantee-badge p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.offer-right { padding: 48px 36px; display: flex; align-items: center; }
.offer-price-block { width: 100%; text-align: center; }

.offer-was {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
  text-align: center;
}

/* FIX PRIX — taille fluide, pas de débordement */
.offer-price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.offer-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 10px;
}
.offer-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  word-break: keep-all;
}

.offer-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 24px;
}

.offer-cta { font-size: 1rem; letter-spacing: 0.01em; }

.offer-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
}
.offer-secure svg { width: 14px; height: 14px; }

/* =============================
   SECTION 13 : CTA FINAL
============================= */
.section-cta {
  background: var(--dark);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.15), transparent 70%);
  pointer-events: none;
}

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

.cta-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
}

.cta-inner p { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-bottom: 40px; }

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================
   FOOTER
============================= */
.footer {
  background: #0A0A0A;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.35); margin-top: 8px; }

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* =============================
   ANIMATIONS REVEAL
============================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 1024px) {
  .transform-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 360px; margin: 0 auto; }
  .ebooks-grid { grid-template-columns: 1fr; }
  .ebook-featured { order: -1; }
  .mistakes-grid { grid-template-columns: 1fr; }
  .offer-card { grid-template-columns: 1fr; }
  .offer-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .testi-card {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17,17,17,0.98);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.nav-open a { font-size: 1.4rem; color: var(--white); }

  .hero { padding: 100px 0 60px; }
  .hero-stats { gap: 16px; padding: 20px 24px; }
  .stat-divider { display: none; }
  .hero-stat { min-width: 80px; }
  .stat-num { font-size: 1.6rem; }

  .section-light, .section-dark, .section-cta { padding: 64px 0; }

  .transform-content { grid-template-columns: 1fr; gap: 8px; }
  .transform-before { display: none; }
  .transform-arrow { display: none; }
  .col-before { display: none; }

  /* FIX CAROUSEL MOBILE */
  .testi-card {
    flex: 0 0 100%;
    width: 100%;
  }

  .about-badge-float { bottom: -10px; right: -10px; }

  .offer-right { padding: 32px 24px; }
  .offer-left { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-xl { width: 100%; justify-content: center; }
  .btn-full { white-space: normal; text-align: center; }
  .urgency-timer { padding: 16px 20px; }
  .timer-sep { font-size: 1.5rem; }
}

/* =============================
   BOUTON WHATSAPP FLOTTANT
============================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

/* Icône principale */
.whatsapp-icon {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}
.whatsapp-icon svg {
  width: 30px;
  height: 30px;
}

/* Hover sur l'icône */
.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,0.6);
}

/* Bulle tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #fff;
  color: #111;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 10px 16px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

/* Petite flèche à droite du tooltip */
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-right: none;
  border-left-color: #fff;
}

/* Afficher tooltip au hover */
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse animé autour du bouton */
.whatsapp-pulse {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(37,211,102,0.35);
  animation: whatsapp-pulse 2.5s ease-out infinite;
  z-index: 1;
}

@keyframes whatsapp-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.7); opacity: 0;   }
  100% { transform: scale(1.7); opacity: 0;   }
}

/* Masquer le pulse au hover pour plus de clarté */
.whatsapp-float:hover .whatsapp-pulse {
  animation: none;
  opacity: 0;
}

/* Mobile — légèrement plus petit */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-icon {
    width: 52px;
    height: 52px;
  }
  .whatsapp-icon svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-pulse {
    width: 52px;
    height: 52px;
  }
  .whatsapp-tooltip {
    font-size: 0.78rem;
    padding: 8px 13px;
  }
}
