/* ============================================================
   1. BASE, RESET & VERROUILLAGE TOTAL ANTI-SCROLL HORIZONTAL
   ============================================================ */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html, body { 
  scroll-behavior: smooth; 
  -webkit-text-size-adjust: 100%; 
  width: 100%; 
  max-width: 100%; /* <-- Remplace 100vw par 100% */
  overflow-x: hidden !important; /* Force le téléphone à couper ce qui dépasse */
  position: relative;
}

body {
  background: var(--bg);
  color: var(--gray1);
  -webkit-font-smoothing: antialiased;
}

.site-wrapper { 
  width: 100%; 
  max-width: 100%; /* <-- Remplace 100vw par 100% */
  overflow-x: hidden !important; 
  position: relative; 
}

:root {
  --bg:        #F0F8FF;
  --bg2:       #FFFFFF;
  --bg3:       #E6F0F8;
  --glass:     rgba(255, 255, 255, 0.6);
  --glass2:    rgba(59, 130, 246, 0.03);
  --glass3:    rgba(59, 130, 246, 0.05);
  --border:    rgba(59, 130, 246, 0.08);
  --border2:   rgba(59, 130, 246, 0.2);
  --blue:      #3B82F6;
  --blue2:     #60A5FA;
  --cyan:      #06B6D4;
  --cyan2:     #22D3EE;
  --white:     #FFFFFF;
  --gray1:     #111827;
  --gray2:     #4B5563;
  --gray3:     #9CA3AF;
  --gold:      #D4AF37;
  --glow:      0 0 40px rgba(59,130,246,0.06), 0 0 80px rgba(6,182,212,0.03);
  --glow-sm:   0 0 20px rgba(59,130,246,0.1);
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  font-family: 'Inter', sans-serif;

  /* VARIABLES PRO REDESIGN */
  --pro-dark-blue: #0c1b33; 
  --pro-gold: #ffcc00;      
  --pro-gold-alpha: rgba(255, 204, 0, 0.3);
  --pro-blue-light: #90caf9; 
  --pro-gray-cool: #f1f3f5;  
  --pro-gray-cool-alpha: rgba(241, 243, 245, 0.7);
}

body {
  background: var(--bg);
  color: var(--gray1);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

.site-wrapper { overflow-x: hidden; width: 100%; position: relative; }

/* ============================================================
   BACKGROUND CANVAS
   ============================================================ */
#bg-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.9; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.font-display { font-family: 'Space Grotesk', sans-serif; }
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.03em; line-height: 1.1; color: var(--gray1); }

/* ============================================================
   UTILITY
   ============================================================ */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 1rem;
}
.eyebrow::before { content: ''; display: block; width: 16px; height: 1px; background: var(--blue); }

/* ============================================================
   GLASSMORPHISM CARD
   ============================================================ */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.25s;
}
.glass-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}
.glass-card:hover { border-color: var(--border2); transform: translateY(-3px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border-radius: 10px; transition: all 0.22s;
  cursor: pointer; border: none; white-space: nowrap; -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #2563EB 100%);
  color: white; padding: 0.9rem 1.75rem; box-shadow: 0 4px 18px rgba(59,130,246,0.25);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(59,130,246,0.35); transform: translateY(-2px) scale(1.01); }
.btn-primary:active { transform: scale(0.98); }

.btn-ghost {
  background: var(--glass2); color: var(--blue); padding: 0.9rem 1.75rem; border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(59,130,246,0.08); border-color: var(--border2); }

/* ============================================================
   NAVBAR (COULEUR IDENTIQUE AU FOND DU SITE)
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 1rem; height: 65px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg);
  border-bottom: 1px solid rgba(12, 27, 51, 0.06);
  box-sizing: border-box;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav-logo-hedy { height: 54px; width: auto; max-width: 195px; object-fit: contain; transition: transform .25s cubic-bezier(.16,1,.3,1); }
.nav-logo:hover .nav-logo-hedy { transform: scale(1.03); }

.nav-desktop { display: none; align-items: center; gap: 1.5rem; list-style: none; margin: 0 auto; }
@media (min-width: 900px) { .nav-desktop { display: flex; } nav { padding: 0 2rem; } }
.nav-desktop a { text-decoration: none; font-size: 0.85rem; font-weight: 500; color: var(--gray2); transition: color 0.2s; }
.nav-desktop a:hover { color: var(--blue); }

@media (max-width: 767px) {
  nav { padding: 0 0.9rem; }
  .nav-logo-hedy { max-width: 165px; height: 46px; }
}

/* ============================================================
   BOUTON NAVBAR : BILAN GRATUIT
   ============================================================ */
.btn-header-glow {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(135deg, #F5C842 0%, #FFD700 50%, #D4AF37 100%);
  color: #111827 !important;
  font-weight: 800; 
  font-family: 'Inter', sans-serif;
  text-decoration: none; border-radius: 999px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  animation: buttonAdmissionGlow 3s ease-in-out infinite;
  transition: all 0.3s ease;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  flex-grow: 1;
  margin: 0 10px;
  padding: 9px 11px;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}
.btn-header-glow:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.6);
  filter: brightness(1.04);
}
@media (max-width: 767px) {
  .btn-header-glow {
    font-size: 0.9rem !important;
    padding: 10px 34px !important;
    flex-grow: 0 !important;
    flex-shrink: 0;
    width: fit-content !important;
    white-space: nowrap;
  }
}
/* Mobile (jusqu'à 480px, soit la quasi-totalité des téléphones) : avec un
   logo agrandi, "Obtenir un bilan gratuit" en entier ne tient plus à côté
   du logo + hamburger. On bascule sur un libellé court (texte original
   masqué en font-size:0, repris par ::after) pour rester lisible et garder
   un logo grand format, sans jamais provoquer de scroll horizontal. */
@media (max-width: 480px) {
  nav { padding: 0 0.55rem; }
  .btn-header-glow {
    font-size: 0 !important;
    padding: 10px 28px !important;
    margin: 0 5px;
    flex-grow: 0 !important;
    flex-shrink: 0;
    width: fit-content !important;
    white-space: nowrap;
  }
  .btn-header-glow::after {
    content: "Bilan gratuit";
    font-size: 0.82rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
  }
}
/* Tout petits écrans (iPhone SE 320px...) : le logo redescend légèrement
   pour garder le libellé court parfaitement lisible. */
@media (max-width: 350px) {
  .nav-logo-hedy { max-width: 130px; height: 37px; }
}
@media (min-width: 900px) {
  .btn-header-glow {
    flex-grow: 0;
    padding: 10px 15px;
    font-size: 1rem;
  }
}

/* ---------- PAGES LÉGALES ---------- */
.lg-wrap { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 90px 20px 60px; }
.lg-wrap h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 5vw, 2.6rem); color: #0c1b33; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.lg-sub { color: var(--gray3); font-size: 0.85rem; margin-bottom: 2.2rem; }
.lg-wrap h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; color: #0c1b33; margin: 2rem 0 0.5rem; }
.lg-wrap p, .lg-wrap li { color: var(--gray2); font-size: 0.95rem; line-height: 1.75; }
.lg-wrap ul { padding-left: 1.2rem; margin: 0.4rem 0 0.6rem; }
.lg-todo { background: rgba(245,200,66,0.14); border: 1px solid rgba(212,175,55,0.35); color: #92710f; padding: 1px 7px; border-radius: 6px; font-size: 0.86rem; font-weight: 700; }

/* ---------- CHOIX PARENT / ÉLÈVE AVEC PHOTOS ---------- */
.bil-opt-photo { flex-direction: column; gap: 10px; padding: 16px 12px 14px; }
.bil-opt-pic { height: 66px; width: auto; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(12,27,51,0.15)); }

/* ============================================================
   NEW APPLE-STYLE HERO BANNER 
   ============================================================ */
.hero { position: relative; z-index: 1; min-height: 100svh; display: flex; align-items: center; padding: 100px 0 80px; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; min-width: 0; }
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.hero-text-block { display: flex; flex-direction: column; align-items: center; text-align: center; margin: 0 auto; width: 100%; }

.hero-redesign-container {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  width: 100%; max-width: 600px; margin: 0 auto;
  gap: 8px;
}

.pro-main-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Space Grotesk", sans-serif;
  color: #5784BA; 
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(12, 27, 51, 0.15);
  margin-bottom: 0;
}

.title-line-1 {
  display: block;
  font-size: clamp(1.8rem, 5vw, 2.8rem); 
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}

.title-line-2 {
  display: block;
  font-size: clamp(1.2rem, 3.5vw, 1.8rem); 
  font-weight: 700;
  line-height: 1.3;
  color: #5784BA;
  opacity: 0.9;
}

.hl-gold-pro {
  color: #D4AF37; 
  font-weight: 800;
  position: relative;
  display: inline-block;
  animation: goldScintillation 3s ease-in-out infinite;
}
@keyframes goldScintillation {
  0% { text-shadow: 0 0 4px rgba(212, 175, 55, 0.2); color: #D4AF37; }
  50% { text-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4); color: #FFD700; }
  100% { text-shadow: 0 0 4px rgba(212, 175, 55, 0.2); color: #D4AF37; }
}

.presentiel-badge-discret {
  display: inline-flex; align-items: center; gap: 6px; 
  background: rgba(30, 58, 138, 0.08); 
  border: 1px solid rgba(30, 58, 138, 0.15); 
  border-radius: 999px; 
  padding: 6px 14px; 
  font-size: 0.85rem; 
  color: var(--pro-dark-blue); 
  font-weight: 600;
  margin-top: 0.25rem; 
  margin-bottom: 0.5rem; 
}
.dot-discret { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 rgba(34, 197, 94, 0.4); animation: pulseGreen 2s infinite; }
@keyframes pulseGreen { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); } 70% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }

.main-info-widget-unified {
  display: flex; flex-direction: column; width: 100%; 
  padding: 14px 24px; 
  gap: 1rem; 
  background-color: rgba(219, 234, 254, 0.85);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5), 0 10px 40px rgba(0,0,0,0.04);
}

.rentree-feature-text {
  font-size: 1.15rem; 
  font-weight: 600; 
  color: var(--pro-dark-blue); 
  line-height: 1.4;
  margin-bottom: 0.2rem; 
}

.hl-bold-gold {
  color: #D4AF37;
  font-weight: 800;
}
.hl-pastel-green {
  color: #2ea673; 
  font-weight: 800;
}
.hl-jours {
  font-size: 1.3rem;
}

.schedule-columns-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; 
}
.schedule-column { display: flex; flex-direction: column; align-items: center; }
.col-header-day { font-size: 0.9rem; font-weight: 700; color: #0c1b33; text-transform: uppercase; letter-spacing: 0.05em; }

.pencil-line-separator {
  width: 40px; height: 2px; border-radius: 2px; margin: 6px auto 10px;
  background: linear-gradient(90deg, transparent, #90caf9, transparent);
}

.time-list { list-style: none; font-size: 0.95rem; color: var(--gray2); line-height: 1.6; }
.time-list li { font-weight: 600; color: var(--pro-dark-blue); }

/* === BOUTON TRUSTPILOT OFFICIEL === */
.tp-official-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111827; 
  color: white;
  padding: 10px 18px;
  border-radius: 12px; 
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 24px;
}
.tp-stars-row { display: flex; gap: 2px; }
.tp-sq { background: #00b67a; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; border-radius: 2px; }
.tp-text { font-weight: 500; color: #cbd5e1; }
.tp-text strong { font-weight: 700; color: white; }

@keyframes buttonAdmissionGlow {
  0% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6), 0 0 15px rgba(255, 204, 0, 0.5); }
  100% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
}

/* ============================================================
   NOUVELLE SECTION TITRE WIZARD (ANIMÉ & GÉANT)
   ============================================================ */
.wizard-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 1.5rem; 
  width: 100%;
}

.wizard-main-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 6vw, 3.2rem); 
  font-weight: 800;
  color: #1e3a8a; 
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
  text-align: center;
  animation: attention-blink 3s ease-in-out infinite; 
}

@keyframes attention-blink {
  0%, 100% { opacity: 1; transform: scale(1); text-shadow: 0 0 0 transparent; }
  50% { opacity: 0.6; transform: scale(1.03); text-shadow: 0 4px 20px rgba(30, 58, 138, 0.3); }
}

/* ============================================================
   WIZARD CARD
   ============================================================ */
.premium-wizard {
  background: rgba(219, 234, 254, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  border-radius: 24px; 
  padding: 1.5rem; 
  position: relative; 
  overflow: hidden; 
  max-width: 450px; 
  width: 100%;
}

.wizard-header { margin-bottom: 1.5rem; }
.w-progress-bg { background: var(--border); height: 6px; border-radius: 10px; overflow: hidden; }
.w-progress-fill { background: var(--blue); height: 100%; width: 33.33%; transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.wizard-step { display: none; animation: fadeUp 0.4s ease forwards; }
.wizard-step.active { display: block; }
.w-question { font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 600; color: #0c1b33; margin-bottom: 1.25rem; text-align: center; }
.w-options { display: flex; gap: 10px; justify-content: center; }
.w-options-col { display: flex; flex-direction: column; gap: 12px; }

/* --- BOUTONS PREMIUM AVEC IMAGES --- */
.w-btn-premium {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  gap: 10px;
  background: rgba(255, 255, 255, 0.7); 
  border: 1px solid rgba(59, 130, 246, 0.1); 
  border-radius: 20px; 
  padding: 1.25rem 0.75rem;
  font-family: 'Inter', sans-serif; 
  font-size: 0.95rem; 
  font-weight: 700; 
  color: var(--gray1);
  cursor: pointer; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
  width: 100%; 
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.w-btn-premium:hover { 
  border-color: var(--blue); 
  background: white; 
  transform: translateY(-5px); 
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15); 
}

.w-btn-premium.highlight { background: var(--gray1); color: white; border-color: var(--gray1); flex-direction: row; }
.w-btn-premium.highlight:hover, .w-btn-premium.highlight:active { background: #000; box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); transform: translateY(-3px); }
.w-icon { font-size: 1.8rem; }

/* --- IMAGE 3D ET OMBRE PORTÉE --- */
.w-icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.w-icon-img {
  width: 65px;  
  height: 65px; 
  object-fit: contain; 
  filter: drop-shadow(0 10px 15px rgba(12, 27, 51, 0.2)); 
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
}

.w-btn-premium:hover .w-icon-img {
  transform: scale(1.15) translateY(-4px);
  filter: drop-shadow(0 15px 20px rgba(12, 27, 51, 0.35)); 
}

.w-success-icon { font-size: 3rem; text-align: center; margin-bottom: 1rem; animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.w-result-text { font-size: 0.95rem; color: var(--gray2); line-height: 1.5; text-align: center; background: var(--bg2); padding: 1rem; border-radius: 12px; margin-bottom: 1rem; }
.w-back { background: none; border: none; color: var(--gray3); font-size: 0.85rem; cursor: pointer; margin-top: 1rem; text-decoration: underline; width: 100%; text-align: center; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes popIn { 0% { transform: scale(0.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* ============================================================
   PHONE MOCKUP & RIGHT COL
   ============================================================ */
.hero-right-col { display: flex; flex-direction: column; align-items: center; width: 100%; gap: 0; }

.app-label-row { display: flex; justify-content: center; width: 100%; margin: 1.5rem 0 1rem; position: relative; z-index: 2; }
.app-label-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(59, 130, 246, 0.2); border-radius: 999px; padding: 8px 18px; box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1); }
.app-label-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); } 50% { box-shadow: 0 0 0 6px rgba(59, 130, 246, 0); } }
.app-label-text { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--blue); letter-spacing: 0.04em; text-transform: uppercase; }
.app-label-arrow { font-size: 0.85rem; color: var(--blue); opacity: 0.7; animation: bounce-arrow 1.6s ease-in-out infinite; }
@keyframes bounce-arrow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

.phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.phone-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.phone {
  width: 255px;
  background: #09090b;
  border-radius: 46px;
  padding: 8px;
  position: relative;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.2),
    inset 0 0 0 2px rgba(255, 255, 255, 0.12),
    0 0 0 4px #1c1c1e,
    0 0 0 5px rgba(0, 0, 0, 0.4);
}
.phone-screen {
  background: var(--bg2);
  border-radius: 38px;
  padding: 24px 14px 16px;
  overflow: hidden;
  position: relative;
}
.phone-island {
  width: 76px;
  height: 22px;
  background: #000000;
  border-radius: 20px;
  margin: 0 auto;
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: inset 0 0 4px rgba(255,255,255,0.05);
}
.phone::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
  border-radius: 46px;
}

.hero-right-col .phone-wrap {
  margin-top: 32px;
}

.ps-header { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; margin-bottom: 14px; }
.ps-appname { font-family: 'Space Grotesk', sans-serif; font-size: 0.65rem; font-weight: 700; color: var(--blue); letter-spacing: 0.06em; }
.ps-score-card { border-radius: 14px; padding: 14px; margin-bottom: 12px; background: linear-gradient(135deg, var(--blue) 0%, #2563EB 100%); position: relative; overflow: hidden; }
.ps-slabel { font-size: 0.55rem; color: rgba(255,255,255,0.7); font-weight: 600; margin-bottom: 3px; }
.ps-sval { font-size: 1.7rem; font-weight: 800; color: white; font-family: 'Space Grotesk', sans-serif; line-height: 1; }
.ps-stitle { font-size: 0.55rem; font-weight: 700; color: var(--gray3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 7px; }
.ps-chap { display: flex; align-items: center; gap: 8px; background: var(--bg); border-radius: 8px; padding: 7px 9px; margin-bottom: 5px; }
.ps-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-ok { background: #22c55e; } .dot-wip { background: #f59e0b; } .dot-todo { background: #e5e7eb; }
.ps-cn { font-size: 0.6rem; color: var(--gray1); flex: 1; }
.ps-cs { font-size: 0.6rem; font-weight: 700; color: #16A34A; }

.float-pill { position: absolute; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 999px; padding: 7px 12px; display: flex; align-items: center; gap: 7px; font-size: 0.72rem; font-weight: 600; white-space: nowrap; box-shadow: var(--glow-sm); z-index: 5; }
.float-pill-left { left: -45px; bottom: 100px; }
.float-pill-right { right: -45px; top: 80px; }

/* Sous 640px, le mockup téléphone (255px) n'a plus assez de marge latérale
   pour ces badges (~150px) sans qu'ils chevauchent l'écran du téléphone. */
@media (max-width: 640px) {
  .float-pill-left, .float-pill-right { display: none; }
}

/* ============================================================
   NOUVELLE COLONNE DE STATS ANIMÉE (COMPTEURS LUXE 3 COLONNES)
   ============================================================ */
.stats-row-gauges.Sumptuous-Dashboard {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #111827; 
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 1.5rem 10px;
  box-shadow: 
    0 20px 60px rgba(12, 27, 51, 0.2),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}

.stats-row-gauges.Sumptuous-Dashboard::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  border-radius: 20px 20px 0 0;
}

.gauge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  transition: transform 0.2s ease;
}
.gauge-card:hover {
  transform: translateY(-5px);
}

.gauge-svg-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
}

.gauge-svg-wrapper svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}

.gauge-bg {
  fill: none;
  stroke: rgba(255,255,255,0.06); 
  stroke-width: 10; 
}

.gauge-progress {
  fill: none;
  stroke-width: 10; 
  stroke-linecap: round;
  transition: stroke-dashoffset 2s cubic-bezier(0.2, 1, 0.3, 1);
}

.blue-glow-intense { filter: drop-shadow(0 0 8px rgba(37,99,235,0.8)); stroke-width: 11; }
.gold-glow-intense { filter: drop-shadow(0 0 8px rgba(212,175,55,0.8)); stroke-width: 11; }
.green-glow-intense { filter: drop-shadow(0 0 8px rgba(22,163,74,0.8)); stroke-width: 11; }

.gauge-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem; 
  font-weight: 800;
}
.gauge-value.gold-text { color: var(--pro-gold); text-shadow: 0 0 10px var(--pro-gold); }
.gauge-value .g-num { font-size: 1.1rem; }

.gauge-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; 
  font-weight: 600;
  color: #cbd5e1; 
  white-space: nowrap;
  text-align: center;
}

/* ============================================================
   CAROUSEL COVERFLOW (3D drag) — OPTISCIENCES
   ============================================================ */
.carousel-section{width:100%;max-width:600px;margin:24px auto 0;position:relative}
.carousel-track-outer{
  position:relative; overflow:hidden; border-radius:20px;
  height:260px; perspective:1200px;
  touch-action:pan-y; -webkit-tap-highlight-color:transparent;
}
.carousel-track{ position:relative; width:100%; height:100%; transform-style:preserve-3d; }
.carousel-slide{
  position:absolute; top:0; left:50%;
  width:var(--slide-w,78%); height:100%;
  border-radius:20px; overflow:hidden;
  cursor:grab; will-change:transform,opacity;
  backface-visibility:hidden; -webkit-backface-visibility:hidden;
}
.carousel-track.is-settling .carousel-slide{
  transition: transform .55s cubic-bezier(.16,1,.3,1), opacity .5s ease;
}
.carousel-slide:active{ cursor:grabbing; }
.carousel-slide img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 6s ease;pointer-events:none}
.carousel-slide.active img{transform:scale(1.04)}
.slide-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(12,27,51,0.7) 0%,rgba(12,27,51,0.1) 50%,transparent 100%)}
.slide-caption{position:absolute;bottom:20px;left:24px;right:24px;color:#fff;font-family:'Inter',sans-serif;transition:opacity .4s ease}
.slide-caption .tag{display:inline-block;background:rgba(255,204,0,0.9);color:#111;font-size:0.65rem;font-weight:800;letter-spacing:0.07em;text-transform:uppercase;padding:4px 10px;border-radius:999px;margin-bottom:6px}
.slide-caption .title{font-size:1.05rem;font-weight:700;line-height:1.3;font-family:'Space Grotesk',sans-serif}
.carousel-dots{display:flex;justify-content:center;gap:8px;margin-top:14px}
.carousel-dot{width:7px;height:7px;border-radius:50%;background:rgba(59,130,246,0.2);border:none;cursor:pointer;transition:all 0.3s;padding:0}
.carousel-dot.active{background:#3B82F6;width:22px;border-radius:4px}
.carousel-arrows{position:absolute;inset:0;pointer-events:none;display:flex;align-items:center;justify-content:space-between;padding:0 12px;z-index:20}
.carousel-btn{pointer-events:all;width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,0.85);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:1rem;color:#0c1b33;transition:all 0.2s;box-shadow:0 2px 10px rgba(0,0,0,0.12)}
.carousel-btn:hover{background:#fff;transform:scale(1.08)}

@media (prefers-reduced-motion: reduce){
  .carousel-track.is-settling .carousel-slide{ transition: transform .3s ease, opacity .3s ease; }
}

/* ============================================================
   SECTIONS HORIZONTALES (Communs)
   ============================================================ */
section { position: relative; z-index: 1; padding: 70px 0; }
@media (min-width: 768px) { section { padding: 90px 0; } }
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.section-title { font-size: clamp(1.65rem, 4vw, 2.4rem); font-weight: 700; color: var(--gray1); margin-bottom: 0.75rem; }
.section-sub { font-size: clamp(0.9rem, 2vw, 1rem); color: var(--gray2); line-height: 1.7; max-width: 560px; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 0 auto; max-width: 800px; }

/* ============================================================
   CONSTAT 
   ============================================================ */
.constat-section { background: radial-gradient(ellipse at 50% 0%, var(--white) 0%, transparent 70%); }
.constat-col { height: 100%; display: flex; flex-direction: column; gap: 1rem; }
.constat-col-header { margin-bottom: 0.5rem; }

.constat-chart-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.055);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  padding: 28px 28px 20px;
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto 36px;
}
.constat-chart-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, #EF4444 0%, #3B82F6 50%, #D4AF37 100%);
}
.constat-chart-legend { display: flex; gap: 20px; justify-content: flex-end; margin-bottom: 16px; flex-wrap: wrap; }
.ccl-item { display: flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600; color: #374151; }
.ccl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.constat-chart-wrap { position: relative; width: 100%; height: 220px; }
.constat-chart-caption { text-align: center; font-size: .7rem; color: #9CA3AF; margin-top: 10px; font-weight: 500; }

.cc-col-labels { display: grid; grid-template-columns: 1fr 44px 1fr; max-width: 860px; margin: 0 auto 12px; padding: 0 4px; }
.cc-label { font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.cc-label-fail { color: #DC2626; }
.cc-label-ok { color: #16A34A; justify-content: flex-end; }
.cc-label-mid { width: 44px; }
.cc-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

.cc-rows { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.cc-row {
  display: grid; grid-template-columns: 1fr 44px 1fr;
  background: #fff; border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.055);
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
  overflow: hidden; transition: box-shadow .2s ease;
}
.cc-row:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }

.cc-side { padding: 1rem 1.25rem; display: flex; align-items: flex-start; gap: 10px; }
.cc-fail { background: rgba(254,242,242,0.55); }
.cc-ok { background: rgba(240,253,244,0.55); }
.cc-side-right { justify-content: flex-end; text-align: right; }
.cc-side div { display: flex; flex-direction: column; gap: 2px; }
.cc-side strong { font-size: .83rem; font-weight: 700; color: #111827; }
.cc-side span { font-size: .75rem; color: #6B7280; line-height: 1.5; }

.cc-ico { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .62rem; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.cc-ico-x { background: rgba(239,68,68,0.09); color: #DC2626; }
.cc-ico-v { background: rgba(34,197,94,0.1); color: #16A34A; margin-top: 2px; margin-left: 10px; }

.cc-mid {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; background: #fff; align-self: stretch;
  border-left: 1px solid rgba(0,0,0,0.04); border-right: 1px solid rgba(0,0,0,0.04);
  padding: 6px 0;
}
.cc-mid-label { font-size: .52rem; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: .06em; text-align: center; line-height: 1.3; }
.cc-mid-arrow { width: 26px; height: 26px; background: #0c1b33; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cc-mid-arrow svg { width: 12px; height: 12px; }

@media (max-width: 767px) {
  .cc-row { grid-template-columns: 1fr 38px 1fr; }
  .cc-side { padding: .85rem .9rem; gap: 8px; }
  .cc-side strong { font-size: .78rem; }
  .cc-side span { font-size: .7rem; }
  .cc-mid { width: 38px; }
  .constat-chart-card { padding: 20px 16px 16px; }
  .constat-chart-wrap { height: 180px; }
  .cc-col-labels { grid-template-columns: 1fr 38px 1fr; }
}

/* ============================================================
   MÉTHODE SECTION — NOUVEAU DESIGN
   ============================================================ */

.ms-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── HERO CARD ── */
.ms-hero {
  background: #0c1b33;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr 260px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 24px 64px rgba(12,27,51,0.22);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.ms-hero:hover { transform: translateY(-4px); box-shadow: 0 32px 80px rgba(12,27,51,0.3); }
.ms-hero::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  top: -80px; left: -80px;
  pointer-events: none;
}

.ms-hero-left {
  padding: 2.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.ms-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(212,175,55,0.14);
  border: 1px solid rgba(212,175,55,0.32);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .62rem;
  font-weight: 700;
  color: #F5C842;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}
.ms-bdot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #F5C842;
  box-shadow: 0 0 6px rgba(245,200,66,0.6);
}

.ms-hero-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .62rem; font-weight: 700;
  color: rgba(255,255,255,0.28);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 8px;
}
.ms-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: #fff;
  letter-spacing: -.03em; line-height: 1.18;
  margin-bottom: 14px;
}
.ms-hero-desc {
  font-size: .85rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 360px;
}

.ms-steps { display: flex; flex-direction: column; gap: 11px; }
.ms-step {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,0.5);
}
.ms-sdot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.ms-sdot svg { width: 10px; height: 10px; }
.ms-step strong { color: rgba(255,255,255,0.88); font-weight: 600; }

.ms-hero-right {
  background: linear-gradient(160deg, rgba(212,175,55,0.1) 0%, rgba(59,130,246,0.06) 100%);
  border-left: 1px solid rgba(212,175,55,0.12);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 2rem;
  position: relative; overflow: hidden;
}
.ms-hero-right::before {
  content: '01';
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9rem; font-weight: 800;
  color: rgba(255,255,255,0.03);
  position: absolute; bottom: -20px; right: -10px;
  line-height: 1; pointer-events: none;
}
.ms-hero-icon {
  width: 80px; height: 80px;
  border-radius: 22px;
  background: rgba(212,175,55,0.14);
  border: 1px solid rgba(212,175,55,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  position: relative; z-index: 1;
}
.ms-stat-chip {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 12px 18px;
  position: relative; z-index: 1;
  width: 100%; text-align: center;
}
.ms-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: #F5C842; line-height: 1;
}
.ms-stat-lbl {
  font-size: .62rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500; letter-spacing: .04em;
}

/* ── BOTTOM GRID ── */
.ms-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ms-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(12,27,51,0.05), 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.ms-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(12,27,51,0.1); }

.ms-ctbar { height: 3px; }
.ms-blue-bar { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.ms-gold-bar { background: linear-gradient(90deg, #D4AF37, #F5C842); }

.ms-cbody {
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 11px;
  flex: 1;
}
.ms-cnum {
  font-size: .62rem; font-weight: 700;
  color: #9CA3AF;
  letter-spacing: .12em; text-transform: uppercase;
}
.ms-cion {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 2px;
}
.ms-ib { background: rgba(59,130,246,0.07); }
.ms-ig { background: rgba(212,175,55,0.1); }

.ms-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #0c1b33; line-height: 1.3;
}
.ms-card-desc {
  font-size: .83rem;
  color: #6B7280; line-height: 1.7;
}

.ms-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  align-self: flex-start;
}
.ms-tag-blue { background: rgba(59,130,246,0.07); color: #2563EB; border: 1px solid rgba(59,130,246,0.16); }
.ms-tag-gold { background: rgba(212,175,55,0.1); color: #92710f; border: 1px solid rgba(212,175,55,0.25); }

/* ── GROUPE SCENE ── */
.ms-group-scene {
  background: linear-gradient(135deg, #0c1b33 0%, #1a2f52 100%);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 2px;
  position: relative; overflow: hidden;
}
.ms-group-scene::after {
  content: '';
  position: absolute; bottom: -50px; right: -50px;
  width: 130px; height: 130px; border-radius: 50%;
  background: rgba(212,175,55,0.06); pointer-events: none;
}
.ms-gslbl {
  font-size: .58rem; font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: -4px;
}
.ms-seats { display: flex; align-items: center; gap: 8px; }
.ms-seat {
  flex: 1; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.07);
}
.ms-sav {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.ms-s1 { background: #3B82F6; }
.ms-s2 { background: #7c3aed; }
.ms-s3 { background: #D4AF37; color: #0c1b33 !important; }
.ms-s4 { background: #0d9488; }
.ms-seat-libre {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px dashed rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
}
.ms-gsdiv { height: 1px; background: rgba(255,255,255,0.06); }
.ms-gsstats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ms-gsstat { display: flex; flex-direction: column; gap: 2px; }
.ms-gsval {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: #F5C842; line-height: 1;
}
.ms-gslb {
  font-size: .58rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500; letter-spacing: .04em;
}
.ms-gsfoot { display: flex; align-items: center; justify-content: space-between; }
.ms-mpill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,175,55,0.14);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 999px; padding: 4px 11px;
  font-size: .6rem; font-weight: 700; color: #F5C842;
}
.ms-mpd {
  width: 5px; height: 5px;
  border-radius: 50%; background: #F5C842;
  box-shadow: 0 0 5px rgba(245,200,66,0.6);
}
.ms-live {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .58rem; font-weight: 600;
  color: rgba(255,255,255,0.35);
}
.ms-ldot {
  width: 5px; height: 5px;
  border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 5px rgba(74,222,128,0.5);
}

/* ── APP MINI ── */
.ms-app {
  background: #0c1b33;
  border-radius: 16px;
  padding: 14px 15px;
  margin-top: 2px;
  display: flex; flex-direction: column; gap: 9px;
}
.ms-ar { display: flex; align-items: center; justify-content: space-between; }
.ms-al {
  font-size: .58rem; font-weight: 600;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase; letter-spacing: .05em;
}
.ms-aval { font-size: .7rem; font-weight: 700; }
.ms-vg  { color: #4ade80; }
.ms-vgo { color: #F5C842; }
.ms-vb  { color: #93C5FD; }
.ms-abar {
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px; overflow: hidden;
}
.ms-afill { height: 100%; border-radius: 3px; }

@media (max-width: 860px) {
  .ms-hero { grid-template-columns: 1fr; }
  .ms-hero-right { display: none; }
  .ms-hero-left { padding: 2rem 1.75rem; }
}
@media (max-width: 620px) {
  .ms-bottom { grid-template-columns: 1fr 1fr; }
  .ms-cbody { padding: 1rem; } 
  .ms-group-scene { padding: 10px; }
  .ms-app { padding: 10px; }
}

/* ============================================================
   SECTION FONDATEUR PREMIUM (DARK CARD)
   ============================================================ */
.founder-pro-section {
  padding: 80px 0;
  background: var(--bg);
}

.fp-card {
  background: linear-gradient(145deg, #0c1b33 0%, #15294a 100%);
  border-radius: 48px;
  box-shadow: 0 20px 50px rgba(12, 27, 51, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.fp-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fp-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.fp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #F5C842; margin-bottom: 1.2rem;
}
.fp-dot { width: 6px; height: 6px; border-radius: 50%; background: #F5C842; box-shadow: 0 0 8px rgba(245, 200, 66, 0.8); }

.fp-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800; color: #ffffff;
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.fp-subtitle {
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500;
  color: #90caf9; margin-bottom: 1.5rem;
}

.fp-bio {
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75); line-height: 1.7;
  margin-bottom: 2rem; max-width: 90%;
}

.fp-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2.5rem;
}
.fp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff; font-size: 0.75rem; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}

.fp-cta {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff; font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600;
  padding: 12px 20px; border-radius: 12px; text-decoration: none;
  transition: all 0.3s ease;
}
.fp-cta:hover {
  background: #ffffff; color: #0c1b33; transform: translateY(-2px);
}
.fp-cta span { transition: transform 0.3s; }
.fp-cta:hover span { transform: translateX(4px); }

/* --- Partie Droite (Visuels, Orbite & Widgets) --- */
.fp-visual {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3rem; position: relative; z-index: 2;
}

/* La zone globale du système solaire */
.fp-avatar-area {
  position: relative; width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}

/* Ta photo au centre (Immobile) */
.fp-avatar-center {
  width: 120px; height: 120px; border-radius: 50%;
  border: 3px solid #D4AF37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  position: relative; z-index: 10;
  overflow: hidden;
}
.fp-avatar-img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Le rail qui tourne sur lui-même (l'orbite) */
.fp-orbit-track {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.25);
  animation: spin-orbit 25s linear infinite; 
}

/* Les badges accrochés au rail */
.fp-float {
  position: absolute;
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #0c1b33; font-size: 0.75rem; font-weight: 700;
  padding: 6px 12px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: counter-spin-orbit 25s linear infinite;
}

/* Placement précis des 3 badges sur le cercle de l'orbite */
.fp-f1 { top: 2%; left: 2%; }
.fp-f2 { top: 2%; right: -12%; }
.fp-f3 { bottom: 2%; left: 2%; }
.fp-f4 { bottom: 2%; right: -12%; }

/* Les animations de rotation */
@keyframes spin-orbit { 100% { transform: rotate(360deg); } }
@keyframes counter-spin-orbit { 100% { transform: rotate(-360deg); } }

/* Widgets des notes */
.fp-scores-grid {
  display: flex; gap: 12px; width: 100%; justify-content: center;
}

.fp-score-widget {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px; padding: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  flex: 1; text-align: center;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}

.fps-highlight {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.fps-val {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 800;
  color: #F5C842; line-height: 1;
}
.fps-val span { font-size: 0.9rem; opacity: 0.7; }
.fps-lbl {
  font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 0.05em;
}



/* --- RESPONSIVE MOBILE EXTRÊME --- */
@media (max-width: 900px) {
  .fp-card {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 2.5rem;
    border-radius: 36px;
  }
  
  .fp-visual { order: -1; gap: 2rem; }
  
  .fp-bio { max-width: 100%; text-align: justify; }
  .fp-content { align-items: center; text-align: center; }
  .fp-badges { justify-content: center; }
  .fp-cta { align-self: center; }
  
  .fp-avatar-area { transform: scale(0.85); margin: -15px 0; }

  .fp-scores-grid { flex-wrap: nowrap; gap: 8px; }
  .fp-score-widget { padding: 12px 8px; }
  .fps-val { font-size: 1.4rem; }
  .fps-lbl { font-size: 0.6rem; }
}

/* Orbite fondateur (hero) : reduite sur petit mobile pour que les 4 badges
   ne sortent jamais du cadre pendant la rotation (overflow:hidden du .fp-card) */
@media (max-width:767px){
  .fp-avatar-area{ width:230px; height:230px; transform:none; margin:0; }
  .fp-avatar-center{ width:100px; height:100px; }
  .fp-float{ padding:4px 9px; font-size:0.66rem; gap:4px; }
  .fp-float svg{ width:11px !important; height:11px !important; }
}

/* ============================================================
   AVIS TICKER GOLD
   ============================================================ */
.avis-section-new { padding: 70px 0; overflow: hidden; }
.avis-head { text-align: center; margin-bottom: 2.5rem; }
.avis-eyebrow-new { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 1rem; }
.avis-eyebrow-new::before { content: ''; display: block; width: 16px; height: 1px; background: var(--blue); }

.ticker-outer { overflow: hidden; position: relative; width: 100%; }
.ticker-outer::before, .ticker-outer::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.ticker-outer::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.ticker-outer::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  cursor: grab;
  touch-action: pan-y; 
  user-select: none;
}
.ticker-track.dragging { cursor: grabbing; }

.avis-card-gold { flex-shrink: 0; width: 320px; background: #fff; border: 1.5px solid #D4AF37; border-radius: 20px; padding: 24px; display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden; }
.avis-card-gold::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #F5C842, #D4AF37, #F5C842); }
.avis-quote-mark { font-family: 'Space Grotesk', sans-serif; font-size: 4rem; line-height: 1; color: #D4AF37; opacity: 0.25; position: absolute; top: 12px; right: 18px; font-weight: 800; }
.avis-stars-gold { display: flex; gap: 3px; }
.avis-stars-gold span { color: #D4AF37; font-size: 0.85rem; }
.avis-text-gold { font-size: 0.88rem; color: var(--gray2); line-height: 1.7; font-style: italic; flex: 1; margin: 0; }
.avis-footer-gold { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid rgba(212,175,55,0.2); }
.avis-av-gold { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; color: white; flex-shrink: 0; border: 2px solid rgba(212,175,55,0.3); }
.avis-name-gold { font-family: 'Space Grotesk', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--gray1); }
.avis-role-gold { font-size: 0.72rem; color: var(--gray3); }

/* ============================================================
   PRICING CARD V2
   ============================================================ */
.pc2 {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 0 0 #D4AF37, 0 12px 48px rgba(12,27,51,0.10);
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pc2:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 0 0 #D4AF37, 0 24px 64px rgba(12,27,51,0.16);
}
.pc2-header {
  background: linear-gradient(135deg, #0c1b33 0%, #1a2f52 100%);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.pc2-header::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(212,175,55,0.08);
}
.pc2-header::after {
  content: ''; position: absolute; bottom: -60px; left: -20px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(212,175,55,0.05);
}
.pc2-level {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.3);
  border-radius: 999px; padding: 5px 12px;
  font-size: 0.7rem; font-weight: 700; color: #F5C842;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px;
}
.pc2-level-dot { width: 6px; height: 6px; border-radius: 50%; background: #F5C842; }
.pc2-htitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem; font-weight: 800; color: #fff;
  line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 18px;
  position: relative; z-index: 1;
}
.pc2-meta { display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1; }
.pc2-meta-item {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; padding: 5px 11px;
  font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.75);
}
.pc2-meta-item.gold {
  background: rgba(212,175,55,0.18); border-color: rgba(212,175,55,0.35); color: #F5C842;
}
.pc2-body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 20px; }
.pc2-price-row {
  display: flex; align-items: center; justify-content: space-between;
  background: #fafaf9; border-radius: 16px; padding: 16px 20px;
  border: 1px solid #f0ede8;
}
.pc2-price-from { font-size: 0.7rem; color: #9CA3AF; font-weight: 500; margin-bottom: 2px; }
.pc2-price-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 800; color: #0c1b33; line-height: 1;
}
.pc2-price-unit { font-size: 1rem; font-weight: 600; color: #6B7280; }
.pc2-suivi-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #F5C842, #D4AF37);
  color: #0c1b33; font-size: 0.72rem; font-weight: 800;
  padding: 8px 14px; border-radius: 12px; letter-spacing: 0.02em;
}
.pc2-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #0c1b33 0%, #1a2f52 100%);
  color: #F5C842; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 800; padding: 15px 24px;
  border-radius: 14px; text-decoration: none; letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(12,27,51,0.2);
}
.pc2-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(12,27,51,0.3); }
.pc2-cta-arrow {
  background: rgba(245,200,66,0.15); border-radius: 8px;
  padding: 4px 8px; font-size: 0.85rem;
}
.pc2-programme {
  border: 1.5px solid #D4AF37; border-radius: 18px;
  padding: 20px 18px 16px; position: relative;
}
.pc2-prog-label {
  position: absolute; top: -12px; left: 16px;
  background: linear-gradient(135deg, #F5C842, #D4AF37);
  color: #0c1b33; font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.09em; padding: 4px 12px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
}
.pc2-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.pc2-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.84rem; color: #4B5563; line-height: 1.5;
}
.pc2-list li strong { color: #0c1b33; font-weight: 700; }
.pc2-check { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; }

@media (max-width: 767px) {
  .pc2 {
  max-width: 420px;
  width: fit-content;
  margin: 2rem auto;
}
  .pc2-price-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

.pc2-toggle {
  display: inline-flex;
  background: rgba(219, 234, 254, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  padding: 6px;
  gap: 6px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(12, 27, 51, 0.08);
  width: 100%;
  max-width: 480px;
}
.pc2-toggle-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 0;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #6B7280;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
  flex: 1;
  letter-spacing: -0.01em;
}
.pc2-toggle-btn.active {
  background: linear-gradient(135deg, #0c1b33 0%, #1a2f52 100%);
  color: #F5C842;
  box-shadow: 0 6px 20px rgba(12, 27, 51, 0.25);
}
.pc2-toggle-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.6);
  color: #0c1b33;
}

/* Réduction de la marge au-dessus de la section "Le format" */
.seance-section {
  padding-top: 18px !important; 
}

/* ============================================================
   BADGES INFOS "CAHIER DE MATHS / ACCOLADES"
   ============================================================ */
.math-set-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0.5rem auto 1.5rem;
  width: 100%;
}

.math-set-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* Bordure en pointillés façon géométrie */
  border: 1px dashed rgba(59, 130, 246, 0.4); 
  border-radius: 8px;
  padding: 6px 14px;
  box-shadow: 0 4px 15px rgba(12, 27, 51, 0.05);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

/* Le fond quadrillé très subtil (papier millimétré) */
.math-set-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
  background-size: 10px 10px;
  z-index: 0;
  pointer-events: none;
}

.math-set-badge:hover {
  transform: translateY(-2px);
  border-style: solid;
  border-color: rgba(59, 130, 246, 0.7);
  background: rgba(255, 255, 255, 0.95);
}

/* Les grandes accolades mathématiques */
.math-brace {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--blue);
  position: relative;
  z-index: 1;
  line-height: 1;
  padding-bottom: 2px;
}

/* Le texte normal et bien lisible au centre */
.math-set-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0c1b33;
  margin: 0 10px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

/* Adaptation pour les tout petits écrans */
@media (max-width: 450px) {
  .math-set-badge { padding: 4px 10px; }
  .math-brace { font-size: 1.4rem; }
  .math-set-text { font-size: 0.78rem; margin: 0 8px; }
}

/* ============================================================
   LIGNES D'INFO SOUS L'ENCADRÉ HORAIRES
   ============================================================ */
.info-lines-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 6px;
}
.info-line {
  font-size: 0.8rem;
  color: var(--gray3);
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   CTA BANDE 
   ============================================================ */
.cta-band { padding: 60px 0 !important; }
.cta-band-inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; padding: 2.5rem; border: 1px solid rgba(59,130,246,0.2); background: rgba(255,255,255,0.8); }
@media (max-width: 768px) { .cta-band-inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; } }
.cta-urgency-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.15); color: #DC2626; font-size: 0.75rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; margin-bottom: 0.75rem; animation: pulse-badge 2.5s ease-in-out infinite; }
.cta-band-title { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 700; color: var(--gray1); margin-bottom: 0.5rem; line-height: 1.2; }
.cta-band-sub { font-size: 0.9rem; color: var(--gray3); }
.cta-band-right { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; flex-shrink: 0; }
@media (max-width: 768px) { .cta-band-right { align-items: center; } }
.cta-band-btn { min-width: 220px; justify-content: center; }
.cta-band-reassurance { font-size: 0.75rem; color: var(--gray3); }

/* ============================================================
   FAQ 
   ============================================================ */
/* ============================================================
   FAQ PREMIUM REDESIGN (ANIMATIONS FLUIDES)
   ============================================================ */
.faq-section-pro {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 100%);
  position: relative;
  z-index: 5;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(12, 27, 51, 0.03);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

.faq-item.open {
  background: #ffffff;
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 15px 40px rgba(12, 27, 51, 0.08);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  gap: 1.5rem;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-q-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-item.open .faq-icon-wrap {
  background: rgba(212, 175, 55, 0.15);
  transform: scale(1.05);
}

.faq-q-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0c1b33;
  line-height: 1.3;
  transition: color 0.3s;
}
.faq-item.open .faq-q-text {
  color: #b48600; /* Doré sombre pour la lisibilité */
}

/* Le bouton magique Plus/Moins */
.faq-plus-minus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-pm-line {
  position: absolute;
  background: #0c1b33;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-pm-h { width: 12px; height: 2px; }
.faq-pm-v { width: 2px; height: 12px; }

.faq-item.open .faq-plus-minus {
  background: #0c1b33;
  transform: rotate(90deg);
  border-color: #0c1b33;
}
.faq-item.open .faq-pm-line {
  background: #F5C842;
}
.faq-item.open .faq-pm-v {
  transform: scaleY(0); /* L'astuce qui transforme le + en - ! */
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a-inner {
  padding: 0 1.5rem 1.5rem 5.2rem; /* On décale le texte pour qu'il s'aligne avec le titre, pas l'icône */
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.7;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 767px) {
  .faq-q { padding: 1.25rem; gap: 12px; }
  .faq-q-left { gap: 12px; }
  .faq-q-text { font-size: 1rem; }
  .faq-icon-wrap { width: 36px; height: 36px; font-size: 1.1rem; border-radius: 10px; }
  .faq-a-inner { padding: 0 1.25rem 1.25rem 1.25rem; text-align: justify; } /* Plus de décalage sur mobile pour gagner de la place */
}

/* ============================================================
   FOOTER PREMIUM (DARK)
   ============================================================ */
.footer-pro {
  background: #091120; /* Très sombre, presque noir */
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0 30px;
  border-top: 2px solid rgba(212, 175, 55, 0.3); /* Liseré doré de transition */
  position: relative;
  z-index: 10;
}

.footer-pro-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand-col {
  max-width: 380px;
}

.footer-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.fc-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.f-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.f-social-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #D4AF37;
  color: #F5C842;
  transform: translateY(-3px);
}

.footer-links-wrap {
  display: flex;
  gap: 5rem;
}

.f-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.f-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.f-link:hover {
  color: #F5C842;
  transform: translateX(3px);
}

.footer-pro-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

.hl-gold-text {
  color: #D4AF37;
  font-weight: 600;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
  .footer-pro-inner {
    flex-direction: column;
    gap: 3rem;
  }
  .footer-links-wrap {
    flex-direction: row;        /* <-- FORCE LES COLONNES CÔTE À CÔTE */
    justify-content: space-between; /* <-- ESPACE LES DEUX COLONNES */
    gap: 1rem;
    width: 100%;
  }
  .footer-pro-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   NOUVEAU FLOTTANT TÉLÉPHONE (REMPLACE WHATSAPP)
   ============================================================ */
.phone-float { position: fixed; width: 56px; height: 56px; bottom: 25px; right: 20px; background: linear-gradient(135deg, var(--blue) 0%, #2563EB 100%); color: #FFF; border-radius: 50px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(59,130,246,0.35); z-index: 150; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.phone-float:hover { transform: scale(1.08) translateY(-3px); box-shadow: 0 12px 40px rgba(59,130,246,0.45); }
.phone-float svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ============================================================
   HYBRID NAVIGATION MOBILE (OPTIMISATIONS EXTRÊMES)
   ============================================================ */
.mobile-tab-bar { display: none; }
.nav-phone-mobile { display: none; }

@media (max-width: 767px) {
  html {
    font-size: 18px !important; 
  }
  
  body { padding-bottom: 90px; }
  
  .mobile-tab-bar { display: flex; position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); width: 94%; max-width: 500px; height: 64px; padding: 0 4px; background: rgba(255,255,255,0.8); backdrop-filter: blur(28px) saturate(160%); -webkit-backdrop-filter: blur(28px) saturate(160%); border: 1px solid rgba(255,255,255,0.6); border-radius: 24px; box-shadow: 0 14px 40px -10px rgba(12,27,51,0.24), inset 0 1px 0 rgba(255,255,255,0.7); justify-content: space-evenly; align-items: center; z-index: 9999; }
  .tab-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; text-decoration: none; color: var(--gray3); font-size: 0.56rem; font-weight: 600; letter-spacing: -0.01em; -webkit-tap-highlight-color: transparent; transition: color .25s ease, background .25s ease, transform .2s cubic-bezier(.16,1,.3,1); flex: 1; height: 50px; border-radius: 16px; }
  .tab-item svg { width: 21px; height: 21px; transition: transform .25s cubic-bezier(.16,1,.3,1), stroke-width .2s ease; }
  .tab-item:active { transform: scale(.9); }
  .tab-item.active { color: var(--blue); background: rgba(59,130,246,0.09); }
  .tab-item.active svg { transform: translateY(-1px); stroke-width: 2.4; }
  .phone-float { bottom: 100px !important; right: 15px !important; }

  section { padding: 40px 0 !important; }
  .hero { padding: 80px 0 20px !important; min-height: auto !important; }
  .hero-inner { gap: 1.5rem !important; }
  .main-info-widget-unified { padding: 12px 16px !important; gap: 1rem !important; }
  .tp-official-button { padding: 10px 16px !important; font-size: 0.85rem !important; }
  .glass-card { padding: 1.25rem !important; }
  .section-head { margin-bottom: 1.5rem !important; }
  .wizard-card { margin-top: 1rem !important; min-height: auto !important; }
  
  .stats-row-gauges.Sumptuous-Dashboard {
    padding: 1.25rem 0.5rem;
    max-width: 100%;
    gap: 5px;
  }
  .gauge-card { gap: 6px; }
  .gauge-svg-wrapper { width: 60px; height: 60px; }
  .gauge-value { font-size: 0.95rem; }
  .gauge-value .g-num { font-size: 0.95rem; }
  .gauge-label { font-size: 0.65rem; }
  
  .wizard-title-group { margin-top: 10px !important; margin-bottom: 0 !important; }
  .wizard-main-title { font-size: 2.2rem; }
  .w-icon-img { width: 52px; height: 52px; }
  
  .fondateur-scores { flex-direction: column; align-items: center; }
  .score-sep { width: 40px; height: 1px; }
  .footer-links-group { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .avis-card { width: calc(85vw); }
  .fondateur-avatar-wrap { width: 220px; height: 260px; }
  .cta-band-inner { padding: 1.5rem !important; }
}

/* ============================================================
   CTA PREMIUM REDESIGN (APPEL À L'ACTION)
   ============================================================ */
.cta-pro-section {
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

.cta-pro-card {
  background: linear-gradient(135deg, #0c1b33 0%, #15294a 100%);
  border-radius: 32px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(12, 27, 51, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.cta-glow-bg {
  position: absolute;
  top: -50%; left: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.cta-urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.pulse-red {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulse-red-anim 2s infinite;
}
@keyframes pulse-red-anim {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.cta-pro-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-pro-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 500px;
}

.cta-pro-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
  min-width: 340px;
}

.btn-cta-gold {
  background: linear-gradient(135deg, #F5C842 0%, #D4AF37 100%);
  color: #0c1b33;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-cta-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 24px;
  border-radius: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
}
.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.cta-pro-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}
.cta-pro-reassurance svg {
  width: 14px; height: 14px;
  stroke: #4ade80;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 900px) {
  .cta-pro-card {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem;
    gap: 2.5rem;
    text-align: center;
    border-radius: 24px;
  }
  .cta-pro-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta-pro-sub {
    margin: 0 auto;
  }
  .cta-pro-right {
    min-width: 100%;
  }
}

.hero-redesign-container,
.hero-right-col,
.stats-row-gauges.Sumptuous-Dashboard,
.gauge-card {
  min-width: 0;
}

@media (max-width: 420px) {
  .modalite-selector { flex-wrap: wrap; justify-content: center; row-gap: 6px; }
  .modalite-sep { display: none; }
}

/* ============================================================
   PAGE MÉTHODE - APPROCHE INGÉNIEUR (ULTRA PREMIUM)
   ============================================================ */
.methodology-premium-section {
  padding: 150px 0 80px;
  position: relative;
  z-index: 10;
}

.methodology-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.methodology-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--pro-dark-blue);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.methodology-sub {
  font-size: 1.1rem;
  color: var(--gray2);
  line-height: 1.6;
  max-width: 650px;
}

/* Le conteneur "Blueprint" d'ingénieur */
.engineering-process-wrapper {
  background: linear-gradient(145deg, #091120 0%, #0c1b33 100%);
  border-radius: 32px;
  padding: 4rem;
  box-shadow: 0 30px 60px rgba(12, 27, 51, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

/* Grille subtile en fond pour l'effet "ingénieur" */
.engineering-process-wrapper::before {
  content: '';
  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: 30px 30px;
  pointer-events: none;
}

.ep-intro {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.ep-intro h2 {
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.ep-intro p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}
.ep-intro strong { color: #F5C842; }

.ep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Ligne lumineuse de connexion entre les étapes (Uniquement sur PC) */
.ep-grid::after {
  content: '';
  position: absolute;
  top: 22px; /* Aligné avec le milieu des numéros */
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  z-index: -1;
}

.ep-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem 2rem 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ep-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 30px rgba(212, 175, 55, 0.1);
}

.ep-step-number {
  position: absolute;
  top: -22px;
  width: 44px;
  height: 44px;
  background: #0c1b33;
  border: 2px solid #D4AF37;
  color: #F5C842;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
}

.ep-card:hover .ep-step-number {
  background: linear-gradient(135deg, #F5C842 0%, #D4AF37 100%);
  color: #0c1b33;
  box-shadow: 0 0 20px rgba(245, 200, 66, 0.5);
}

.ep-content { text-align: center; }

.ep-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.ep-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Bento Box Engagement */
.engagement-bento {
  display: flex;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 32px;
  padding: 3.5rem;
  gap: 4rem;
  align-items: center;
  box-shadow: 0 15px 40px rgba(12, 27, 51, 0.04);
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.eb-visual {
  position: relative;
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}

.eb-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 1; }
}

.eb-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F5C842 0%, #D4AF37 100%);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.eb-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  color: #0c1b33;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.eb-text p {
  color: var(--gray2);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.eb-text strong {
  color: #0c1b33;
}

.eb-subtext {
  font-size: 0.95rem !important;
  color: var(--pro-dark-blue) !important;
  font-weight: 500;
  background: rgba(59, 130, 246, 0.06);
  padding: 1.25rem;
  border-radius: 16px;
  border-left: 4px solid #3B82F6;
  margin-bottom: 0 !important;
}

/* Mobile Responsive spécifique pour ce bloc */
@media (max-width: 900px) {
  .engineering-process-wrapper { padding: 3rem 1.5rem; border-radius: 24px; }
  .ep-intro h2 { font-size: 1.8rem; }
  .ep-grid { grid-template-columns: 1fr; gap: 3rem; margin-top: 2rem; }
  .ep-grid::after { display: none; } /* Enlève la ligne horizontale sur mobile */
  
  .engagement-bento {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
    border-radius: 24px;
  }
  .eb-subtext { text-align: left; }
}

/* ============================================================
   WIZARD : CARTE GLASS NAVY/OR (cohérente avec pio-bar / pc2 / seance-tl)
   ============================================================ */
.chalkboard-wizard {
  background: linear-gradient(155deg, #0c1b33 0%, #15294a 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 26px;
  box-shadow:
    0 24px 60px -20px rgba(12, 27, 51, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  padding: 2.1rem 1.6rem 1.8rem;
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 1.5rem auto 0;
}
/* Grille subtile "ingénieur" en fond, comme .pm-framework::before */
.chalkboard-wizard::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.chalkboard-wizard::after {
  content: '';
  position: absolute;
  top: -35%; right: -20%;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 70%);
  pointer-events: none;
}

/* Ligne de progression dorée */
.chalk-header { margin-bottom: 1.7rem; position: relative; z-index: 1; }
.chalk-progress-bg {
  background: rgba(255, 255, 255, 0.1);
  height: 5px;
  border-radius: 4px;
  overflow: hidden;
}
.chalk-progress-fill {
  background: linear-gradient(90deg, #F5C842, #D4AF37);
  height: 100%;
  width: 33.33%;
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(245, 200, 66, 0.5);
}

.chalk-question {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.chalk-options { display: flex; gap: 12px; justify-content: center; position: relative; z-index: 1; }
.chalk-options-col { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }

/* Boutons de choix : glass clair sur fond navy */
.btn-chalk {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 1.2rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.16,1,0.3,1), border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  width: 100%;
}
.btn-chalk:hover,
.btn-chalk:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(212, 175, 55, 0.3);
}
.btn-chalk:active { transform: scale(0.98); }

.chalk-options-col .btn-chalk {
  flex-direction: column;
  padding: 1rem;
}

/* Bouton mis en avant (ex : les deux matières) */
.highlight-chalk {
  border-color: rgba(212, 175, 55, 0.55);
  background: linear-gradient(135deg, rgba(245,200,66,0.16), rgba(212,175,55,0.05));
  color: #F5C842;
}
.highlight-chalk:hover {
  background: linear-gradient(135deg, rgba(245,200,66,0.24), rgba(212,175,55,0.08));
  border-color: #F5C842;
  color: #FFD700;
}

.chalk-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 2px;
  color: #F5C842;
  flex-shrink: 0;
}

.chalk-choice-img { height: 42px; width: auto; vertical-align: middle; margin-right: 8px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25)); }

/* Écran de réussite : phrase qui rassure (plus de score chiffré) */
.chalk-reassure {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(120deg, #F5C842 0%, #D4AF37 50%, #C99B22 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.chalk-result-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}
.chalk-result-text b { color: #F5C842; }

/* Bouton WhatsApp final */
.btn-chalk-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #F5C842 0%, #D4AF37 100%);
  color: #0c1b33;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  padding: 15px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 26px -8px rgba(212, 175, 55, 0.5);
  position: relative;
  z-index: 1;
}
.btn-chalk-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(212, 175, 55, 0.6);
}

.chalk-back {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 1.2rem;
  text-decoration: underline;
  width: 100%;
  text-align: center;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}
.chalk-back:hover { color: #ffffff; }

/* Lien discret "Autre blocage..." sous les 3 boutons de la question 2 */
.chalk-other-link {
  display: block;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.78rem;
  cursor: pointer;
  margin: 10px auto 0;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-align: center;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}
.chalk-other-link:hover { color: rgba(255, 255, 255, 0.75); }

/* Lien secondaire discret vers bilan.html, sous le CTA WhatsApp final */
.chalk-secondary-link {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245, 200, 66, 0.6);
  text-decoration: none;
  margin-top: 0.85rem;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}
.chalk-secondary-link:hover { color: #F5C842; }

@media (prefers-reduced-motion: reduce) {
  .btn-chalk, .btn-chalk-submit { transition: none; }
}

/* ============================================================
   BARRE PREMIUM NAVY/OR — MODALITÉ + NIVEAUX (1 seule ligne)
   ============================================================ */
.pio-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(8px, 2.5vw, 24px);
  width: fit-content;
  max-width: 100%;
  margin: 24px auto 0;
  padding: 10px clamp(14px, 4vw, 28px);
  background: linear-gradient(135deg, #0c1b33 0%, #15294a 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  box-shadow:
    0 14px 36px rgba(12, 27, 51, 0.28),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 22px 45px -8px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
}

.pio-bar::before {
  content: '';
  position: absolute;
  top: -60%; left: -10%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(212,175,55,0.16) 0%, transparent 70%);
  pointer-events: none;
}

.pio-item {
  display: flex;
  align-items: center;
  gap: clamp(5px, 1.6vw, 10px);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.pio-icon-chip {
  width: clamp(22px, 6vw, 34px);
  height: clamp(22px, 6vw, 34px);
  border-radius: 50%;
  background: linear-gradient(135deg, #F5C842 0%, #D4AF37 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.7rem, 2.6vw, 1rem);
  flex-shrink: 0;
  animation: pioChipPulse 2.8s ease-in-out infinite;
}
.pio-icon-chip-blue {
  background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
  animation-delay: 0.5s;
}

@keyframes pioChipPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,200,66,0.35); }
  50%      { box-shadow: 0 0 0 6px rgba(245,200,66,0); }
}

.pio-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}

.pio-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.46rem, 1.5vw, 0.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F5C842;
  opacity: 0.85;
  white-space: nowrap;
}

.pio-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(0.62rem, 2.4vw, 0.88rem);
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.pio-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.4), transparent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 380px) {
  .pio-bar { padding: 8px 12px; gap: 6px; }
  .pio-item { gap: 5px; }
  .pio-divider { display: none; }
}

@media (max-width: 340px) {
  .pio-value { font-size: 0.58rem; }
  .pio-label { font-size: 0.42rem; }
  .pio-icon-chip { width: 20px; height: 20px; font-size: 0.62rem; }
  .pio-bar { padding: 7px 10px; gap: 5px; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

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

/* ============================================================
   BOUTON WHATSAPP FLOTTANT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #25D366 0%, #1ebe5d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.15);
  z-index: 9998;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  animation: wa-pulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.18);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.35); }
  50%      { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0); }
}

/* Sur mobile : on remonte le bouton au-dessus de la tab-bar (65px + 20px) */
@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 100px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 27px; height: 27px; }
}

/* ============================================================
   --- PAGE METHODE ---
   Bloc autonome. Préfixe .pm- . Tilt 3D / Glass / Reveal blur /
   Chemin d'ingénieur (scroll) / Glow animé. 100% CSS+Vanilla.
   ============================================================ */

/* — Variable de progression alimentée par le JS — */
:root { --pm-scroll: 0; }

/* ---------- CHEMIN D'INGÉNIEUR (barre de scroll dynamique) ---------- */
.pm-rail { position: fixed; z-index: 150; left: 0; right: 0; top: 64px; height: 3px; background: transparent; pointer-events: none; }
.pm-rail-fill { position: absolute; left: 0; top: 0; height: 100%; width: calc(var(--pm-scroll) * 100%); background: linear-gradient(90deg, #F5C842, #D4AF37); box-shadow: 0 0 10px rgba(245,200,66,0.5); transition: width .08s linear; }

/* ---------- REVEAL (fade-up + blur-out) ---------- */
.pm [data-pm-reveal] { opacity: 0; transform: translateY(42px); filter: blur(14px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1), filter .9s ease; will-change: opacity, transform, filter; }
.pm [data-pm-reveal].in { opacity: 1; transform: none; filter: blur(0); }
.pm [data-pm-reveal][data-d="1"] { transition-delay: .09s; }
.pm [data-pm-reveal][data-d="2"] { transition-delay: .18s; }
.pm [data-pm-reveal][data-d="3"] { transition-delay: .27s; }

/* ---------- HERO IMMERSIF ---------- */
.pm-hero { position: relative; z-index: 2; min-height: 58svh; display: flex; align-items: center; padding: clamp(73px, 10.7vh, 113px) 0 clamp(34px, 5vh, 60px); overflow: hidden; }
.pm-hero-glow { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.pm-hero-glow span { position: absolute; border-radius: 50%; filter: blur(30px); }
.pm-hero-glow .g1 { width: clamp(320px, 50vw, 620px); height: clamp(320px, 50vw, 620px); top: -18%; right: -12%; background: radial-gradient(circle, rgba(245,200,66,0.22) 0%, transparent 65%); animation: pmDrift1 15s ease-in-out infinite; }
.pm-hero-glow .g2 { width: clamp(300px, 45vw, 560px); height: clamp(300px, 45vw, 560px); bottom: -22%; left: -14%; background: radial-gradient(circle, rgba(59,130,246,0.20) 0%, transparent 65%); animation: pmDrift2 19s ease-in-out infinite; }
@keyframes pmDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-34px,24px) scale(1.09); } }
@keyframes pmDrift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(28px,-22px) scale(1.11); } }

.pm-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: 'Space Grotesk', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #B8902F; background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.28); padding: 7px 15px; border-radius: 999px; margin-bottom: 1.8rem; }
.pm-eyebrow .pm-dot { width: 6px; height: 6px; border-radius: 50%; background: #F5C842; box-shadow: 0 0 8px rgba(245,200,66,0.8); }
.pm-title { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: clamp(2.5rem, 8vw, 4.6rem); line-height: 1.04; letter-spacing: -0.04em; color: #0c1b33; margin-bottom: 1.5rem; }
.pm-title .pm-gold { background: linear-gradient(120deg, #F5C842 0%, #D4AF37 50%, #C99B22 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pm-title .pm-strike { color: rgba(12,27,51,0.4); text-decoration: line-through; text-decoration-color: rgba(12,27,51,0.3); text-decoration-thickness: 2px; }

/* — Pastille « la méthode d'ingénieur » sous le H1 — */
.pm-method-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 500; color: var(--gray2); background: rgba(59,130,246,0.05); border: 1px solid rgba(59,130,246,0.14); border-radius: 999px; padding: 7px 16px 7px 12px; margin-bottom: 1.7rem; }
.pm-method-pill strong { color: #0c1b33; font-weight: 700; }
.pm-method-ico { font-size: 0.95rem; line-height: 1; }

.pm-sub { font-size: clamp(1.02rem, 1.7vw, 1.22rem); color: var(--gray2); line-height: 1.75; max-width: 50ch; margin-bottom: 2.1rem; }
.pm-sub strong { color: #0c1b33; font-weight: 600; }

/* — Barre de preuve — */
.pm-proof { display: flex; align-items: center; gap: 26px; margin-bottom: 2.1rem; flex-wrap: wrap; }
.pm-proof-item { display: flex; flex-direction: column; gap: 2px; }
.pm-proof-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.7rem; font-weight: 800; color: #0c1b33; line-height: 1; letter-spacing: -0.02em; }
.pm-proof-num small { font-size: 0.95rem; font-weight: 700; color: #C99B22; margin-left: 1px; }
.pm-proof-lbl { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gray3); }
.pm-proof-sep { width: 1px; height: 32px; background: linear-gradient(180deg, transparent, rgba(12,27,51,0.14), transparent); flex-shrink: 0; }

.pm-hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; }
.pm-link-secondary { display: inline-flex; align-items: center; gap: 7px; font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 600; color: #0c1b33; padding: 0.95rem 0.4rem; text-decoration: none; transition: gap .25s ease, color .25s ease; }
.pm-link-secondary span { display: inline-block; transition: transform .25s ease; }
.pm-link-secondary:hover { color: var(--blue); gap: 11px; }
.pm-link-secondary:hover span { transform: translateX(2px); }

.pm-reassurance { display: flex; align-items: center; gap: 7px; margin-top: 0.6rem; font-size: 0.78rem; color: var(--gray3); }
.pm-reassurance svg { width: 14px; height: 14px; stroke: #4ade80; flex-shrink: 0; }

.pm-scroll-hint { display: inline-flex; align-items: center; gap: 9px; margin-top: 2.2rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray3); }
.pm-scroll-hint .pm-mouse { width: 20px; height: 32px; border: 2px solid var(--gray3); border-radius: 12px; position: relative; }
.pm-scroll-hint .pm-mouse::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; border-radius: 3px; background: #D4AF37; animation: pmWheel 1.6s ease-in-out infinite; }
@keyframes pmWheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 10px); } }

@media (max-width: 520px) {
  .pm-proof { gap: 16px 22px; }
  .pm-proof-sep { display: none; }
}

/* ---------- FRAMEWORK — BENTO SUR BAND SOMBRE ---------- */
.pm-framework-sec { position: relative; z-index: 2; padding: clamp(30px, 6vh, 60px) 0; margin-top: -26px; }
.pm-framework { position: relative; background: linear-gradient(180deg, #0a1428 0%, #0c1b33 45%, #0a1730 100%); border-radius: clamp(24px, 4vw, 40px); padding: clamp(40px, 7vw, 80px) clamp(20px, 5vw, 56px); border: 1px solid rgba(212,175,55,0.16); box-shadow: 0 50px 100px -40px rgba(8,16,32,0.65), inset 0 1px 0 rgba(255,255,255,0.06); overflow: hidden; }
.pm-framework::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(120,170,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(120,170,255,0.045) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
.pm-framework::after { content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 70%; height: 60%; background: radial-gradient(ellipse, rgba(245,200,66,0.1) 0%, transparent 70%); pointer-events: none; }
.pm-fw-head { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.pm-fw-head .pm-kicker { display: inline-flex; align-items: center; gap: 9px; font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #F5C842; margin-bottom: 1rem; }
.pm-fw-head h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.025em; color: #fff; line-height: 1.08; margin-bottom: 0.85rem; }
.pm-fw-head h2 .pm-gold { background: linear-gradient(120deg, #F5C842 0%, #D4AF37 50%, #C99B22 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pm-fw-head p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: rgba(255,255,255,0.6); line-height: 1.7; }

.pm-stepper { position: relative; z-index: 1; }

.pm-stepper-nav { display: flex; gap: 4px; }
.pm-step { position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px 6px 16px; font-family: inherit; -webkit-tap-highlight-color: transparent; }
.pm-step-num { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; color: rgba(255,255,255,0.3); transition: color .3s ease; }
.pm-step-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em; color: rgba(255,255,255,0.35); white-space: nowrap; transition: color .3s ease; }
.pm-step::after { content: ''; position: absolute; bottom: 0; left: 14%; right: 14%; height: 2px; border-radius: 2px; background: linear-gradient(90deg, #F5C842, #D4AF37); transform: scaleX(0); transform-origin: center; transition: transform .35s cubic-bezier(.16,1,.3,1); }
.pm-step:hover .pm-step-num { color: rgba(255,255,255,0.55); }
.pm-step.is-active .pm-step-num, .pm-step.is-active .pm-step-label { color: #F5C842; }
.pm-step.is-active::after { transform: scaleX(1); }

.pm-step-rail { position: relative; height: 3px; border-radius: 3px; background: rgba(255,255,255,0.08); margin: 2px 0 clamp(2rem, 4vw, 2.8rem); overflow: hidden; }
.pm-step-rail-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0%; border-radius: 3px; background: linear-gradient(90deg, #F5C842, #D4AF37); box-shadow: 0 0 10px rgba(245,200,66,0.5); transition: width .45s cubic-bezier(.16,1,.3,1); }

.pm-step-panel { position: relative; display: grid; }
.pm-step-content { grid-area: 1 / 1; display: flex; flex-direction: column; align-items: flex-start; max-width: 64ch; opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .35s ease, transform .4s cubic-bezier(.16,1,.3,1); }
.pm-step-content.is-active { opacity: 1; transform: none; pointer-events: auto; }

.pm-card-icon { width: 52px; height: 52px; border-radius: 15px; background: linear-gradient(145deg, rgba(245,200,66,0.18), rgba(245,200,66,0.06)); border: 1px solid rgba(245,200,66,0.3); display: flex; align-items: center; justify-content: center; color: #F5C842; margin-bottom: 1.4rem; }
.pm-card-icon svg { width: 26px; height: 26px; }
.pm-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.pm-card-title small { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #B8902F; margin-bottom: 6px; }
.pm-card-desc { font-size: 0.92rem; color: rgba(255,255,255,0.62); line-height: 1.7; }

@media (max-width: 480px) {
  .pm-step:not(.is-active) .pm-step-label { display: none; }
  .pm-step { padding: 8px 4px 14px; }
}

/* ---------- AVANT / APRÈS — TOGGLE INTERACTIF ---------- */
.pm-compare { position: relative; z-index: 2; padding: clamp(20px, 3.2vh, 38px) 0 clamp(50px, 8vh, 95px); }
.pm-cmp-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 2.8rem); }
.pm-cmp-head h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.025em; color: #0c1b33; line-height: 1.08; margin-bottom: 0.8rem; }
.pm-cmp-head h2 em { font-style: normal; color: #C99B22; }
.pm-cmp-head p { color: var(--gray2); font-size: 1rem; line-height: 1.7; }

/* ---------- TECH — TÉLÉPHONE FLOTTANT ---------- */
.pm-tech { position: relative; z-index: 2; padding: clamp(10px, 1.8vh, 22px) 0 clamp(50px, 8vh, 95px) !important; margin-top: clamp(-24px, -4vw, -12px); overflow: hidden; }
.pm-tech-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 4rem); align-items: center; }
@media (min-width: 940px) { .pm-tech-grid { grid-template-columns: 0.95fr 1.05fr; } }
.pm-tech-copy h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.65rem, 4.6vw, 2.9rem); font-weight: 800; letter-spacing: -0.025em; color: #0c1b33; line-height: 1.2; margin-bottom: 0.55rem; }
.pm-tech-copy h2 .pm-gold { background: linear-gradient(120deg, #F5C842 0%, #D4AF37 50%, #C99B22 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pm-tech-copy > p { font-size: clamp(0.88rem, 1.4vw, 1.02rem); color: var(--gray2); line-height: 1.45; max-width: 42ch; margin-bottom: 1rem; }
.pm-feats { display: flex; flex-direction: column; gap: 0.6rem; }
.pm-feat { display: flex; gap: 12px; align-items: flex-start; }
.pm-feat .pm-fi { flex-shrink: 0; width: 32px; height: 32px; border-radius: 10px; background: #fff; border: 1px solid rgba(12,27,51,0.08); box-shadow: 0 4px 14px rgba(12,27,51,0.05); display: flex; align-items: center; justify-content: center; color: #0c1b33; }
.pm-feat .pm-fi svg { width: 15px; height: 15px; }
.pm-feat b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; color: #0c1b33; margin-bottom: 1px; line-height: 1.3; }
.pm-feat span { font-size: 0.78rem; color: var(--gray2); line-height: 1.4; }
.pm-phone-stage { display: flex; justify-content: center; position: relative; }
.pm-phone-float { animation: pmFloat 5.5s ease-in-out infinite; }
@keyframes pmFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* ---------- RESPONSIVE + REDUCED MOTION ---------- */
/* Rétablit l'espace sous la navbar fixe (bat la règle globale section{padding:40px!important}) */
@media (max-width: 767px) {
  .pm-hero { padding-top: 80px !important; padding-bottom: 50px !important; min-height: 55svh; }
  .pm-compare { padding-top: 20px !important; }
  .pm-tech { padding-top: 33px !important; }
}
@media (prefers-reduced-motion: reduce) {
  .pm [data-pm-reveal] { transition: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
  .pm-hero-glow span, .pm-phone-float, .pm-scroll-hint .pm-mouse::before { animation: none !important; }
  .pm-step::after, .pm-step-rail-fill, .pm-step-content { transition: none !important; }
}

/* ---------- COMPARATIF — TOGGLE SANS / AVEC OPTISCIENCES ---------- */
.pm-sw { max-width: 660px; margin: 0 auto; }

.pm-sw-toggle { position: relative; display: grid; grid-template-columns: 1fr 1fr; padding: 6px; max-width: 440px; margin: 0 auto clamp(1.8rem, 4.5vw, 2.5rem); background: #fff; border: 1px solid rgba(12,27,51,0.08); border-radius: 999px; box-shadow: 0 14px 34px -10px rgba(12,27,51,0.16), inset 0 1px 0 rgba(255,255,255,0.6); }
.pm-sw-pill { position: absolute; top: 6px; bottom: 6px; left: 6px; width: calc(50% - 6px); border-radius: 999px; background: #0c1b33; z-index: 0; box-shadow: 0 6px 16px rgba(12,27,51,0.35), inset 0 1px 0 rgba(255,255,255,0.08); transition: transform .5s cubic-bezier(.16,1,.3,1), background .5s ease, box-shadow .5s ease; }
.pm-sw-toggle.opti-active .pm-sw-pill { transform: translateX(100%); background: linear-gradient(135deg, #F5C842, #D4AF37); box-shadow: 0 6px 18px rgba(212,175,55,0.5), inset 0 1px 0 rgba(255,255,255,0.4); }
.pm-sw-btn { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; min-height: 46px; background: none; border: none; padding: 13px 10px; font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 600; color: var(--gray2); cursor: pointer; border-radius: 999px; transition: color .35s ease, transform .25s ease; -webkit-tap-highlight-color: transparent; white-space: nowrap; }
.pm-sw-btn:active { transform: scale(0.97); }
.pm-sw-btn.active { color: #fff; }
.pm-sw-toggle.opti-active .pm-sw-btn.active { color: #0c1b33; }

.pm-sw-stage { position: relative; display: grid; }
.pm-sw-card { grid-area: 1 / 1; align-self: start; border-radius: 28px; padding: clamp(1.8rem, 4.2vw, 2.7rem); position: relative; overflow: hidden; opacity: 0; transform: translateY(14px) scale(0.985); filter: blur(4px); pointer-events: none; transition: opacity .45s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1), filter .45s ease; }
.pm-sw-card.is-active { opacity: 1; transform: none; filter: none; pointer-events: auto; }
.pm-sw-card.classic { background: #fff; border: 1px solid rgba(0,0,0,0.07); box-shadow: 0 24px 60px -32px rgba(12,27,51,0.3), 0 2px 10px rgba(12,27,51,0.04); }
.pm-sw-card.opti { background: linear-gradient(160deg, #0c1b33 0%, #15294a 100%); border: 1px solid rgba(212,175,55,0.3); box-shadow: 0 44px 90px -34px rgba(8,16,32,0.65), 0 0 60px -10px rgba(212,175,55,0.16), inset 0 1px 0 rgba(255,255,255,0.06); }
.pm-sw-card.opti::before { content: ''; position: absolute; top: -40%; right: -25%; width: 65%; height: 100%; background: radial-gradient(circle, rgba(245,200,66,0.16), transparent 70%); pointer-events: none; }
.pm-sw-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.pm-sw-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; }
.pm-sw-card.classic .pm-sw-name { color: #374151; }
.pm-sw-card.opti .pm-sw-name { color: #fff; }
.pm-sw-mood { display: inline-flex; align-items: center; font-size: 0.68rem; font-weight: 700; padding: 6px 13px; border-radius: 999px; letter-spacing: 0.04em; white-space: nowrap; }
.pm-sw-mood.classic { background: rgba(239,68,68,0.08); color: #b91c1c; }
.pm-sw-mood.opti { background: rgba(245,200,66,0.14); color: #F5C842; }
.pm-sw-list { position: relative; z-index: 1; display: flex; flex-direction: column; }
.pm-sw-row { display: flex; align-items: flex-start; gap: 14px; padding: 1.05rem 0; }
.pm-sw-row + .pm-sw-row { border-top: 1px solid rgba(0,0,0,0.06); }
.pm-sw-card.opti .pm-sw-row + .pm-sw-row { border-top-color: rgba(255,255,255,0.08); }
.pm-sw-ic { flex-shrink: 0; width: 26px; height: 26px; margin-top: 1px; }
.pm-sw-ic svg { width: 100%; height: 100%; }
.pm-sw-ic.minus { color: #cbd0d8; }
.pm-sw-ic.check { color: #F5C842; }
.pm-sw-row b { display: block; font-size: 0.94rem; font-weight: 700; margin-bottom: 2px; }
.pm-sw-card.classic .pm-sw-row b { color: #374151; }
.pm-sw-card.opti .pm-sw-row b { color: #fff; }
.pm-sw-row span { font-size: 0.84rem; line-height: 1.55; display: block; }
.pm-sw-card.classic .pm-sw-row span { color: #9CA3AF; }
.pm-sw-card.opti .pm-sw-row span { color: rgba(255,255,255,0.62); }

/* Apparition en cascade des points + pop des icônes, rejoués à chaque bascule */
.pm-sw-card.is-active .pm-sw-row { animation: pmSwRowIn .5s cubic-bezier(.16,1,.3,1) backwards; }
.pm-sw-card.is-active .pm-sw-row:nth-child(1) { animation-delay: .06s; }
.pm-sw-card.is-active .pm-sw-row:nth-child(2) { animation-delay: .14s; }
.pm-sw-card.is-active .pm-sw-row:nth-child(3) { animation-delay: .22s; }
@keyframes pmSwRowIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.pm-sw-card.is-active .pm-sw-row:nth-child(1) .pm-sw-ic { animation: pmSwIcIn .5s cubic-bezier(.34,1.56,.64,1) .12s backwards; }
.pm-sw-card.is-active .pm-sw-row:nth-child(2) .pm-sw-ic { animation: pmSwIcIn .5s cubic-bezier(.34,1.56,.64,1) .2s backwards; }
.pm-sw-card.is-active .pm-sw-row:nth-child(3) .pm-sw-ic { animation: pmSwIcIn .5s cubic-bezier(.34,1.56,.64,1) .28s backwards; }
@keyframes pmSwIcIn { from { opacity: 0; transform: scale(0.4) rotate(-14deg); } to { opacity: 1; transform: none; } }

/* Ligne de résultat — synthèse forte en bas de chaque carte */
.pm-sw-result { display: flex; align-items: center; gap: 12px; margin-top: 1.4rem; padding: 13px 18px; border-radius: 16px; position: relative; z-index: 1; flex-wrap: wrap; }
.pm-sw-result.classic { background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.16); }
.pm-sw-result.opti { background: linear-gradient(135deg, rgba(245,200,66,0.14), rgba(212,175,55,0.06)); border: 1px solid rgba(212,175,55,0.35); box-shadow: 0 0 26px -6px rgba(212,175,55,0.25); }
.pm-sw-result-label { flex-shrink: 0; font-family: 'Space Grotesk', sans-serif; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.pm-sw-result.classic .pm-sw-result-label { background: rgba(239,68,68,0.12); color: #b91c1c; }
.pm-sw-result.opti .pm-sw-result-label { background: rgba(245,200,66,0.2); color: #F5C842; }
.pm-sw-result-text { font-size: 0.86rem; font-weight: 600; line-height: 1.4; }
.pm-sw-result.classic .pm-sw-result-text { color: #7f1d1d; }
.pm-sw-result.opti .pm-sw-result-text { color: #fff; }
.pm-sw-card.is-active .pm-sw-result { animation: pmSwRowIn .5s cubic-bezier(.16,1,.3,1) .32s backwards; }

@media (max-width: 480px) {
  .pm-sw-result { flex-direction: column; align-items: flex-start; gap: 7px; }
  .pm-sw-btn { font-size: 0.78rem; padding: 13px 4px; letter-spacing: -0.01em; }
}
@media (prefers-reduced-motion: reduce) {
  .pm-sw-card { transition: opacity .2s linear !important; transform: none !important; filter: none !important; }
  .pm-sw-row, .pm-sw-ic, .pm-sw-result { animation: none !important; }
  .pm-sw-pill { transition: none !important; }
}

/* ---------- CTA - COMPTE À REBOURS (raffiné, sans boîtes) ---------- */
.pm .cta-seats-badge, .home .cta-seats-badge { display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, rgba(245,200,66,0.16), rgba(212,175,55,0.05)); border: 1px solid rgba(245,200,66,0.32); border-radius: 999px; padding: 7px 16px; margin-bottom: 12px; color: #F5C842; font-size: 0.78rem; font-weight: 600; }
.cta-seats-badge svg { width: 15px; height: 15px; flex-shrink: 0; }
.cta-seats-badge b { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 0.95rem; color: #fff; }
.pm .cta-urgency-pill, .home .cta-urgency-pill { display: inline-flex; align-items: center; gap: 13px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: 16px; padding: 10px 18px 11px; margin-bottom: 1.4rem; text-transform: none; letter-spacing: normal; color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.pm .cta-urgency-pill .pulse-red, .home .cta-urgency-pill .pulse-red { flex-shrink: 0; }
.pm-close-copy { font-size: 0.86rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.pm-close-date { font-family: 'Space Grotesk', sans-serif; font-weight: 800; color: #F5C842; text-shadow: 0 0 18px rgba(245,200,66,0.35); }

/* ============================================================
   --- PAGE BILAN (lead capture optimisé conversion) ---
   ============================================================ */
.bil-page { position: relative; z-index: 2; min-height: 100svh; display: flex; flex-direction: column; }
.bil-top { display: flex; align-items: center; justify-content: space-between; padding: 16px clamp(16px, 5vw, 40px); }
.bil-logo img { height: 30px; width: auto; display: block; }
.bil-back { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--gray2); text-decoration: none; transition: color .2s; }
.bil-back:hover { color: var(--blue); }
.bil-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: clamp(8px, 2vh, 24px) 16px clamp(40px, 8vh, 70px); }
.bil-card { width: 100%; max-width: 540px; background: rgba(255,255,255,0.78); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,0.85); border-radius: 28px; box-shadow: 0 40px 90px -42px rgba(12,27,51,0.38), 0 4px 16px rgba(12,27,51,0.06); padding: clamp(1.6rem, 5vw, 2.6rem); position: relative; overflow: hidden; }
.bil-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #F5C842, #D4AF37); }

.bil-head { text-align: center; margin-bottom: 1.4rem; }
.bil-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-family: 'Space Grotesk', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #B8902F; margin-bottom: 0.7rem; }
.bil-eyebrow .bil-dot { width: 6px; height: 6px; border-radius: 50%; background: #F5C842; box-shadow: 0 0 8px rgba(245,200,66,0.8); }
.bil-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.4rem, 4.5vw, 1.9rem); font-weight: 800; color: #0c1b33; letter-spacing: -0.02em; line-height: 1.15; }
.bil-sub { font-size: 0.9rem; color: var(--gray2); line-height: 1.5; margin-top: 0.5rem; }

.bil-progress { height: 5px; border-radius: 10px; background: rgba(12,27,51,0.07); overflow: hidden; margin-bottom: 1.6rem; }
.bil-progress-fill { height: 100%; width: 16%; border-radius: 10px; background: linear-gradient(90deg, #F5C842, #D4AF37); transition: width .45s cubic-bezier(.16,1,.3,1); }

.bil-step { display: none; }
.bil-step.active { display: block; animation: bilIn .4s cubic-bezier(.16,1,.3,1); }
@keyframes bilIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.bil-q { font-family: 'Space Grotesk', sans-serif; font-size: 1.18rem; font-weight: 700; color: #0c1b33; text-align: center; margin-bottom: 1.2rem; line-height: 1.25; }

.bil-options { display: grid; gap: 11px; }
.bil-options.two { grid-template-columns: 1fr 1fr; }
.bil-opt { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; padding: 16px 16px; border: 1.5px solid rgba(12,27,51,0.1); border-radius: 16px; background: #fff; cursor: pointer; transition: transform .22s cubic-bezier(.16,1,.3,1), border-color .22s ease, box-shadow .22s ease, background .22s ease; font-weight: 600; color: #0c1b33; font-size: 0.95rem; -webkit-tap-highlight-color: transparent; }
.bil-opt:hover { border-color: #D4AF37; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,175,55,0.12); }
.bil-opt input { position: absolute; opacity: 0; pointer-events: none; }
.bil-opt.selected { border-color: #D4AF37; background: linear-gradient(180deg, rgba(245,200,66,0.12), rgba(245,200,66,0.04)); box-shadow: 0 8px 22px rgba(212,175,55,0.2); }

.bil-fields { display: flex; flex-direction: column; gap: 13px; }
.bil-field label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--gray2); margin-bottom: 5px; }
.bil-field label .opt { color: var(--gray3); font-weight: 500; }
.bil-input { width: 100%; padding: 13px 15px; border: 1.5px solid rgba(12,27,51,0.12); border-radius: 13px; font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #0c1b33; background: #fff; transition: border-color .2s, box-shadow .2s; }
.bil-input:focus { outline: none; border-color: #D4AF37; box-shadow: 0 0 0 3px rgba(245,200,66,0.18); }
.bil-input::placeholder { color: #b5bdc9; }
.bil-consent { display: flex; align-items: flex-start; gap: 9px; font-size: 0.74rem; color: var(--gray2); line-height: 1.45; margin-top: 4px; }
.bil-consent input { margin-top: 2px; accent-color: #D4AF37; flex-shrink: 0; }

.bil-actions { display: flex; align-items: center; gap: 10px; margin-top: 1.4rem; }
.bil-back-btn { background: none; border: none; color: var(--gray3); font-size: 0.85rem; font-weight: 600; cursor: pointer; padding: 8px 4px; text-decoration: underline; -webkit-tap-highlight-color: transparent; }
.bil-submit { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, #F5C842 0%, #D4AF37 100%); color: #0c1b33; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1rem; border: none; border-radius: 14px; padding: 15px 20px; cursor: pointer; box-shadow: 0 8px 22px rgba(212,175,55,0.35); transition: transform .2s, box-shadow .2s; -webkit-tap-highlight-color: transparent; }
.bil-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212,175,55,0.45); }
.bil-submit:disabled { opacity: 0.6; cursor: default; transform: none; }

.bil-or { display: flex; align-items: center; gap: 12px; margin: 1.2rem 0 0.9rem; color: var(--gray3); font-size: 0.72rem; font-weight: 600; }
.bil-or::before, .bil-or::after { content: ''; flex: 1; height: 1px; background: rgba(12,27,51,0.08); }
.bil-wa { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; padding: 13px; border-radius: 14px; background: #fff; border: 1.5px solid rgba(37,211,102,0.45); color: #0c8a3e; font-weight: 700; font-size: 0.92rem; text-decoration: none; transition: background .2s, border-color .2s; -webkit-tap-highlight-color: transparent; }
.bil-wa:hover { background: rgba(37,211,102,0.07); border-color: #25D366; }
.bil-wa svg { width: 20px; height: 20px; fill: #25D366; }

.bil-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(12,27,51,0.06); }
.bil-trust-item { display: inline-flex; align-items: center; gap: 7px; font-size: 0.74rem; font-weight: 600; color: #5a6b82; background: rgba(12,27,51,0.03); border: 1px solid rgba(12,27,51,0.07); padding: 7px 13px; border-radius: 999px; }
.bil-trust-item svg { width: 13px; height: 13px; color: #D4AF37; flex-shrink: 0; }
.bil-trust-item b { color: #0c1b33; font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.bil-reassure { text-align: center; font-size: 0.74rem; color: var(--gray3); margin-top: 0.9rem; }

.bil-success { display: none; text-align: center; padding: 0.5rem 0; }
.bil-success.show { display: block; animation: bilIn .5s cubic-bezier(.16,1,.3,1); }
.bil-success-ic { width: 72px; height: 72px; margin: 0 auto 1.1rem; border-radius: 50%; background: linear-gradient(135deg, #F5C842, #D4AF37); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(212,175,55,0.4); }
.bil-success-ic svg { width: 34px; height: 34px; }
.bil-success h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; color: #0c1b33; margin-bottom: 0.5rem; }
.bil-success p { font-size: 0.92rem; color: var(--gray2); line-height: 1.6; margin-bottom: 1.3rem; }
.bil-err-note { display: none; font-size: 0.8rem; color: #b91c1c; background: rgba(239,68,68,0.07); border-radius: 10px; padding: 10px 12px; margin-bottom: 1rem; }
.bil-foot { text-align: center; font-size: 0.72rem; color: var(--gray3); padding: 1.2rem 1rem 1.6rem; }

@media (max-width: 380px) { .bil-options.two { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .bil-step.active, .bil-success.show { animation: none; } }

/* ---------- FAQ PREMIUM (page méthode) ---------- */
.pm-faq { position: relative; z-index: 2; padding: clamp(8px, 1.5vh, 18px) 0 clamp(50px, 8vh, 95px) !important; margin-top: clamp(-28px, -5vw, -14px); }
.pm-faq-head { text-align: center; max-width: 620px; margin: 0 auto clamp(2rem, 5vw, 3rem); }
.pm-faq-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'Space Grotesk', sans-serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #B8902F; margin-bottom: 0.9rem; }
.pm-faq-eyebrow .pm-dot { width: 6px; height: 6px; border-radius: 50%; background: #F5C842; box-shadow: 0 0 8px rgba(245,200,66,0.8); }
.pm-faq-head h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.025em; color: #0c1b33; line-height: 1.08; margin-bottom: 0.7rem; }
.pm-faq-head h2 em { font-style: normal; color: #C99B22; }
.pm-faq-head p { color: var(--gray2); font-size: 1rem; line-height: 1.6; }

.pm-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.pm-faq-item { background: rgba(255,255,255,0.6); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(12,27,51,0.08); border-radius: 18px; overflow: hidden; transition: border-color .3s ease, box-shadow .3s ease, background .3s ease; }
.pm-faq-item.open { border-color: rgba(212,175,55,0.45); background: #fff; box-shadow: 0 18px 44px -22px rgba(12,27,51,0.18), 0 0 0 1px rgba(212,175,55,0.12); }
.pm-faq-q { width: 100%; display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: none; border: none; cursor: pointer; text-align: left; -webkit-tap-highlight-color: transparent; }
.pm-faq-num { font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 800; color: #C99B22; flex-shrink: 0; min-width: 1.4em; }
.pm-faq-qt { flex: 1; font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; color: #0c1b33; line-height: 1.3; }
.pm-faq-chev { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: rgba(12,27,51,0.05); display: flex; align-items: center; justify-content: center; color: #0c1b33; transition: transform .4s cubic-bezier(.16,1,.3,1), background .3s ease, color .3s ease; }
.pm-faq-chev svg { width: 15px; height: 15px; }
.pm-faq-item.open .pm-faq-chev { transform: rotate(180deg); background: linear-gradient(135deg, #F5C842, #D4AF37); }
.pm-faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s cubic-bezier(.16,1,.3,1); }
.pm-faq-item.open .pm-faq-a { grid-template-rows: 1fr; }
.pm-faq-a-inner { overflow: hidden; min-height: 0; }
.pm-faq-a-inner p { padding: 0 20px 20px 48px; margin: 0; color: var(--gray2); font-size: 0.92rem; line-height: 1.7; }

.pm-faq-cta { max-width: 760px; margin: clamp(1.8rem, 4vw, 2.5rem) auto 0; background: linear-gradient(160deg, #0c1b33, #15294a); border: 1px solid rgba(212,175,55,0.25); border-radius: 22px; padding: clamp(1.6rem, 4vw, 2.2rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; position: relative; overflow: hidden; }
.pm-faq-cta::before { content: ''; position: absolute; top: -40%; right: -15%; width: 50%; height: 100%; background: radial-gradient(circle, rgba(245,200,66,0.14), transparent 70%); pointer-events: none; }
.pm-faq-cta-txt { position: relative; z-index: 1; }
.pm-faq-cta-txt b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; color: #fff; margin-bottom: 3px; }
.pm-faq-cta-txt span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.pm-faq-cta-btns { position: relative; z-index: 1; display: flex; gap: 10px; flex-wrap: wrap; }
.pm-faq-cta-gold { display: inline-flex; align-items: center; gap: 7px; background: linear-gradient(135deg, #F5C842, #D4AF37); color: #0c1b33; font-weight: 800; font-size: 0.9rem; padding: 12px 18px; border-radius: 12px; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 6px 18px rgba(212,175,55,0.35); }
.pm-faq-cta-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212,175,55,0.45); }
.pm-faq-cta-wa { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-weight: 600; font-size: 0.9rem; padding: 12px 18px; border-radius: 12px; text-decoration: none; transition: background .2s; }
.pm-faq-cta-wa:hover { background: rgba(255,255,255,0.16); }
@media (max-width: 560px) { .pm-faq-cta { flex-direction: column; align-items: flex-start; } .pm-faq-cta-btns { width: 100%; } .pm-faq-cta-gold, .pm-faq-cta-wa { flex: 1; justify-content: center; } }
@media (prefers-reduced-motion: reduce) { .pm-faq-a, .pm-faq-chev, .pm-faq-item { transition: none; } }

/* ---------- SOS MATHS (dans le mockup téléphone) ---------- */
.ps-sos { display: flex; align-items: center; gap: 9px; margin-top: 10px; padding: 9px 11px; border-radius: 11px; background: linear-gradient(135deg, rgba(245,200,66,0.18), rgba(245,200,66,0.05)); border: 1px solid rgba(212,175,55,0.4); text-decoration: none; }
.ps-sos-ic { width: 27px; height: 27px; border-radius: 8px; background: linear-gradient(135deg, #F5C842, #D4AF37); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 3px 8px rgba(212,175,55,0.3); }
.ps-sos-ic svg { width: 15px; height: 15px; }
.ps-sos-tx { display: flex; flex-direction: column; line-height: 1.15; }
.ps-sos-tx b { font-family: 'Space Grotesk', sans-serif; font-size: 0.66rem; font-weight: 800; color: #0c1b33; letter-spacing: 0.01em; }
.ps-sos-tx small { font-size: 0.54rem; color: var(--gray3); margin-top: 1px; }
.ps-sos-live { margin-left: auto; display: inline-flex; align-items: center; gap: 4px; font-size: 0.5rem; font-weight: 800; letter-spacing: 0.06em; color: #16a34a; flex-shrink: 0; }
.ps-sos-live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); animation: pmSosPulse 1.8s ease-in-out infinite; }
@keyframes pmSosPulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); } 70% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
@media (prefers-reduced-motion: reduce) { .ps-sos-live::before { animation: none; } }

/* ---------- PUCES TECHNO — PASTILLES 3D COLORÉES ---------- */
.pm-fi.pm-fi-3d { position: relative; width: 48px; height: 48px; border-radius: 15px; border: none; color: #fff; overflow: hidden; box-shadow: 0 10px 20px -7px rgba(12,27,51,0.5), inset 0 1.5px 1px rgba(255,255,255,0.55), inset 0 -4px 7px rgba(0,0,0,0.18); transition: transform .25s cubic-bezier(.16,1,.3,1); }
.pm-feat:hover .pm-fi.pm-fi-3d { transform: translateY(-3px) scale(1.04); }
.pm-fi.pm-fi-3d::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 52%; background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0)); border-radius: 15px 15px 50% 50%; pointer-events: none; }
.pm-fi.pm-fi-3d svg { position: relative; z-index: 1; width: 22px; height: 22px; filter: drop-shadow(0 1px 1.5px rgba(0,0,0,0.28)); }
.pm-feat .pm-fi.pm-fi-blue { background: linear-gradient(150deg, #6BB3FF 0%, #2563EB 100%); }
.pm-feat .pm-fi.pm-fi-violet { background: linear-gradient(150deg, #B79BFC 0%, #7C3AED 100%); }
.pm-feat .pm-fi.pm-fi-green { background: linear-gradient(150deg, #4BE3A8 0%, #059669 100%); }
.pm-feat .pm-fi.pm-fi-gold { background: linear-gradient(150deg, #FBE08A 0%, #D4AF37 100%); }
@media (prefers-reduced-motion: reduce) { .pm-feat:hover .pm-fi.pm-fi-3d { transform: none; } }

/* ============================================================
   --- PAGE TARIFS ---
   ============================================================ */
.tar-hero { padding-bottom: clamp(6px, 1.2vh, 14px) !important; }
.tar-hero .pm-sub { margin-bottom: 0.7rem; }
.tar-sec { position: relative; z-index: 2; padding: clamp(6px, 1vh, 12px) 0 clamp(14px, 2.5vh, 26px) !important; }
.tar-cta-sec { padding-top: clamp(10px, 2vh, 22px) !important; }
.tar-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 880px; margin: 0 auto; }
@media (min-width: 820px) { .tar-grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.tar-card { position: relative; border-radius: 26px; padding: clamp(1.7rem, 4vw, 2.4rem); display: flex; flex-direction: column; overflow: hidden; }
.tar-card.light { background: rgba(255,255,255,0.72); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid rgba(12,27,51,0.08); box-shadow: 0 24px 60px -34px rgba(12,27,51,0.3); }
.tar-card.dark { background: linear-gradient(160deg, #0c1b33 0%, #15294a 100%); border: 1px solid rgba(212,175,55,0.3); box-shadow: 0 40px 80px -34px rgba(8,16,32,0.6); }
.tar-card.dark::before { content: ''; position: absolute; top: -35%; right: -25%; width: 65%; height: 90%; background: radial-gradient(circle, rgba(245,200,66,0.14), transparent 70%); pointer-events: none; }
.tar-ribbon { position: absolute; top: 16px; right: 16px; z-index: 2; font-family: 'Space Grotesk', sans-serif; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: #0c1b33; background: linear-gradient(135deg, #F5C842, #D4AF37); padding: 6px 12px; border-radius: 999px; box-shadow: 0 6px 16px rgba(212,175,55,0.4); }
.tar-level { display: inline-flex; align-items: center; gap: 8px; font-family: 'Space Grotesk', sans-serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; margin-bottom: 1rem; width: fit-content; }
.tar-card.light .tar-level { background: rgba(59,130,246,0.08); color: #2563EB; }
.tar-card.dark .tar-level { background: rgba(245,200,66,0.14); color: #F5C842; border: 1px solid rgba(245,200,66,0.3); }
.tar-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 800; line-height: 1.2; margin-bottom: 0.3rem; }
.tar-card.light .tar-name { color: #0c1b33; }
.tar-card.dark .tar-name { color: #fff; }
.tar-tagline { font-size: 0.88rem; line-height: 1.45; margin-bottom: 1.3rem; }
.tar-card.light .tar-tagline { color: var(--gray2); }
.tar-card.dark .tar-tagline { color: rgba(255,255,255,0.6); }
.tar-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 1.4rem; }
.tar-price b { font-family: 'Space Grotesk', sans-serif; font-size: 3.2rem; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.tar-card.light .tar-price b { color: #0c1b33; }
.tar-card.dark .tar-price b { background: linear-gradient(120deg, #F5C842, #D4AF37); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tar-cur { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 800; }
.tar-card.light .tar-cur { color: #0c1b33; }
.tar-card.dark .tar-cur { color: #F5C842; }
.tar-unit { font-size: 0.95rem; font-weight: 600; }
.tar-card.light .tar-unit { color: var(--gray3); }
.tar-card.dark .tar-unit { color: rgba(255,255,255,0.5); }
.tar-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 1.6rem; flex: 1; }
.tar-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.9rem; line-height: 1.45; }
.tar-card.light .tar-list li { color: var(--gray2); }
.tar-card.dark .tar-list li { color: rgba(255,255,255,0.78); }
.tar-list li strong { font-weight: 700; }
.tar-card.light .tar-list li strong { color: #0c1b33; }
.tar-card.dark .tar-list li strong { color: #fff; }
.tar-chk { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; color: #C99B22; }
.tar-card.dark .tar-chk { color: #F5C842; }
.tar-cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 18px; border-radius: 14px; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.95rem; text-decoration: none; transition: transform .2s, box-shadow .2s; -webkit-tap-highlight-color: transparent; }
.tar-card.light .tar-cta { background: #0c1b33; color: #fff; }
.tar-card.light .tar-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(12,27,51,0.25); }
.tar-card.dark .tar-cta { background: linear-gradient(135deg, #F5C842, #D4AF37); color: #0c1b33; box-shadow: 0 8px 22px rgba(212,175,55,0.35); }
.tar-card.dark .tar-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212,175,55,0.45); }
.tar-note { text-align: center; font-size: 0.74rem; margin-top: 10px; }
.tar-card.light .tar-note { color: var(--gray3); }
.tar-card.dark .tar-note { color: rgba(255,255,255,0.45); }
.tar-reassure { max-width: 880px; margin: 1.7rem auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; }
.tar-reassure span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 600; color: var(--gray2); }
.tar-reassure svg { width: 16px; height: 16px; color: #16a34a; flex-shrink: 0; }

/* ============================================================
   --- BOUTON FLOTTANT CONTACT (FAB speed-dial WhatsApp + Appel) ---
   ============================================================ */
.fab { position: fixed; right: 24px; bottom: 28px; z-index: 9998; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
@media (max-width: 767px) { .fab { right: 16px; bottom: 100px; } }
.fab-main { position: relative; width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer; background: linear-gradient(145deg, #25D366, #1ebe5d); box-shadow: 0 10px 26px rgba(37,211,102,0.5), inset 0 1px 0 rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent; transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease; animation: fabPulse 3.2s ease-in-out infinite; }
.fab-main:hover { transform: scale(1.06); }
.fab.open .fab-main { animation: none; }
@keyframes fabPulse { 0% { box-shadow: 0 10px 26px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.45); } 70% { box-shadow: 0 10px 26px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); } 100% { box-shadow: 0 10px 26px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0); } }
.fab-main-ic { position: absolute; display: flex; transition: opacity .3s ease, transform .35s cubic-bezier(.16,1,.3,1); }
.fab-main-ic svg { width: 24px; height: 24px; }
.fab-ic-close { opacity: 0; transform: rotate(-90deg) scale(.5); }
.fab.open .fab-ic-chat { opacity: 0; transform: rotate(90deg) scale(.5); }
.fab.open .fab-ic-close { opacity: 1; transform: rotate(0) scale(1); }
.fab-action { display: flex; align-items: center; gap: 10px; text-decoration: none; opacity: 0; transform: translateY(16px) scale(.8); pointer-events: none; transform-origin: bottom right; transition: opacity .3s ease, transform .4s cubic-bezier(.16,1,.3,1); }
.fab.open .fab-action { opacity: 1; transform: none; pointer-events: auto; }
.fab.open .fab-tel { transition-delay: .05s; }
.fab.open .fab-wa { transition-delay: .11s; }
.fab-label { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700; color: #0c1b33; background: #fff; padding: 7px 13px; border-radius: 999px; box-shadow: 0 4px 14px rgba(12,27,51,0.16); white-space: nowrap; }
.fab-ic { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(12,27,51,0.22); flex-shrink: 0; }
.fab-ic svg { width: 24px; height: 24px; }
.fab-wa .fab-ic { background: linear-gradient(145deg, #25D366, #1ebe5d); }
.fab-wa .fab-ic svg { fill: #fff; }
.fab-tel .fab-ic { background: linear-gradient(145deg, #F5C842, #D4AF37); }
@media (prefers-reduced-motion: reduce) { .fab-main { animation: none; } .fab-action, .fab-main-ic { transition: none; } }

/* ---------- PAGE BILAN — PARCOURS + ANIMATIONS ---------- */
/* Bandeau "comment ça se passe" (3 étapes) */
.bil-steps3 { display: flex; align-items: center; justify-content: center; gap: 9px; flex-wrap: nowrap; margin: 1rem 0 0; }
.bil-s3 { display: flex; align-items: center; gap: 6px; }
.bil-s3-n { width: 19px; height: 19px; border-radius: 50%; background: linear-gradient(135deg, #F5C842, #D4AF37); color: #0c1b33; font-family: 'Space Grotesk', sans-serif; font-size: 0.66rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 6px rgba(212,175,55,0.3); }
.bil-s3-t { font-size: 0.72rem; font-weight: 600; color: var(--gray2); white-space: nowrap; }
.bil-s3-arrow { color: var(--gray3); font-size: 0.8rem; flex-shrink: 0; }
@media (max-width: 400px) { .bil-s3-t { font-size: 0.64rem; } .bil-steps3 { gap: 7px; } .bil-s3 { gap: 5px; } }

/* Apparition en cascade des options à chaque étape */
.bil-step.active .bil-opt { animation: bilOptIn .5s cubic-bezier(.16,1,.3,1) both; }
.bil-step.active .bil-opt:nth-child(2) { animation-delay: .06s; }
.bil-step.active .bil-opt:nth-child(3) { animation-delay: .12s; }
.bil-step.active .bil-fields { animation: bilOptIn .5s cubic-bezier(.16,1,.3,1) both; }
@keyframes bilOptIn { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: none; } }

/* Badge coche animé sur l'option choisie */
.bil-opt::after { content: '✓'; position: absolute; top: 8px; right: 9px; width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, #F5C842, #D4AF37); color: #0c1b33; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(.2) rotate(-25deg); transition: opacity .2s ease, transform .45s cubic-bezier(.34,1.56,.64,1); box-shadow: 0 3px 10px rgba(212,175,55,0.4); pointer-events: none; }
.bil-opt.selected::after { opacity: 1; transform: scale(1) rotate(0); }
.bil-opt:active { transform: scale(.97); }

/* Focus des champs */
.bil-field:focus-within label { color: #C99B22; }
.bil-input { transition: border-color .25s ease, box-shadow .25s ease, transform .2s ease; }
.bil-input:focus { transform: translateY(-1px); }

@media (prefers-reduced-motion: reduce) {
  .bil-step.active .bil-opt, .bil-step.active .bil-fields { animation: none; }
  .bil-opt::after { transition: opacity .2s ease; }
  .bil-input:focus, .bil-opt:active { transform: none; }
}

/* --- TITRES DE SECTION HARMONISÉS (petites étiquettes, comme les stats/avis) --- */
.sec-eyebrow{
  font-family:'Space Grotesk',sans-serif;
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:0.08em;
  color:#5784BA;
  text-transform:uppercase;
  line-height:1.45;
  margin:0 0 10px;
  text-align:center;
  animation:none;
}
.sec-eyebrow br{display:none;}

/* ============================================================
   REFONTE ACCUEIL — titres harmonisés, bleu éclairci, séance, infos hero
   ============================================================ */

/* --- Titres : DA unifiée méthode/tarifs/accueil + bleu légèrement plus clair --- */
.pm-title { color: #1b3a63; }
.pm-title .pm-strike { color: rgba(27,58,99,0.4); text-decoration-color: rgba(27,58,99,0.3); }

.pro-main-title { font-family: 'Space Grotesk', sans-serif; color: #1b3a63; letter-spacing: -0.03em; text-shadow: none; }
.title-line-1 { font-size: clamp(2rem, 5.6vw, 3rem); font-weight: 800; line-height: 1.08; }
.title-line-2 { font-size: clamp(1.25rem, 3.6vw, 1.9rem); font-weight: 700; color: #1b3a63; opacity: 0.9; }
.hl-gold-pro { background: linear-gradient(120deg,#F5C842 0%,#D4AF37 50%,#C99B22 100%); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; animation: none; text-shadow: none; }

/* --- Barre infos hero : présentiel à Montévrain --- */
.pio-sub { display: block; font-family: 'Inter', sans-serif; font-size: 0.58rem; font-weight: 600; color: rgba(255,255,255,0.62); white-space: nowrap; margin-top: 1px; letter-spacing: 0.01em; }
@media (max-width: 340px) { .pio-sub { font-size: 0.5rem; } }

/* ============================================================
   BLOC SÉANCE : RAIL CHRONOMÉTRÉ (accordéon vertical, .sline-*)
   Le rail se remplit en dégradé jusqu'à l'étape active ; l'espace entre
   deux étapes est proportionnel à leur durée réelle (--gap, calculé une
   fois depuis les données). Seul le dépli au clic (max-height) sort de
   la règle transform/opacity — même technique que l'accordéon FAQ.
   ============================================================ */
.stl-foot-dot { width: 6px; height: 6px; border-radius: 50%; background: #D4AF37; box-shadow: 0 0 0 4px rgba(212,175,55,0.15); }

.sline { position: relative; max-width: 640px; margin: 0 auto; --head-h: 48px; }

.sline-track {
  position: absolute;
  left: 20px;
  top: calc(var(--head-h) / 2);
  bottom: calc(var(--head-h) / 2);
  width: 3px;
  background: rgba(12, 27, 51, 0.09);
  border-radius: 999px;
  overflow: hidden;
  z-index: 0;
}
.sline-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  border-radius: 999px;
}

.sline-list { position: relative; z-index: 1; list-style: none; margin: 0; padding: 0; }

.sline-row { margin-bottom: var(--gap, 16px); }
.sline-row:last-child { margin-bottom: 0; }

.sline-head {
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: var(--head-h);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px 14px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .25s cubic-bezier(.16,1,.3,1);
  -webkit-tap-highlight-color: transparent;
}
.sline-row.active .sline-head {
  border-color: color-mix(in srgb, var(--acc) 40%, var(--border));
  background: color-mix(in srgb, var(--acc) 7%, #fff);
  box-shadow: 0 10px 26px -10px color-mix(in srgb, var(--acc) 45%, transparent);
}
@media (hover: hover) {
  .sline-head:hover { transform: translateY(-1px); }
}

.sline-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  color: var(--acc);
  background: color-mix(in srgb, var(--acc) 14%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--acc) 28%, transparent);
  transition: background .3s ease, box-shadow .3s ease, transform .3s cubic-bezier(.16,1,.3,1), color .3s ease;
  justify-self: center;
}
.sline-dot svg { width: 18px; height: 18px; }
.sline-row.active .sline-dot {
  background: var(--acc);
  color: #fff;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--acc) 18%, transparent), 0 6px 16px -4px color-mix(in srgb, var(--acc) 60%, transparent);
  transform: scale(1.08);
}

.sline-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sline-title { font-family: 'Space Grotesk', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--gray1); letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sline-time { align-self: flex-start; font-size: 0.66rem; font-weight: 700; color: var(--acc); background: color-mix(in srgb, var(--acc) 12%, transparent); padding: 2px 8px; border-radius: 999px; }

.sline-chev { width: 18px; height: 18px; color: var(--gray3); transition: transform .35s cubic-bezier(.16,1,.3,1), color .3s; justify-self: center; }
.sline-row.active .sline-chev { transform: rotate(180deg); color: var(--acc); }

.sline-body { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.16,1,.3,1); }
.sline-body-inner { padding: 14px 14px 4px 66px; opacity: 0; transition: opacity .25s ease; }
.sline-row.active .sline-body-inner { opacity: 1; transition: opacity .35s ease .12s; }
.sline-body-inner p { font-size: 0.88rem; line-height: 1.6; color: var(--gray2); margin: 0; }

.sline-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.sline-chips span { font-size: 0.74rem; font-weight: 600; color: #15803d; background: rgba(34,197,94,0.09); border: 1px solid rgba(34,197,94,0.2); padding: 5px 11px; border-radius: 999px; }

/* Point fort visuel : Pause (respiration, ton vert même repliée) */
.sline-row.is-pause .sline-head { background: linear-gradient(135deg, rgba(34,197,94,0.07), rgba(34,197,94,0.015)); }

/* Point fort visuel : Phase Intense (le moment fort de la séance) */
.sline-row.is-intense .sline-head { background: linear-gradient(135deg, rgba(212,175,55,0.09), rgba(212,175,55,0.02)); }
.sline-row.is-intense.active .sline-head { background: linear-gradient(135deg, #0c1b33 0%, #15294a 100%); border-color: #0c1b33; box-shadow: 0 14px 32px -10px rgba(212,175,55,0.45); }
.sline-row.is-intense.active .sline-title { color: #F5C842; }
.sline-row.is-intense.active .sline-time { color: #0c1b33; background: #F5C842; }
.sline-row.is-intense.active .sline-chev { color: #F5C842; }
.sline-row.is-intense.active .sline-dot { box-shadow: 0 0 0 5px rgba(245,200,66,0.22), 0 6px 18px -2px rgba(245,200,66,0.55); }
.sline-row.is-intense.active .sline-body { background: linear-gradient(135deg, #0c1b33 0%, #15294a 100%); border-radius: 0 0 16px 16px; margin-top: -4px; }
.sline-row.is-intense.active .sline-body-inner p { color: rgba(255,255,255,0.82); }

@media (prefers-reduced-motion: reduce) {
  .sline-head, .sline-dot, .sline-chev, .sline-body, .sline-body-inner, .sline-fill { transition: none !important; }
}

@media (min-width: 768px) {
  .sline { --head-h: 56px; }
  .sline-head { padding: 10px 18px; grid-template-columns: 46px 1fr 22px; }
  .sline-dot { width: 42px; height: 42px; font-size: 1.2rem; }
  .sline-dot svg { width: 21px; height: 21px; }
  .sline-title { font-size: 1rem; }
  .sline-time { font-size: 0.7rem; }
  .sline-body-inner { padding: 16px 18px 6px 76px; }
  .sline-body-inner p { font-size: 0.94rem; }
}

/* --- Barre infos hero : tout sur UNE ligne, sans débordement --- */
.pio-bar { flex-wrap: nowrap; }
.pio-item { min-width: 0; }
.pio-value, .pio-sub { white-space: nowrap; }
@media (max-width: 460px) {
  .pio-bar { gap: 8px; padding: 8px 13px; }
  .pio-item { gap: 5px; }
  .pio-icon-chip { width: 22px; height: 22px; font-size: 0.72rem; }
  .pio-label { font-size: 0.46rem; }
  .pio-value { font-size: 0.62rem; }
  .pio-sub { font-size: 0.5rem; }
  .pio-divider { height: 26px; }
}
@media (max-width: 390px) {
  .pio-bar { gap: 6px; padding: 7px 11px; }
  .pio-icon-chip { width: 20px; height: 20px; font-size: 0.66rem; }
  .pio-value { font-size: 0.56rem; }
  .pio-label { font-size: 0.42rem; }
  .pio-sub { font-size: 0.46rem; }
}
@media (max-width: 340px) {
  .pio-bar { gap: 5px; }
  .pio-value { font-size: 0.52rem; }
  .pio-sub { font-size: 0.43rem; }
}

/* ============================================================
   RYTHME VERTICAL HOMOGÈNE — ACCUEIL (scopé .home)
   Espaces inter-sections et titre→contenu uniformes, mesurés.
   ============================================================ */
.home .hero { padding: 90px 0 30px !important; }
.home .seance-section,
.home .constat-section,
.home .cta-pro-section,
.home .pm-faq { padding: 30px 0 !important; margin-top: 0 !important; }
.home .section-head { margin-bottom: 1.25rem !important; }

@media (min-width: 768px) {
  .home .hero { padding: 110px 0 40px !important; }
  .home .seance-section,
  .home .constat-section,
  .home .cta-pro-section,
  .home .pm-faq { padding: 40px 0 !important; margin-top: 0 !important; }
  .home .section-head { margin-bottom: 1.6rem !important; }
}

/* ============================================================
   REFONTE PREMIUM — FAQ + FOOTER (ACCUEIL, scopé .home)
   ============================================================ */

/* ---------- FAQ ---------- */
.home .faq-section { background: radial-gradient(ellipse at 50% -10%, rgba(245,200,66,0.07), transparent 60%); }
.home .faq-list { max-width: 660px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.home .faq-item {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(12,27,51,0.07);
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(12,27,51,0.05);
  overflow: hidden;
  position: relative;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .35s, background .35s;
}
.home .faq-item::before { content:""; position:absolute; left:0; top:0; bottom:0; width:3px; background:linear-gradient(180deg,#F5C842,#D4AF37); transform:scaleY(0); transform-origin:top; transition:transform .45s cubic-bezier(.16,1,.3,1); }
.home .faq-item:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(12,27,51,0.09); }
.home .faq-item.open { background:#fff; border-color: rgba(212,175,55,0.4); box-shadow: 0 18px 42px rgba(12,27,51,0.12); }
.home .faq-item.open::before { transform: scaleY(1); }
.home .faq-q { display:flex; align-items:center; justify-content:space-between; gap:14px; padding:18px 20px; cursor:pointer; -webkit-tap-highlight-color:transparent; }
.home .faq-q-left { display:flex; align-items:center; gap:14px; }
.home .faq-icon-wrap { flex-shrink:0; width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.2rem; background:linear-gradient(135deg,#fff7df,#fde6b8); box-shadow: inset 0 0 0 1px rgba(212,175,55,0.3); transition: transform .45s cubic-bezier(.16,1,.3,1), background .35s, box-shadow .35s; }
.home .faq-item.open .faq-icon-wrap { transform: scale(1.06) rotate(-3deg); background:linear-gradient(135deg,#F5C842,#D4AF37); box-shadow:0 6px 16px rgba(212,175,55,0.45); }
.home .faq-q-text { font-family:'Space Grotesk',sans-serif; font-size:1rem; font-weight:600; color:#1b3a63; line-height:1.35; letter-spacing:-0.01em; transition: color .3s; }
.home .faq-item.open .faq-q-text { color:#0c1b33; }
.home .faq-plus-minus { position:relative; width:22px; height:22px; flex-shrink:0; }
.home .faq-pm-line { position:absolute; top:50%; left:50%; background:#D4AF37; border-radius:2px; transition: transform .45s cubic-bezier(.16,1,.3,1), opacity .3s; }
.home .faq-pm-h { width:13px; height:2.5px; transform: translate(-50%,-50%); }
.home .faq-pm-v { width:2.5px; height:13px; transform: translate(-50%,-50%); }
.home .faq-item.open .faq-pm-v { transform: translate(-50%,-50%) rotate(90deg); opacity:0; }
.home .faq-item.open .faq-pm-h { transform: translate(-50%,-50%) rotate(180deg); }
.home .faq-a { max-height:0; overflow:hidden; transition: max-height .5s cubic-bezier(.16,1,.3,1); }
.home .faq-a-inner { padding: 0 20px 20px 76px; font-size:.9rem; line-height:1.65; color:#5a6b82; }
@media (max-width:560px){
  .home .faq-q { padding:15px 16px; gap:10px; }
  .home .faq-icon-wrap { width:38px; height:38px; font-size:1.1rem; border-radius:11px; }
  .home .faq-q-text { font-size:.92rem; }
  .home .faq-a-inner { padding:0 16px 16px 16px; font-size:.86rem; text-align:left; }
}

/* ---------- FOOTER ---------- */
.footer-pro {
  position: relative;
  background: linear-gradient(180deg, #0c1b33 0%, #0a1730 100%);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 30px;
  overflow: hidden;
}
.footer-pro::before { content:""; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg, transparent, rgba(212,175,55,0.6), transparent); }
.footer-pro::after { content:""; position:absolute; top:-130px; left:50%; transform:translateX(-50%); width:420px; height:260px; background:radial-gradient(ellipse, rgba(245,200,66,0.10), transparent 70%); pointer-events:none; }
.footer-pro .container { position:relative; z-index:1; }
.footer-pro-inner { display:grid; grid-template-columns:1.5fr 1fr; gap:40px; align-items:start; }
.footer-logo-text { font-family:'Space Grotesk',sans-serif; font-size:1.55rem; font-weight:800; letter-spacing:-0.02em; background:linear-gradient(115deg,#ffffff 0%, #F5C842 130%); -webkit-background-clip:text; background-clip:text; color:transparent; margin-bottom:12px; }
.footer-desc { font-size:.85rem; line-height:1.7; color:rgba(255,255,255,0.6); max-width:340px; margin-bottom:16px; }
.footer-contact-info .fc-item { font-size:.8rem; color:rgba(255,255,255,0.78); display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.09); padding:7px 13px; border-radius:999px; margin-bottom:16px; }
.footer-socials { display:flex; gap:10px; margin-top:2px; }
.f-social-btn { width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.85); background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); transition: transform .3s cubic-bezier(.16,1,.3,1), background .3s, color .3s, box-shadow .3s, border-color .3s; }
.f-social-btn:hover { transform:translateY(-3px); background:linear-gradient(135deg,#F5C842,#D4AF37); color:#0c1b33; box-shadow:0 8px 20px rgba(212,175,55,0.35); border-color:transparent; }
.footer-links-wrap { display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.f-col { display:flex; flex-direction:column; }
.f-title { font-family:'Space Grotesk',sans-serif; font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:0.12em; color:#F5C842; margin-bottom:14px; }
.f-link { font-size:.86rem; color:rgba(255,255,255,0.62); text-decoration:none; padding:6px 0; transition: color .25s, padding-left .25s; width:fit-content; }
.f-link:hover { color:#fff; padding-left:6px; }
.footer-pro-bottom { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:18px; padding-top:14px; border-top:1px solid rgba(255,255,255,0.08); font-size:.74rem; color:rgba(255,255,255,0.45); }
.hl-gold-text { color:#F5C842; font-weight:600; }
@media (max-width:760px){
  .footer-pro { padding:38px 0 96px; text-align:center; }
  .footer-pro-inner { grid-template-columns:1fr; gap:30px; }
  .footer-desc { margin-left:auto; margin-right:auto; }
  .footer-contact-info { display:flex; justify-content:center; }
  .footer-socials { justify-content:center; }
  .footer-links-wrap { max-width:320px; margin:0 auto; text-align:left; }
  .footer-pro-bottom { flex-direction:column; text-align:center; gap:6px; margin-top:14px; }
}

/* --- Séance : ligne "4h au total" sous le sous-titre --- */
.seance-total{ display:inline-flex; align-items:center; gap:8px; margin-top:12px; font-size:.82rem; font-weight:600; color:#1b3a63; background:rgba(212,175,55,0.08); border:1px solid rgba(212,175,55,0.25); padding:6px 14px; border-radius:999px; }
.seance-total strong{ color:#D4AF37; }

/* --- Bloc Modalités de cours (compact premium) --- */
.modx{ background:linear-gradient(160deg, rgba(255,255,255,0.92), rgba(240,248,255,0.82)); border-radius:18px; padding:14px 16px; box-shadow:0 12px 30px rgba(12,27,51,0.10); }
.modx-top{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.modx-4h{ font-family:'Space Grotesk',sans-serif; font-weight:800; font-size:1.7rem; line-height:1; background:linear-gradient(135deg,#F5C842,#D4AF37); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:#D4AF37; }
.modx-top-txt{ display:flex; flex-direction:column; line-height:1.25; }
.modx-top-txt b{ font-family:'Space Grotesk',sans-serif; font-size:.92rem; color:#1b3a63; font-weight:700; }
.modx-top-txt span{ font-size:.72rem; color:#16a34a; font-weight:600; }
.modx-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-bottom:11px; }
.modx-day{ background:rgba(12,27,51,0.03); border:1px solid rgba(12,27,51,0.06); border-radius:12px; padding:9px 8px; text-align:center; }
.modx-day-h{ font-family:'Space Grotesk',sans-serif; font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:#1b3a63; margin-bottom:6px; }
.modx-slots{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:5px; }
.modx-slots span{ font-size:.74rem; font-weight:700; color:#0c1b33; background:#fff; border:1px solid rgba(212,175,55,0.35); padding:3px 9px; border-radius:999px; }
.modx-slots em{ font-style:normal; font-size:.66rem; color:#9aa6b5; }
.modx-notes{ display:flex; flex-direction:column; gap:4px; }
.modx-notes span{ font-size:.68rem; color:#5a6b82; line-height:1.4; }
@media (max-width:380px){ .modx{ padding:12px 13px; } .modx-4h{ font-size:1.45rem; } .modx-slots span{ font-size:.68rem; padding:3px 7px; } }

/* --- Modalités : jours en titres au-dessus des cases + connecteur "le" --- */
.modx-le{ font-family:'Space Grotesk',sans-serif; font-size:.82rem; font-weight:600; color:#9aa6b5; align-self:center; }
.modx-col{ display:flex; flex-direction:column; }
.modx-col-title{ font-family:'Space Grotesk',sans-serif; font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:#1b3a63; text-align:center; margin-bottom:6px; }
.modx-col .modx-day{ flex:1; }

/* ============================================================
   AJUSTEMENTS : numéro footer mobile, flèche modalités, espace timer, bilan non-scroll
   ============================================================ */

/* Numéro de tel dans le footer : visible desktop, masqué mobile (la bulle réseau reste) */
@media (max-width: 760px){ .fc-phone{ display:none !important; } }

/* Modalités : flèche discrète week-end -> horaires */
.modx{ position:relative; }
.modx-arrow{ position:absolute; left:50%; transform:translateX(-50%); bottom:42px; width:44px; height:80px; opacity:.42; pointer-events:none; }

/* Bilan : page de conversion entièrement visible sans scroll (mobile) */
@media (max-width: 760px){
  .bil-page{ height:100svh; height:100dvh; overflow:hidden; }
  .bil-main{ align-items:flex-start; overflow-y:auto; -webkit-overflow-scrolling:touch; min-height:0; padding:10px 14px 14px; }
  .bil-top{ padding:8px 16px; }
  .bil-card{ padding:1.05rem 1rem; border-radius:22px; }
  .bil-head{ margin-bottom:.65rem; }
  .bil-title{ font-size:1.2rem; }
  .bil-sub{ display:none; }
  .bil-steps3{ margin-top:.5rem; }
  .bil-progress{ margin-bottom:.7rem; }
  .bil-q{ font-size:1rem; margin-bottom:.65rem; }
  .bil-options{ gap:8px; }
  .bil-opt{ padding:11px; font-size:.9rem; }
  .bil-opt-photo{ padding:8px 10px 7px; gap:5px; }
  .bil-opt-pic{ height:42px; }
  .bil-fields{ gap:8px; }
  .bil-field label{ margin-bottom:2px; font-size:.74rem; }
  .bil-input{ padding:9px 12px; }
  .bil-actions{ margin-top:.7rem; }
  .bil-reassure{ display:none; }
  .bil-or{ margin:.75rem 0 .55rem; }
  .bil-alt-btn{ padding:10px; font-size:.86rem; }
  .bil-trust{ margin-top:.9rem; padding-top:.8rem; gap:6px; }
  .bil-trust-item{ padding:5px 10px; font-size:.68rem; gap:5px; }
}

/* ============================================================
   PAGE TARIFS — architecture "paywall app" (couleurs OptiSciences)
   ============================================================ */
/* ============================================================
   PAGE TARIFS — refonte premium (paywall glass, Apple/Stripe)
   ============================================================ */
.tp-wall{ position:relative; z-index:2; background:linear-gradient(180deg,#0c1b33 0%, #0a1730 100%); color:#fff; padding:120px 0 56px !important; overflow:hidden; }
.tp-wall::before{ content:""; position:absolute; top:-140px; left:50%; transform:translateX(-50%); width:520px; height:360px; background:radial-gradient(ellipse, rgba(245,200,66,0.13), transparent 70%); pointer-events:none; }
.tp-wall::after{ content:""; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 118%, rgba(59,130,246,0.10), transparent 55%); pointer-events:none; }
.tp-wall .container{ position:relative; z-index:1; max-width:540px; }

.tp-eyebrow{ display:inline-flex; align-items:center; gap:8px; font-family:'Space Grotesk',sans-serif; font-size:.68rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:#F5C842; margin-bottom:16px; }
.tp-dot{ width:6px; height:6px; border-radius:50%; background:#F5C842; box-shadow:0 0 10px rgba(245,200,66,0.9); flex-shrink:0; }

.tp-title{ font-family:'Space Grotesk',sans-serif; color:#fff; font-size:clamp(2.1rem,7.5vw,3rem); font-weight:800; line-height:1.06; letter-spacing:-0.03em; margin:0 0 16px; }
.tp-title .pm-gold{ background:linear-gradient(120deg,#F5C842 0%,#D4AF37 55%,#C99B22 100%); -webkit-background-clip:text; background-clip:text; color:transparent; }
.tp-lead{ font-size:1rem; color:rgba(255,255,255,0.68); line-height:1.6; margin:0 0 30px; max-width:430px; }

/* Features — liste aérée avec pastilles or */
.tp-feats{ list-style:none; padding:0; margin:0 0 30px; display:flex; flex-direction:column; gap:0; }
.tp-feats li{ display:flex; align-items:center; gap:14px; font-size:.97rem; font-weight:500; color:rgba(255,255,255,0.92); padding:12px 0; border-bottom:1px solid rgba(255,255,255,0.07); }
.tp-feats li:last-child{ border-bottom:none; }
.tp-feats li div{ line-height:1.4; }
.tp-feats li div b{ font-weight:700; color:#fff; }
.tp-feat-ic{ width:42px; height:42px; border-radius:13px; flex-shrink:0; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg, rgba(245,200,66,0.16), rgba(245,200,66,0.05)); border:1px solid rgba(245,200,66,0.22); box-shadow:inset 0 1px 0 rgba(255,255,255,0.06); }
.tp-feat-ic svg{ width:19px; height:19px; color:#F5C842; }

/* Plans — cartes prix impressionnantes */
.tp-plans{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:0 0 22px; }
.tp-plan{ position:relative; text-align:left; background:rgba(255,255,255,0.045); border:1.5px solid rgba(255,255,255,0.13); border-radius:22px; padding:20px 18px 18px; cursor:pointer; display:flex; flex-direction:column; gap:3px; transition:border-color .3s cubic-bezier(.16,1,.3,1), background .3s, transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s; -webkit-tap-highlight-color:transparent; }
.tp-plan:hover{ transform:translateY(-3px); border-color:rgba(245,200,66,0.4); }
.tp-plan:focus-visible{ outline:2px solid #F5C842; outline-offset:3px; }
.tp-plan.active{ border-color:#F5C842; background:linear-gradient(180deg, rgba(245,200,66,0.16), rgba(245,200,66,0.04)); box-shadow:0 20px 46px -18px rgba(245,200,66,0.55), inset 0 0 0 1px rgba(245,200,66,0.22); transform:translateY(-2px); }
.tp-plan-lvl{ font-family:'Space Grotesk',sans-serif; font-size:.8rem; font-weight:600; letter-spacing:.02em; color:rgba(255,255,255,0.62); }
.tp-plan.active .tp-plan-lvl{ color:#F5C842; }
.tp-plan-price{ font-family:'Space Grotesk',sans-serif; display:flex; align-items:baseline; gap:3px; margin-top:2px; }
.tp-plan-price b{ font-size:2.15rem; font-weight:800; color:#fff; letter-spacing:-0.03em; line-height:1; }
.tp-plan-price i{ font-style:normal; font-size:.82rem; font-weight:500; color:rgba(255,255,255,0.5); }
.tp-plan-desc{ font-size:.73rem; color:rgba(255,255,255,0.58); line-height:1.35; margin-top:6px; }
.tp-plan-badge{ position:absolute; top:-10px; right:12px; background:linear-gradient(135deg,#F5C842,#D4AF37); color:#0c1b33; font-size:.58rem; font-weight:800; text-transform:uppercase; letter-spacing:.05em; padding:4px 10px; border-radius:999px; box-shadow:0 6px 14px rgba(212,175,55,0.5); }

/* Bouton principal + lien secondaire */
.tp-subscribe{ position:relative; overflow:hidden; display:block; text-align:center; background:linear-gradient(135deg,#F5C842,#D4AF37); color:#0c1b33; font-family:'Space Grotesk',sans-serif; font-weight:800; font-size:1.08rem; letter-spacing:.01em; padding:18px; border-radius:16px; text-decoration:none; box-shadow:0 20px 44px -14px rgba(245,200,66,0.65); transition:transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s; }
.tp-subscribe::after{ content:""; position:absolute; top:0; left:-60%; width:40%; height:100%; background:linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent); transform:skewX(-20deg); transition:left .6s ease; pointer-events:none; }
.tp-subscribe:hover{ transform:translateY(-2px); box-shadow:0 26px 54px -14px rgba(245,200,66,0.75); }
.tp-subscribe:hover::after{ left:120%; }
.tp-subscribe:focus-visible{ outline:2px solid #fff; outline-offset:3px; }
.tp-restore{ display:block; text-align:center; color:rgba(255,255,255,0.72); font-weight:600; font-size:.92rem; text-decoration:none; padding:16px; transition:color .2s; }
.tp-restore:hover{ color:#fff; text-decoration:underline; text-underline-offset:3px; }
.tp-reassure{ text-align:center; font-size:.74rem; color:rgba(255,255,255,0.48); letter-spacing:.01em; }

/* Entrée en fondu échelonnée */
@keyframes tpUp{ from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:none; } }
.tp-wall .container > *{ animation:tpUp .6s cubic-bezier(.16,1,.3,1) both; }
.tp-wall .container > *:nth-child(2){ animation-delay:.06s; }
.tp-wall .container > *:nth-child(3){ animation-delay:.12s; }
.tp-wall .container > *:nth-child(4){ animation-delay:.18s; }
.tp-wall .container > *:nth-child(5){ animation-delay:.24s; }
.tp-wall .container > *:nth-child(6){ animation-delay:.30s; }
.tp-wall .container > *:nth-child(7){ animation-delay:.36s; }

@media (min-width:768px){ .tp-wall .container{ max-width:560px; } }
@media (prefers-reduced-motion:reduce){ .tp-wall .container > *{ animation:none !important; } .tp-subscribe::after{ display:none; } }

/* Bilan : canal secondaire WhatsApp + Appeler */
.bil-alt{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.bil-alt-btn{ display:flex; align-items:center; justify-content:center; gap:8px; padding:13px; border-radius:14px; font-weight:700; font-size:.92rem; text-decoration:none; background:#fff; border:1.5px solid; transition:background .2s,border-color .2s,transform .2s; -webkit-tap-highlight-color:transparent; }
.bil-alt-btn:hover{ transform:translateY(-2px); }
.bil-alt-btn svg{ width:19px; height:19px; }
.bil-alt-wa{ color:#0c8a3e; border-color:rgba(37,211,102,0.45); }
.bil-alt-wa svg{ fill:#25D366; }
.bil-alt-wa:hover{ background:rgba(37,211,102,0.07); border-color:#25D366; }
.bil-alt-tel{ color:#0c1b33; border-color:rgba(212,175,55,0.55); }
.bil-alt-tel svg{ stroke:#D4AF37; }
.bil-alt-tel:hover{ background:rgba(212,175,55,0.08); border-color:#D4AF37; }

/* ============================================================
   PAGE FONDATEUR — premium (titres, cartes, manifeste, dashboard)
   ============================================================ */
.founder-pro-section{ padding:0 0 56px; }
@media (max-width:900px){
  .founder-pro-section{ padding:0 0 40px; }
}

.fdr-eyebrow{ display:inline-flex; align-items:center; gap:9px; font-family:'Space Grotesk',sans-serif; font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:#C99B22; margin-bottom:.9rem; }
.fdr-num{ display:inline-flex; align-items:center; justify-content:center; width:24px; height:24px; border-radius:50%; background:linear-gradient(135deg,#F5C842,#D4AF37); color:#0c1b33; font-size:.7rem; font-weight:800; box-shadow:0 4px 12px rgba(212,175,55,.4); }
.fdr-h2{ font-family:'Space Grotesk',sans-serif; font-size:clamp(1.7rem,5vw,2.5rem); font-weight:800; color:#15294a; letter-spacing:-0.025em; line-height:1.12; animation:none; }

.fdr-narr{ max-width:720px; margin:0 auto; display:flex; flex-direction:column; gap:18px; }
.fdr-card{ position:relative; background:rgba(255,255,255,0.82); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border:1px solid rgba(12,27,51,0.07); border-radius:22px; box-shadow:0 14px 38px -20px rgba(12,27,51,0.28); padding:1.6rem 1.7rem 1.6rem 2rem; overflow:hidden; transition:transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s; }
.fdr-card::before{ content:""; position:absolute; left:0; top:0; bottom:0; width:4px; background:linear-gradient(180deg,#F5C842,#D4AF37); }
.fdr-card:hover{ transform:translateY(-3px); box-shadow:0 22px 48px -20px rgba(12,27,51,0.34); }
.fdr-card.dark{ background:linear-gradient(150deg,#0c1b33,#15294a); border:1px solid rgba(212,175,55,0.28); box-shadow:0 26px 56px -24px rgba(12,27,51,0.6); }
.fdr-card.dark::after{ content:""; position:absolute; top:-40%; right:-15%; width:320px; height:320px; background:radial-gradient(circle, rgba(245,200,66,0.13), transparent 70%); pointer-events:none; }
.fdr-label{ display:flex; align-items:center; gap:8px; font-family:'Space Grotesk',sans-serif; font-size:.74rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:#C99B22; margin-bottom:10px; position:relative; z-index:1; }
.fdr-card p{ color:#4a5a6e; font-size:.97rem; line-height:1.75; margin:0; position:relative; z-index:1; }
.fdr-card.dark p{ color:rgba(255,255,255,0.82); }

.fdr-manifesto{ position:relative; max-width:760px; margin:0 auto; background:linear-gradient(150deg,#0c1b33,#15294a); border:1px solid rgba(212,175,55,0.25); border-radius:28px; box-shadow:0 32px 72px -32px rgba(12,27,51,0.6); padding:clamp(2.2rem,6vw,3.4rem) clamp(1.6rem,5vw,3rem); text-align:center; overflow:hidden; }
.fdr-manifesto::before{ content:"\201C"; position:absolute; top:-22px; left:26px; font-family:'Space Grotesk',sans-serif; font-size:9rem; line-height:1; color:rgba(245,200,66,0.16); pointer-events:none; }
.fdr-manifesto::after{ content:""; position:absolute; bottom:-55%; left:50%; transform:translateX(-50%); width:440px; height:320px; background:radial-gradient(ellipse, rgba(245,200,66,0.12), transparent 70%); pointer-events:none; }
.fdr-manifesto > *{ position:relative; z-index:1; }
.fdr-quote{ font-family:'Space Grotesk',sans-serif; font-size:clamp(1.25rem,3.6vw,1.75rem); font-weight:700; line-height:1.4; color:#fff; letter-spacing:-0.01em; margin:.6rem 0 1.1rem; }
.fdr-quote-sub{ font-size:.97rem; line-height:1.75; color:rgba(255,255,255,0.72); max-width:580px; margin:0 auto; }
.fdr-quote-sub strong{ color:#F5C842; font-weight:600; }

.fdr-stats{ max-width:760px; margin:0 auto; display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.fdr-stat{ position:relative; background:rgba(255,255,255,0.82); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border:1px solid rgba(12,27,51,0.07); border-radius:20px; box-shadow:0 14px 34px -20px rgba(12,27,51,0.28); padding:1.5rem; transition:transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s; }
.fdr-stat:hover{ transform:translateY(-3px); box-shadow:0 22px 46px -20px rgba(12,27,51,0.34); }
.fdr-stat-gold{ background:linear-gradient(150deg,#0c1b33,#15294a); border-color:rgba(212,175,55,0.32); box-shadow:0 26px 56px -24px rgba(12,27,51,0.55); overflow:hidden; }
.fdr-stat-gold::after{ content:""; position:absolute; top:-50%; right:-20%; width:240px; height:240px; background:radial-gradient(circle, rgba(245,200,66,0.16), transparent 70%); pointer-events:none; }
.fst-label{ display:flex; align-items:center; gap:6px; font-family:'Space Grotesk',sans-serif; font-size:.7rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:#C99B22; margin-bottom:10px; position:relative; z-index:1; }
.fst-label svg, .fdr-label svg, .fp-badge svg, .fp-float svg { width: 14px; height: 14px; flex-shrink: 0; }
.fst-value{ font-family:'Space Grotesk',sans-serif; font-size:1.18rem; font-weight:800; color:#15294a; line-height:1.18; letter-spacing:-0.01em; position:relative; z-index:1; }
.fst-sub{ font-size:.79rem; color:#8a97a8; margin-top:4px; position:relative; z-index:1; }
.fdr-stat-gold .fst-value{ color:#fff; }
.fdr-stat-gold .fst-sub{ color:rgba(255,255,255,0.6); }
.fdr-stat-gold .fst-label{ color:#F5C842; }

.fdr-reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.fdr-reveal.fdr-in{ opacity:1; transform:none; }
@media (max-width:440px){ .fdr-stats{ grid-template-columns:1fr; } }
@media (prefers-reduced-motion:reduce){ .fdr-reveal{ opacity:1 !important; transform:none !important; transition:none; } }

/* ============================================================
   ACCUEIL — TEASER TARIFS COMPACT (remplace les 2 cartes pricing
   complètes dupliquées avec tarifs.html ; même langage navy/or
   que pio-bar / carousel / avis / stats : radius 20px, ombre navy)
   ============================================================ */
.home .hp-price-teaser {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0c1b33 0%, #15294a 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 14px 36px rgba(12, 27, 51, 0.22);
  position: relative;
  overflow: hidden;
}
.home .hp-price-teaser::before {
  content: '';
  position: absolute;
  top: -55%; right: -10%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.home .hp-price-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1;
}
.home .hp-price-lvl {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.home .hp-price-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #F5C842;
  line-height: 1;
}
.home .hp-price-val small {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}
.home .hp-price-sep {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.4), transparent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.home .hp-price-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 44px;
  background: linear-gradient(135deg, #F5C842, #D4AF37);
  color: #0c1b33;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.86rem;
  padding: 13px 18px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 1;
}
.home .hp-price-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(212, 175, 55, 0.4); }
.home .hp-price-cta span { transition: transform 0.2s; }
.home .hp-price-cta:hover span { transform: translateX(3px); }

@media (max-width: 480px) {
  .home .hp-price-teaser { padding: 14px; gap: 10px 14px; }
  .home .hp-price-val { font-size: 1.3rem; }
  .home .hp-price-cta { width: 100%; margin-left: 0; order: 3; }
}

/* ============================================================
   ACCUEIL — EXPÉRIENCE PREMIUM : nav glass au scroll, chorégraphie
   d'entrée (reveal), spotlight curseur, micro-interactions.
   Tout reste transform/opacity/filter (60fps), respecte
   prefers-reduced-motion, et le hover ne s'active que sur pointeur
   fin (évite l'effet de "hover collant" au tap sur mobile).
   ============================================================ */

/* ---------- NAV : glassmorphism progressif au scroll ---------- */
.home nav {
  transition: background-color .45s ease, box-shadow .45s ease, backdrop-filter .45s ease, border-color .45s ease;
}
.home nav.scrolled {
  background: rgba(240, 248, 255, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 10px 32px rgba(12, 27, 51, 0.10);
  border-bottom-color: rgba(212, 175, 55, 0.22);
}

/* ---------- CHORÉGRAPHIE D'ENTRÉE / REVEAL AU SCROLL ---------- */
.home [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(7px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1), filter .7s ease;
  will-change: opacity, transform, filter;
}
.home [data-reveal].in { opacity: 1; transform: none; filter: blur(0); }
.home [data-reveal][data-r-d="1"] { transition-delay: .1s; }
.home [data-reveal][data-r-d="2"] { transition-delay: .2s; }
.home [data-reveal][data-r-d="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .home [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
}

/* ---------- SPOTLIGHT CURSEUR SUR LA CARTE WIZARD (desktop) ---------- */
.chalk-spotlight {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
  transition: opacity .5s ease;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(245, 200, 66, 0.16), transparent 62%);
}
.chalkboard-wizard.spot-active .chalk-spotlight { opacity: 1; }
@media (hover: none) { .chalk-spotlight { display: none; } }

/* ---------- CARTES / BOUTONS : profondeur et micro-interactions ---------- */
.home .hp-price-teaser::after,
.home .stats-row-gauges.Sumptuous-Dashboard::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 2px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, transparent, rgba(245,200,66,0.7), transparent);
  pointer-events: none;
}
.home .stats-row-gauges.Sumptuous-Dashboard { position: relative; overflow: hidden; }

@media (hover: hover) {
  .home .avis-card-gold { transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease; }
  .home .avis-card-gold:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -18px rgba(212,175,55,0.4); }

  .home .carousel-btn { transition: transform .25s cubic-bezier(.16,1,.3,1), background .2s; }

  .home .chalk-icon { transition: transform .3s cubic-bezier(.16,1,.3,1); }
  .home .btn-chalk:hover .chalk-icon { transform: scale(1.1) translateY(-3px); }

  .home .chalk-choice-img { transition: transform .3s cubic-bezier(.16,1,.3,1), filter .3s ease; }
  .home .btn-chalk:hover .chalk-choice-img { transform: scale(1.1) translateY(-3px); }

  .home .gauge-card { transition: transform .3s cubic-bezier(.16,1,.3,1); }
  .home .gauge-card:hover { transform: translateY(-4px); }
}

/* Halo doré qui respire doucement autour de la carte du wizard (signature) —
   anime uniquement l'opacité du halo déjà présent (::after), jamais le
   box-shadow, pour rester strictement transform/opacity/filter (60fps). */
@keyframes wizardAmbientGlow { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }
.chalkboard-wizard::after { animation: wizardAmbientGlow 5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .chalkboard-wizard::after { animation: none; opacity: 0.7; } }

/* ============================================================
   GUIDAGE VISUEL DISCRET VERS LA CONVERSION
   Micro-ajustements volontairement quasi invisibles : ils orientent le
   regard vers le CTA bilan.html, les contacts directs et les preuves,
   sans aucun élément qui se remarque comme "pousse à l'achat".
   ============================================================ */

/* 1) Le badge Trustpilot (preuve sociale) devient lui-même un chemin discret
   vers le bilan gratuit, au lieu d'être un cul-de-sac visuel. */
.home a.tp-official-button {
  text-decoration: none;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
}
.home a.tp-official-button:focus-visible { outline: 2px solid #D4AF37; outline-offset: 3px; }
@media (hover: hover) {
  .home a.tp-official-button:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -10px rgba(212,175,55,0.35); }
}

/* 3) Halo or très bas et quasi imperceptible en sortie du graphique de
   constat : amène l'œil vers le bloc CTA qui suit immédiatement. */
.home .cc-flow-glow {
  width: 70%;
  max-width: 480px;
  height: 90px;
  margin: -20px auto 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.09) 0%, transparent 75%);
  pointer-events: none;
}

/* 4) Le bloc CTA final (le plus décisif) respire très légèrement en or —
   jamais visible en même temps que le halo du wizard (sections éloignées
   dans le scroll), donc toujours un seul point focal doré fort à l'écran.
   Animation d'opacité uniquement. */
.home .cta-pro-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 140% at 18% 0%, rgba(212,175,55,0.16), transparent 60%);
  opacity: .35;
  animation: ctaProGlowBreath 5.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes ctaProGlowBreath { 0%, 100% { opacity: .25; } 50% { opacity: .55; } }
@media (prefers-reduced-motion: reduce) { .home .cta-pro-card::after { animation: none; opacity: .35; } }

/* ============================================================
   FOOTER — CENTRAGE (toutes les pages, .footer-pro est partagé)
   Texte et éléments centrés sur tous les gabarits, desktop compris.
   ============================================================ */
.footer-pro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.75rem;
}
.footer-brand-col { display: flex; flex-direction: column; align-items: center; max-width: 420px; }
.footer-desc { text-align: center; margin-left: auto; margin-right: auto; }
.footer-contact-info { align-items: center; }
.footer-socials { justify-content: center; }
.footer-links-wrap { display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; }
.f-col { align-items: center; text-align: center; }
.footer-pro-bottom { flex-direction: column; justify-content: center; text-align: center; gap: 0.5rem; }
@media (max-width: 768px) {
  .footer-links-wrap { text-align: center; }
}

/* ============================================================
   RYTHME VERTICAL HOMOGÈNE — pile du hero (accueil)
   Une seule règle : tout bloc qui suit directement un autre bloc reçoit
   24px de marge haute (32px au total avec le gap du conteneur) ; tout bloc
   qui suit une étiquette ".hp-eyebrow" reçoit 0 (8px au total, pour rester
   collé à son étiquette). Aucune marge basse nulle part : c'est toujours
   le bloc suivant qui porte l'espace.
   ============================================================ */
.home .hp-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #5784BA;
  text-transform: uppercase;
  margin: 24px 0 0 4px;
}
/* Exception demandée : espace agrandi de moitié (32px -> 48px) entre les
   avis qui défilent et le titre "Nos résultats en chiffres". */
.home .hp-eyebrow-gap-lg { margin-top: 40px; }
.home .ticker-wrapper-mask,
.home .stats-row-gauges.Sumptuous-Dashboard,
.home .hp-price-teaser,
.home .modx {
  margin-top: 0;
}

/* ============================================================
   CAPTURE GUIDE EMAIL — bannière + modale + page merci (.eg-)
   Style minimaliste "Apple" : clair, aéré, bordures fines.
   ============================================================ */
:root{ --eg-h:40px; }

/* --- Top banner --- */
.eg-banner{ position:fixed; top:0; left:0; right:0; height:var(--eg-h); z-index:250; display:flex; align-items:center; background:rgba(248,250,253,0.94); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border-bottom:1px solid rgba(12,27,51,0.08); }
.eg-banner-main{ flex:1; height:100%; border:none; background:none; cursor:pointer; padding:0 38px 0 16px; text-align:center; font-family:'Inter',sans-serif; font-size:.8rem; color:#0c1b33; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-tap-highlight-color:transparent; }
.eg-banner-txt{ font-weight:500; }
.eg-banner-link{ color:#C99B22; font-weight:700; white-space:nowrap; }
.eg-banner-ic{ width:14px; height:14px; flex-shrink:0; vertical-align:-2px; margin-right:6px; }
.eg-banner-close{ position:absolute; right:6px; top:50%; transform:translateY(-50%); width:30px; height:30px; border:none; background:none; cursor:pointer; color:#9aa6b5; display:flex; align-items:center; justify-content:center; border-radius:8px; }
.eg-banner-close:hover{ color:#0c1b33; background:rgba(12,27,51,0.05); }
.eg-banner-close svg{ width:15px; height:15px; }
html.eg-banner-on nav{ top:var(--eg-h); }
html.eg-banner-on .site-wrapper{ padding-top:var(--eg-h); }
@media (max-width:560px){
  :root{ --eg-h: 62px; }
  .eg-banner-main{
    font-size:.72rem;
    line-height:1.4;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    padding: 4px 34px 4px 14px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .eg-sm-hide{ display:none; }
}

/* --- Modale --- */
.eg-modal{ position:fixed; inset:0; z-index:10000; display:none; align-items:center; justify-content:center; padding:20px; }
.eg-modal.open{ display:flex; }
.eg-backdrop{ position:absolute; inset:0; background:rgba(12,27,51,0.30); backdrop-filter:blur(4px); -webkit-backdrop-filter:blur(4px); animation:egFade .3s ease; }
.eg-card{ position:relative; z-index:1; width:100%; max-width:420px; background:#fff; border-radius:24px; padding:clamp(1.8rem,6vw,2.6rem); box-shadow:0 40px 90px -30px rgba(12,27,51,0.42); animation:egPop .45s cubic-bezier(.16,1,.3,1); }
@keyframes egFade{ from{opacity:0} to{opacity:1} }
@keyframes egPop{ from{opacity:0;transform:translateY(16px) scale(.985)} to{opacity:1;transform:none} }
.eg-close{ position:absolute; top:14px; right:14px; width:32px; height:32px; border:none; background:none; cursor:pointer; color:#9aa6b5; display:flex; align-items:center; justify-content:center; border-radius:8px; }
.eg-close:hover{ color:#0c1b33; background:rgba(12,27,51,0.05); }
.eg-close svg{ width:18px; height:18px; }
.eg-title{ font-family:'Inter',sans-serif; font-size:1.5rem; font-weight:700; color:#0c1b33; letter-spacing:-0.02em; margin:0 0 4px; }
.eg-sub{ font-size:.92rem; color:#9aa6b5; margin:0 0 1.7rem; }
.eg-field{ margin-bottom:1.15rem; }
.eg-input{ width:100%; border:none; border-bottom:1.5px solid rgba(12,27,51,0.15); background:none; padding:9px 2px; font-family:'Inter',sans-serif; font-size:1rem; color:#0c1b33; transition:border-color .25s ease; }
.eg-input:focus{ outline:none; border-bottom-color:#F5C842; }
.eg-input::placeholder{ color:#b5bdc9; }
.eg-reassure{ font-size:.7rem; color:#aeb7c2; margin:-.35rem 0 1.5rem; line-height:1.4; }
.eg-submit{ position:relative; width:100%; border:none; border-radius:14px; background:#0c1b33; color:#fff; font-family:'Inter',sans-serif; font-weight:600; font-size:1rem; padding:15px; cursor:pointer; transition:transform .2s ease, background .2s ease; }
.eg-submit:hover{ transform:translateY(-1px); background:#15294a; }
.eg-submit:disabled{ cursor:default; }
.eg-submit-txt{ transition:opacity .2s ease; }
.eg-submit.loading .eg-submit-txt{ opacity:0; }
.eg-spinner{ display:none; position:absolute; top:50%; left:50%; width:18px; height:18px; margin:-9px 0 0 -9px; border:2px solid rgba(255,255,255,0.3); border-top-color:#fff; border-radius:50%; animation:egSpin .7s linear infinite; }
.eg-submit.loading .eg-spinner{ display:block; }
@keyframes egSpin{ to{ transform:rotate(360deg) } }

/* --- Page merci --- */
.eg-merci{ min-height:72vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:120px 20px 90px; }
.eg-merci-inner{ max-width:440px; }
.eg-merci-check{ width:64px; height:64px; margin:0 auto 1.5rem; border-radius:50%; background:linear-gradient(135deg,#F5C842,#D4AF37); display:flex; align-items:center; justify-content:center; box-shadow:0 14px 34px -10px rgba(212,175,55,0.5); }
.eg-merci-check svg{ width:30px; height:30px; }
.eg-merci-title{ font-family:'Inter',sans-serif; font-size:2rem; font-weight:700; color:#0c1b33; letter-spacing:-0.02em; margin:0 0 .6rem; }
.eg-merci-sub{ font-size:1rem; color:#9aa6b5; margin:0 0 2.6rem; }
.eg-merci-card{ border:1px solid rgba(12,27,51,0.1); border-radius:18px; padding:1.6rem; background:rgba(255,255,255,0.6); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); }
.eg-merci-card p{ font-size:.95rem; color:#4a5a6e; line-height:1.6; margin:0 0 1.1rem; }
.eg-merci-wa{ display:inline-block; font-weight:600; font-size:.92rem; color:#0c1b33; text-decoration:none; border-bottom:1.5px solid #F5C842; padding-bottom:2px; transition:color .2s ease; }
.eg-merci-wa:hover{ color:#C99B22; }
@media (prefers-reduced-motion:reduce){ .eg-card,.eg-backdrop{ animation:none; } }

/* Modale guide : puces de domaine email (remplissage express) */
.eg-chips{ display:none; flex-wrap:wrap; gap:6px; margin-top:9px; }
.eg-chips.show{ display:flex; animation:egFade .2s ease; }
.eg-chip{ border:1px solid rgba(12,27,51,0.12); background:#fff; color:#0c1b33; font-family:'Inter',sans-serif; font-size:.72rem; font-weight:600; padding:5px 11px; border-radius:999px; cursor:pointer; transition:border-color .2s ease, background .2s ease; -webkit-tap-highlight-color:transparent; }
.eg-chip:hover{ border-color:#F5C842; background:rgba(245,200,66,0.08); }
.eg-chip:active{ transform:scale(.96); }

/* Modale guide : messages d'erreur sobres */
.eg-err{ font-size:.72rem; color:#dc2626; margin-top:6px; min-height:0; line-height:1.35; }
.eg-err:empty{ margin-top:0; }
.eg-input.eg-invalid{ border-bottom-color:#dc2626; }

/* Modale guide : choix WhatsApp / email */
.eg-seg{ display:grid; grid-template-columns:1fr 1fr; gap:4px; background:rgba(12,27,51,0.05); border-radius:14px; padding:4px; margin:0 0 1.5rem; }
.eg-seg-btn{ border:none; background:none; cursor:pointer; font-family:'Inter',sans-serif; font-size:.85rem; font-weight:600; color:#5a6b82; padding:9px; border-radius:10px; transition:background .2s ease, color .2s ease, box-shadow .2s ease; -webkit-tap-highlight-color:transparent; }
.eg-seg-btn.active{ background:#fff; color:#0c1b33; box-shadow:0 2px 8px rgba(12,27,51,0.08); }
.eg-pane[hidden]{ display:none; }
.eg-wa-btn{ display:flex; align-items:center; justify-content:center; gap:10px; width:100%; padding:15px; border-radius:14px; background:#25D366; color:#fff; font-family:'Inter',sans-serif; font-weight:700; font-size:1rem; text-decoration:none; box-shadow:0 12px 28px -10px rgba(37,211,102,0.6); transition:transform .2s ease, box-shadow .2s ease; }
.eg-wa-btn:hover{ transform:translateY(-1px); box-shadow:0 16px 34px -10px rgba(37,211,102,0.7); }
.eg-wa-btn svg{ width:22px; height:22px; fill:#fff; }

/* Modale guide : sous-titre d'accroche sous le titre */
.eg-sub-lead{ margin-bottom:1.2rem !important; color:#5a6b82; }

/* ============================================================
   GUIDE OFFERT — bande intégrée (.eg-inline)
   ============================================================ */
.eg-inline-sec{ padding:10px 0 30px; }
.eg-inline{ position:relative; overflow:hidden; display:grid; grid-template-columns:1.6fr auto; align-items:center; gap:28px; max-width:920px; margin:0 auto; background:linear-gradient(150deg,#0c1b33 0%, #15294a 100%); border:1px solid rgba(212,175,55,0.28); border-radius:26px; padding:30px 34px; box-shadow:0 30px 70px -34px rgba(12,27,51,0.6); cursor:pointer; transition:transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s; }
.eg-inline:hover{ transform:translateY(-3px); box-shadow:0 38px 84px -34px rgba(12,27,51,0.7); }
.eg-inline-glow{ position:absolute; top:-60%; right:-10%; width:360px; height:360px; background:radial-gradient(circle, rgba(245,200,66,0.14), transparent 70%); pointer-events:none; }
.eg-inline-left{ position:relative; z-index:1; }
.eg-inline-eyebrow{ display:inline-flex; align-items:center; gap:8px; font-family:'Space Grotesk',sans-serif; font-size:.68rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:#F5C842; margin-bottom:12px; }
.eg-inline-dot{ width:6px; height:6px; border-radius:50%; background:#F5C842; box-shadow:0 0 8px rgba(245,200,66,0.8); }
.eg-inline-title{ font-family:'Space Grotesk',sans-serif; font-size:clamp(1.3rem,3.4vw,1.85rem); font-weight:800; color:#fff; line-height:1.15; letter-spacing:-0.02em; margin:0 0 .7rem; }
.eg-inline-title .pm-gold{ background:linear-gradient(120deg,#F5C842,#D4AF37 60%,#C99B22); -webkit-background-clip:text; background-clip:text; color:transparent; }
.eg-inline-sub{ font-size:.92rem; line-height:1.6; color:rgba(255,255,255,0.72); margin:0 0 1.3rem; max-width:440px; }
.eg-inline-cta{ display:inline-flex; align-items:center; gap:9px; background:linear-gradient(135deg,#F5C842,#D4AF37); color:#0c1b33; font-family:'Space Grotesk',sans-serif; font-weight:800; font-size:.95rem; padding:13px 22px; border:none; border-radius:13px; cursor:pointer; box-shadow:0 14px 30px -12px rgba(245,200,66,0.6); transition:transform .2s ease, box-shadow .2s ease; }
.eg-inline-cta:hover{ transform:translateY(-2px); box-shadow:0 18px 38px -12px rgba(245,200,66,0.7); }
.eg-inline-arrow{ transition:transform .3s ease; }
.eg-inline:hover .eg-inline-arrow{ transform:translateX(4px); }
.eg-inline-note{ font-size:.72rem; color:rgba(255,255,255,0.5); margin-top:12px; }

/* Couverture de guide stylisée */
.eg-inline-visual{ position:relative; z-index:1; }
.eg-guide-cover{ position:relative; width:150px; height:196px; border-radius:14px; background:linear-gradient(160deg,#fff 0%, #f3f6fb 100%); box-shadow:0 26px 50px -18px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(212,175,55,0.4); padding:18px 16px; transform:rotate(3deg); transition:transform .4s cubic-bezier(.16,1,.3,1); }
.eg-inline:hover .eg-guide-cover{ transform:rotate(0deg) translateY(-2px); }
.eg-guide-cover::before{ content:""; position:absolute; left:0; top:14px; bottom:14px; width:4px; border-radius:0 3px 3px 0; background:linear-gradient(180deg,#F5C842,#D4AF37); }
.eg-guide-kicker{ font-family:'Space Grotesk',sans-serif; font-size:.6rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:#C99B22; }
.eg-guide-h{ font-family:'Space Grotesk',sans-serif; font-size:1.15rem; font-weight:800; color:#0c1b33; line-height:1.1; letter-spacing:-0.02em; margin-top:8px; }
.eg-guide-lines{ position:absolute; left:16px; right:16px; bottom:20px; display:flex; flex-direction:column; gap:6px; }
.eg-guide-lines span{ height:5px; border-radius:3px; background:rgba(12,27,51,0.1); }
.eg-guide-lines span:nth-child(2){ width:80%; } .eg-guide-lines span:nth-child(3){ width:55%; }
.eg-guide-seal{ position:absolute; right:-12px; bottom:-12px; background:linear-gradient(135deg,#F5C842,#D4AF37); color:#0c1b33; font-family:'Space Grotesk',sans-serif; font-size:.64rem; font-weight:800; text-transform:uppercase; letter-spacing:.05em; padding:7px 12px; border-radius:999px; box-shadow:0 8px 18px rgba(212,175,55,0.5); }

@media (max-width:640px){
  .eg-inline{ grid-template-columns:1fr; gap:20px; padding:26px 22px; text-align:center; }
  .eg-inline-eyebrow{ justify-content:center; }
  .eg-inline-sub{ margin-left:auto; margin-right:auto; }
  .eg-inline-visual{ order:-1; display:flex; justify-content:center; }
  .eg-guide-cover{ width:128px; height:168px; transform:rotate(-2deg); }
}

/* ============================================================
   ACCUEIL — header de section unifié (kicker or + titre moyen)
   ============================================================ */
.home .sec-kicker{ display:inline-flex; align-items:center; gap:8px; font-family:'Space Grotesk',sans-serif; font-size:.7rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:#C99B22; margin-bottom:.7rem; }
.home .sec-kicker-dot{ width:6px; height:6px; border-radius:50%; background:#F5C842; box-shadow:0 0 8px rgba(245,200,66,.8); flex-shrink:0; }
/* le petit label devient un vrai titre moyen, cohérent partout */
.home .sec-eyebrow{ font-family:'Space Grotesk',sans-serif !important; font-size:clamp(1.35rem,4.2vw,1.75rem) !important; font-weight:800 !important; letter-spacing:-0.02em !important; text-transform:none !important; color:#15294a !important; line-height:1.16 !important; margin:0 !important; animation:none !important; }
.home .sec-eyebrow br{ display:inline !important; }
/* on ramène CTA et FAQ à la même échelle */
.home .cta-pro-title{ font-size:clamp(1.5rem,4vw,1.95rem) !important; }
.home .pm-faq-head h2{ font-size:clamp(1.5rem,4vw,1.95rem) !important; }

/* Section avis extraite : même rythme que les autres */
.home .reviews-section{ padding:30px 0 !important; }
@media (min-width:768px){ .home .reviews-section{ padding:40px 0 !important; } }

/* Section application extraite : même rythme */
.home .app-section{ padding:30px 0 !important; }
@media (min-width:768px){ .home .app-section{ padding:40px 0 !important; } }

/* Correctif espacement : halo décoratif qui créait un vide entre le graphe et les avis */
.home .cc-flow-glow{ display:none !important; }

/* Espace graphe -> avis divisé par 2 */
.home .reviews-section{ padding-top:0 !important; }

/* Espace modalités (hero) -> "L'application" divisé par 2 */
.home .app-section{ padding-top:0 !important; }

/* ============================================================
   FONDATEUR — section "Le déclic" (cœur émotionnel)
   ============================================================ */
.dcl-dot{ width:7px; height:7px; border-radius:50%; background:#F5C842; box-shadow:0 0 8px rgba(245,200,66,0.85); flex-shrink:0; }
.dcl-hook{ font-family:'Space Grotesk',sans-serif; font-size:clamp(1.05rem,3vw,1.3rem); font-weight:600; color:#1b3a63; margin:.7rem auto 0; max-width:520px; line-height:1.45; }

.dcl-grid{ max-width:560px; margin:0 auto 20px; display:grid; grid-template-columns:1fr; gap:18px; align-items:start; }
.dcl-story{ position:relative; overflow:hidden; }
.dcl-story p + p{ margin-top:.7rem; }
.dcl-num{ position:absolute; top:16px; right:20px; font-family:'Space Grotesk',sans-serif; font-size:1.7rem; font-weight:800; color:rgba(212,175,55,0.22); line-height:1; pointer-events:none; }

.dcl-chips{ display:flex; flex-wrap:wrap; gap:7px; margin-top:15px; }
.dcl-chips span{ font-family:'Space Grotesk',sans-serif; font-size:.72rem; font-weight:700; color:#0c1b33; background:linear-gradient(135deg, rgba(245,200,66,0.22), rgba(245,200,66,0.08)); border:1px solid rgba(212,175,55,0.35); padding:5px 11px; border-radius:999px; }

.dcl-hl{ display:flex; align-items:baseline; gap:11px; margin-top:16px; padding-top:14px; border-top:1px dashed rgba(12,27,51,0.14); }
.dcl-hl b{ font-family:'Space Grotesk',sans-serif; font-size:1.7rem; font-weight:800; color:#0c1b33; letter-spacing:-0.02em; line-height:1; }
.dcl-hl span{ font-size:.8rem; color:#5a6b82; line-height:1.35; }

.dcl-manifesto{ margin-top:4px; }
@media (max-width:640px){
  .dcl-grid{ grid-template-columns:1fr; gap:14px; }
  .dcl-num{ font-size:1.5rem; top:14px; right:16px; }
}
