/* ======================================
DEVCHAMPION — FICHIER CSS FINAL OPTIMISÉ
Compatible avec le HTML fourni
Mise à jour : Corrections visibilité boutons et titres
====================================== */

/* ======================================
VARIABLES CSS
====================================== */
:root {
  --bg: #0a0e1a;
  --card: #141824;
  --card-hover: #1a1f33;
  --muted: #8fa0c1;
  --text: #e8eeff;
  --accent: #22c55e;
  --accent-2: #60a5fa;
  --accent-magenta: #d946ef;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --border: rgba(255, 255, 255, 0.08);
  --glow: rgba(34, 197, 94, 0.2);
  --whatsapp-glow: rgba(37, 211, 102, 0.3);
}

/* ======================================
BASE & RESET
====================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  background-image: 
    radial-gradient(circle at 20% 10%, rgba(217, 70, 239, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(96, 165, 250, 0.06) 0%, transparent 60%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 100px;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ======================================
HEADER & NAVBAR FIXE
====================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 22px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.3));
  transition: filter 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.6));
  animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* NAVIGATION LINKS */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
}

.nav-links > a {
  color: var(--muted);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 12px;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links > a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.nav-links > a:hover::after {
  width: 80%;
}

/* BOUTON CTA NAVBAR */
.nav-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-cta .btn.primary {
  background: linear-gradient(135deg, #22c55e 0%, #60a5fa 100%);
  color: #08121f;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.nav-cta .btn.primary:hover {
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.1);
}

/* MENU HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ======================================
BOUTON RETOUR À L'ACCUEIL
====================================== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid var(--accent);
  border-radius: 12px;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  z-index: 50;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.back-link:hover {
  background: var(--accent);
  color: #08121f;
  transform: translateX(-5px);
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
}

.back-link svg,
.back-link i {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.back-link:hover svg,
.back-link:hover i {
  transform: translateX(-3px);
}

/* Container pour le bouton retour */
.back-link-container {
  padding-top: 10px;
  position: relative;
  z-index: 50;
}

/* ======================================
BUTTONS
====================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: #2a355a;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #08121f;
  border: none;
  box-shadow: 0 4px 20px var(--glow);
}

.btn.primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 28px var(--glow);
  transform: translateY(-3px) scale(1.02);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
}

/* ======================================
WHATSAPP BUTTONS
====================================== */
.whatsapp-btn {
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 4px 20px var(--whatsapp-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.whatsapp-btn:hover {
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5) !important;
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.1);
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ======================================
HERO SECTION
====================================== */
.hero {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(30px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* ======================================
TITRES H1 - SANS COUPURE DE MOTS
====================================== */
h1 {
  font-size: clamp(24px, 5vw, 48px);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 100%;
  /* EMPÊCHER LA COUPURE DES MOTS */
  word-break: normal;
  word-wrap: normal;
  overflow-wrap: normal;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  -moz-hyphens: none;
  white-space: normal;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.lead {
  color: #c9d6ff;
  font-size: 18px;
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 0 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
}

.badge {
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: #b8c5e8;
  font-weight: 500;
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ======================================
PLAYER WRAPPER & TRAILER/BONUS CARDS
====================================== */
.player-wrapper {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

.trailer-card,
.bonus-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  cursor: pointer;
}

.trailer-card:hover,
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border-color: var(--accent);
}

/* Video/Image Thumbnail Wrapper */
.episode-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--card);
}

.episode-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.episode-card:hover .episode-thumb {
  transform: scale(1.05);
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--card);
  outline: none;
  border-radius: 0;
}

video:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* Play Overlay */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #08121f;
  opacity: 0.9;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
  z-index: 2;
  pointer-events: none;
}

.play-overlay::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: ripple 1.5s ease-out infinite;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.trailer-card:hover .play-overlay,
.bonus-card:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.15);
}

/* Video Controls */
.video-controls {
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0 0 16px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.trailer-card:hover .video-controls,
.bonus-card:hover .video-controls {
  opacity: 1;
  visibility: visible;
}

.progress-container {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.progress-bar {
  width: 100%;
  height: 100%;
}

.progress {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.1s linear;
  width: 0;
}

.time-display {
  font-size: 12px;
  color: #c9d6ff;
  white-space: nowrap;
  font-family: monospace;
}

/* Episode Content Area */
.trailer-card .episode-content,
.bonus-card .episode-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

/* Episode Number Badge - Trailer */
.trailer-card .episode-number {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #08121f;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  margin-bottom: 4px;
}

.trailer-card h3,
.bonus-card h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.trailer-card p,
.bonus-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* ======================================
TRUST BAR
====================================== */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-item {
  transition: transform 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-item h3 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 8px;
}

.trust-item p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

/* ======================================
SECTIONS GÉNÉRALES
====================================== */
section {
  padding: 80px 0;
}

section.alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2 {
  font-size: clamp(24px, 4vw, 42px);
  margin: 0 0 16px;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto 48px;
  color: var(--muted);
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.7;
}

/* ======================================
BÉNÉFICES
====================================== */
.benefits-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transition: 0.4s ease;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.15);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover::after {
  opacity: 1;
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) rotate(10deg);
}

.benefit-card h3 {
  font-size: 18px;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--text);
}

.benefit-card p {
  color: #b7c6ea;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ======================================
COMMENT ÇA MARCHE
====================================== */
.steps-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  background: rgba(34, 197, 94, 0.03);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #08121f;
  font-weight: 900;
  font-size: 24px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.step-card h3 {
  font-size: 18px;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--text);
}

.step-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* ======================================
PAIEMENT SÉCURISÉ
====================================== */
.payment-section {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(18, 140, 126, 0.08) 100%);
  border-top: 1px solid rgba(37, 211, 102, 0.3);
  border-bottom: 1px solid rgba(37, 211, 102, 0.3);
  padding: 80px 0;
}

.payment-section h2 {
  background: linear-gradient(135deg, #fff 0%, var(--whatsapp) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 500px;
  margin: 40px auto;
}

.payment-option {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(37, 211, 102, 0.3);
  text-align: center;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
}

.payment-option:hover {
  background: rgba(37, 211, 102, 0.15);
  border-color: var(--whatsapp);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.payment-process {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(37, 211, 102, 0.2);
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.payment-process h3 {
  font-size: 1.5em;
  margin-bottom: 24px;
  text-align: center;
  color: var(--text);
  font-weight: 700;
}

.payment-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  counter-reset: payment-step;
}

.payment-steps li {
  position: relative;
  padding: 16px 20px 16px 60px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1em;
  line-height: 1.6;
  transition: all 0.3s ease;
  counter-increment: payment-step;
}

.payment-steps li::before {
  content: counter(payment-step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.payment-steps li:hover {
  background: rgba(37, 211, 102, 0.05);
  border-color: rgba(37, 211, 102, 0.3);
  transform: translateX(5px);
}

/* ✅ Style spécifique pour le 4ème point du récapitulatif des étapes */
.payment-steps li:nth-child(4) {
  background: linear-gradient(135deg, #0a2e1a, #0d3c22);
  border: 1px solid #008040;
  color: #ffffff;
}

.payment-steps li:nth-child(4)::before {
  background: linear-gradient(135deg, #008040, #006633);
  color: white;
}

.payment-cta {
  text-align: center;
  margin-bottom: 20px;
}

.payment-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* ======================================
ÉPISODES
====================================== */
.episodes-section {
  background: rgba(10, 14, 26, 0.6);
}

.episodes-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
}

.episode-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.episode-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(96, 165, 250, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.episode-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.3);
}

.episode-card:hover::before {
  opacity: 1;
}

.episode-card .episode-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.episode-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.episode-card .episode-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #08121f;
  font-weight: 900;
  font-size: 14px;
  border-radius: 10px;
  margin: 0;
  padding: 0;
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
  flex-shrink: 0;
}

.episode-card h3 {
  font-size: 17px;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.episode-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.episode-price {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--whatsapp);
  margin-top: 8px;
}

.episode-actions {
  margin-top: auto;
  padding-top: 12px;
}

.episode-order-btn {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.episode-order-btn .whatsapp-icon {
  width: 18px;
  height: 18px;
}

/* ======================================
BONUS SECTION
====================================== */
.bonus-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bonus-intro {
  text-align: center;
  max-width: 70ch;
  margin: 0 auto 48px;
  color: var(--muted);
  font-size: clamp(14px, 3vw, 18px);
}

.bonus-card-wrapper {
  max-width: 450px;
  margin: 0 auto;
}

.bonus-card {
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.08), rgba(34, 197, 94, 0.08));
  border: 2px solid var(--accent);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.25);
}

.bonus-card .episode-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-magenta), var(--accent));
  color: white;
  font-weight: 700;
  font-size: 13px;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
  margin-bottom: 4px;
}

.bonus-card:hover h3 {
  color: var(--accent);
}

/* ======================================
TARIFS
====================================== */
#tarifs {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(34, 197, 94, 0.1), transparent 30%);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.price-card:hover::before {
  opacity: 1;
}

.price-card.featured {
  border-color: var(--accent);
  background: rgba(34, 197, 94, 0.05);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
  transform: scale(1.02);
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.25);
}

.price-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: 0 25px 60px rgba(34, 197, 94, 0.35);
}

.price-card h3 {
  font-size: 20px;
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--text);
}

.price {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 900;
  margin: 16px 0 8px;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
  display: block;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  flex: 1;
}

.features-list li {
  padding: 10px 0;
  color: #b8c5e8;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.features-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}

.badge-popular {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 0 0 12px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  z-index: 2;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.savings-badge {
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  margin: 16px 0;
  font-size: 14px;
  animation: savingsBlink 1.5s ease-in-out infinite;
}

@keyframes savingsBlink {
  0%, 100% { box-shadow: 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.6); }
}

.price-note {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
}

/* ======================================
FAQ
====================================== */
#faq {
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-list {
  display: grid;
  gap: 16px;
}

details {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
}

details:hover {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

details[open] {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}

summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
}

summary::-webkit-details-marker {
  display: none;
}

summary:hover {
  color: var(--accent);
}

summary::after {
  content: '+';
  font-size: 24px;
  transition: transform 0.3s ease;
  color: var(--accent);
  flex-shrink: 0;
}

details[open] summary::after {
  content: '−';
}

details p {
  margin: 16px 0 0;
  color: #b8c5e8;
  line-height: 1.7;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ======================================
CTA FINAL
====================================== */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(96, 165, 250, 0.08) 100%);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.cta-section h2 {
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: var(--muted);
  font-size: 18px;
  max-width: 60ch;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ======================================
FOOTER
====================================== */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
}

.footer-content {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
  grid-template-columns: 2fr 1fr 1fr;
}

.footer-about {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 400px;
}

.footer-section h4 {
  font-size: 16px;
  margin: 0 0 20px;
  font-weight: 700;
  color: var(--text);
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ======================================
BOUTON WHATSAPP FLOTTANT - AMÉLIORÉ
====================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 30px rgba(37, 211, 102, 0.5),
    0 0 0 4px rgba(37, 211, 102, 0.2);
  cursor: pointer;
  z-index: 99999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: floatButton 3s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: whatsappPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.floating-whatsapp:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 
    0 15px 50px rgba(37, 211, 102, 0.7),
    0 0 0 6px rgba(37, 211, 102, 0.3);
  animation: none;
}

.floating-whatsapp svg {
  width: 35px;
  height: 35px;
  fill: white;
}

@keyframes floatButton {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Tooltip au survol */
.floating-whatsapp::after {
  content: 'Nous contacter';
  position: absolute;
  right: 85px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-whatsapp:hover::after {
  opacity: 1;
  visibility: visible;
  right: 90px;
}

/* ======================================
MEDIA QUERIES — MOBILE (moins de 767px)
====================================== */
@media (max-width: 767px) {
  body {
    padding-top: 90px;
  }

  .nav {
    padding: 10px 0;
  }

  .logo img {
    width: 60px;
    height: 60px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: calc(100vw - 40px);
    max-width: 300px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    margin: 0;
    gap: 0;
  }

  .nav-links.active {
    right: 20px;
  }

  .nav-links > a {
    width: 100%;
    padding: 16px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    display: block;
  }

  .nav-links > a:last-of-type {
    border-bottom: none;
  }

  .nav-cta {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    gap: 12px;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* H1 Mobile - Pas de coupure */
  h1 {
    font-size: 26px;
    line-height: 1.25;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    -webkit-hyphens: none;
  }

  /* Hero */
  .hero {
    padding: 40px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-badges {
    gap: 8px;
  }

  .badge {
    font-size: 12px;
    padding: 8px 12px;
  }

  /* Bouton retour mobile */
  .back-link {
    padding: 12px 18px;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px;
    width: auto;
    max-width: 100%;
  }

  .back-link-container {
    padding: 10px 0;
  }

  /* Trust Bar */
  .trust-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Grids */
  .benefits-grid,
  .episodes-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Payment */
  .payment-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .payment-process {
    padding: 24px 16px !important;
  }

  .payment-process .payment-cta {
    margin: 16px 0;
  }

  .payment-process .btn.whatsapp-btn {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .payment-process .btn.whatsapp-btn .whatsapp-icon {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
  }

  .payment-process .btn.whatsapp-btn span {
    display: block;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.4;
  }

  /* Sections */
  section {
    padding: 60px 0;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 32px;
  }

  /* CTA */
  .cta-section {
    padding: 60px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* WhatsApp flottant mobile */
  .floating-whatsapp {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    box-shadow: 
      0 6px 25px rgba(37, 211, 102, 0.5),
      0 0 0 3px rgba(37, 211, 102, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  /* Masquer le tooltip sur mobile */
  .floating-whatsapp::after {
    display: none;
  }

  /* Pricing featured */
  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-8px);
  }

  /* Confirmation Page - Titre sans coupure */
  .confirmation-header h1 {
    font-size: 22px;
    line-height: 1.3;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  /* Formulaire confirmation - Responsive */
  .confirmation-form {
    padding: 24px 20px;
  }

  .phone-input-group {
    flex-direction: column;
  }

  .phone-input-group select {
    width: 100%;
  }

  .payment-code {
    font-size: 18px;
  }

  .confirmation-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  /* Étapes récapitulatives */
  .step-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .step-item .step-content {
    width: 100%;
  }

  .step-item .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  /* Confirmation Steps */
  .confirmation-steps {
    padding: 20px;
  }

  .steps-list {
    gap: 12px;
  }

  /* Bouton soumission */
  .form-submit {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 10px;
  }

  /* Note de sécurité */
  .form-note {
    padding: 12px;
    font-size: 13px;
  }

  /* Header confirmation */
  .back-link {
    padding: 10px 14px;
    font-size: 14px;
  }

  /* Section paiement */
  .payment-code-container {
    padding: 16px;
  }

  .payment-code-boxes {
    flex-direction: column;
    gap: 12px;
  }

  .payment-code-item {
    min-width: 100%;
  }

  .payment-code {
    font-size: 16px;
  }

  .payment-code-copy {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* ======================================
MEDIA QUERIES — PETIT MOBILE (moins de 375px)
====================================== */
@media (max-width: 375px) {
  body {
    padding-top: 85px;
  }

  h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .back-link {
    padding: 10px 14px;
    font-size: 13px;
    gap: 8px;
  }

  .floating-whatsapp {
    width: 55px;
    height: 55px;
    bottom: 15px;
    right: 15px;
  }

  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  .container {
    padding: 0 15px;
  }

  .kicker {
    font-size: 11px;
    padding: 6px 10px;
  }

  .lead {
    font-size: 14px;
  }

  .badge {
    font-size: 11px;
    padding: 6px 10px;
  }

  .trust-item h3 {
    font-size: 20px;
  }

  .trust-item p {
    font-size: 12px;
  }

  .benefit-card,
  .step-card,
  .episode-card {
    padding: 20px 16px;
  }

  .price-card {
    padding: 24px 20px;
  }

  .price {
    font-size: 28px;
  }

  details {
    padding: 16px 18px;
  }

  summary {
    font-size: 14px;
  }
}

/* ======================================
MEDIA QUERIES — TABLETTE (768px - 1023px)
====================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  body {
    padding-top: 95px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 90px;
    right: -320px;
    width: 300px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    margin: 0;
    gap: 0;
  }

  .nav-links.active {
    right: 20px;
  }

  .nav-links > a {
    width: 100%;
    padding: 16px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }

  .nav-cta {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* H1 Tablette */
  h1 {
    font-size: 36px;
    line-height: 1.2;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Bouton retour tablette */
  .back-link {
    padding: 14px 22px;
    font-size: 15px;
  }

  /* Grids */
  .benefits-grid,
  .episodes-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  /* WhatsApp flottant tablette */
  .floating-whatsapp {
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
  }

  .floating-whatsapp svg {
    width: 32px;
    height: 32px;
  }

  /* Tooltip visible sur tablette */
  .floating-whatsapp::after {
    display: block;
  }

  /* Confirmation Page */
  .confirmation-header h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .confirmation-form {
    padding: 28px;
  }

  .payment-code-container {
    padding: 16px;
  }

  .payment-code-boxes {
    gap: 16px;
  }

  .payment-code {
    font-size: 18px;
  }

  .form-submit {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* ======================================
MEDIA QUERIES — DESKTOP (1024px et plus)
====================================== */
@media (min-width: 1024px) {
  .container {
    max-width: 1100px;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
  }

  /* H1 Desktop */
  h1 {
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.15;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .nav-links {
    position: static;
    width: auto;
    max-height: none;
    overflow-y: visible;
    flex-direction: row;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    z-index: auto;
    margin-left: auto;
    margin-right: 20px;
    gap: 20px;
  }

  .nav-links > a {
    width: auto;
    padding: 8px 12px;
    border-bottom: none;
    font-size: 14px;
  }

  .nav-cta {
    flex-direction: row;
    width: auto;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .nav-cta .btn {
    width: auto;
  }

  .menu-toggle {
    display: none;
  }

  /* Bouton retour desktop */
  .back-link {
    padding: 14px 28px;
    font-size: 16px;
  }

  /* WhatsApp flottant desktop */
  .floating-whatsapp {
    width: 70px;
    height: 70px;
    bottom: 35px;
    right: 35px;
  }

  .floating-whatsapp svg {
    width: 35px;
    height: 35px;
  }

  /* Confirmation Page */
  .confirmation-header h1 {
    font-size: 36px;
  }

  .confirmation-form {
    padding: 32px;
  }

  .payment-code-container {
    padding: 20px;
  }

  .payment-code-boxes {
    gap: 20px;
  }

  .payment-code {
    font-size: 20px;
  }

  .form-submit {
    padding: 16px 24px;
    font-size: 16px;
  }
}

/* ======================================
MEDIA QUERIES — GRAND ÉCRAN (1440px et plus)
====================================== */
@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }

  section {
    padding: 100px 0;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hero-grid {
    gap: 80px;
  }

  /* H1 Grand écran */
  h1 {
    font-size: 52px;
  }

  /* WhatsApp flottant grand écran */
  .floating-whatsapp {
    width: 75px;
    height: 75px;
    bottom: 40px;
    right: 40px;
  }

  .floating-whatsapp svg {
    width: 38px;
    height: 38px;
  }
}

/* ======================================
UTILITAIRES & ANIMATIONS
====================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible pour accessibilité */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: rgba(34, 197, 94, 0.3);
  color: var(--text);
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ======================================
FIN DU FICHIER CSS
====================================== */