@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --black: #080808;
  --charcoal: #111111;
  --surface: #151515;
  --off-white: #f7f7f7;
  --accent: #b08d57;
  --accent-light: #c9a66b;
  --accent-dark: #8a6d3b;
  --accent-glow: rgba(176, 141, 87, 0.15);
  --accent-glow-strong: rgba(176, 141, 87, 0.25);
  --muted: rgba(247, 247, 247, 0.65);
  --muted-light: rgba(247, 247, 247, 0.45);
  --border: rgba(247, 247, 247, 0.06);
  --border-accent: rgba(176, 141, 87, 0.15);
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b08d57 25%, #c9a66b 50%, #b08d57 75%, #8a6d3b 100%);
}

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

::selection {
  background: var(--accent);
  color: var(--black);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--black);
  color: var(--off-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.page {
  background: var(--black);
  position: relative;
}

/* ==================== CUSTOM CURSOR ==================== */
.cursor {
  width: 20px;
  height: 20px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor.hover {
  width: 50px;
  height: 50px;
  background: rgba(176, 141, 87, 0.1);
  border-color: var(--accent-light);
}

@media (max-width: 900px) {
  .cursor, .cursor-dot { display: none; }
}

/* ==================== SPOTLIGHT EFFECT ==================== */
.spotlight {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* Subtle noise texture for premium feel */
.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

/* ==================== GOLD SHIMMER EFFECT ==================== */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent-light) 25%,
    #fff 50%,
    var(--accent-light) 75%,
    var(--accent) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* ==================== DECORATIVE ELEMENTS ==================== */
.deco-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.deco-line.horizontal {
  width: 100%;
  height: 1px;
}

.deco-line.vertical {
  width: 1px;
  height: 100%;
}

.deco-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent);
  opacity: 0.2;
}

.deco-corner.top-left {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.deco-corner.top-right {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.deco-corner.bottom-left {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.deco-corner.bottom-right {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

/* ==================== FLOATING PARTICLES ==================== */
.particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 15s infinite;
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1);
  }
}

/* ==================== MAIN NAVIGATION ==================== */
.main-nav {
  position: fixed;
  top: 44px; /* Below launch banner */
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-decoration: none;
}

.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--off-white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border-accent);
  z-index: 1000;
}

.nav-menu.active {
  right: 0;
}

.nav-link {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
  padding-left: 8px;
}

.nav-cta {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==================== URGENCY BAR ==================== */
.urgency-bar {
  position: fixed;
  top: 98px; /* 60px nav + 38px launch banner */
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  z-index: 999;
  text-align: center;
}

.urgency-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  padding: 0 20px;
}

.urgency-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  font-weight: 600;
}

.urgency-date {
  color: var(--off-white);
  font-weight: 600;
}

.urgency-separator {
  color: var(--muted-light);
  margin: 0 2px;
}

.urgency-places {
  color: var(--muted);
  font-weight: 500;
}

#places-count {
  color: var(--accent);
  font-weight: 700;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px; /* For launch banner + nav */
  position: relative;
  background: 
    radial-gradient(ellipse 60% 40% at 50% 0%, var(--accent-glow), transparent 70%),
    radial-gradient(ellipse 80% 60% at 80% 100%, rgba(176, 141, 87, 0.05), transparent);
}

/* Hero Clean - Structure épurée */
.hero-clean {
  min-height: auto;
  padding: 140px 0 80px;
  text-align: center;
}

.hero-clean .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 850px;
}

/* Headline - Le problème, grand et impactant */
.hero-headline {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.3;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.headline-reason {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 500;
}

/* Subheadline - La solution */
.hero-subheadline {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 680px;
}

.hero-subheadline .text-accent {
  color: var(--accent);
  font-weight: 600;
}

.hero-pillars {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.05em;
}

/* CTA wrapper */
.hero-cta-wrapper {
  margin-bottom: 40px;
}

.hero-cta-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}

/* Points de réassurance */
.hero-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.reassurance-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Legacy hero compact styles */
.hero-compact {
  min-height: auto;
  padding: 120px 0 60px;
}

.hero-compact .hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
}

.hero-block {
  padding: 28px 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.hero-hook {
  text-align: center;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(176, 141, 87, 0.2);
}

.hero-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  line-height: 1.5;
}

.hero-offer {
  text-align: center;
  background: transparent;
  border: none;
  padding: 0;
}

.hero-pitch {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--off-white);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-cta {
  margin-bottom: 20px;
}

.btn-large {
  padding: 18px 32px;
  font-size: 1.05rem;
}

.hero-antidote {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--border-accent) 50%, transparent 90%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

/* ==================== BRAND BADGE ==================== */
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.1) 0%, transparent 100%);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.brand-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.1), transparent);
  animation: badge-shine 2s ease-in-out infinite;
}

@keyframes badge-shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.brand-logo {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px var(--accent); }
  50% { box-shadow: 0 0 25px var(--accent), 0 0 35px var(--accent-glow); }
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.6em;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  position: relative;
}

h1.hero-title-accent {
  background: linear-gradient(135deg, var(--off-white) 0%, var(--off-white) 40%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

h1.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 40px;
  color: var(--muted);
}

h1.hero-subtitle .text-accent {
  color: var(--accent);
  font-weight: 600;
}

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

.hero-description {
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-description .lead {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.8;
  color: var(--off-white);
  margin-bottom: 0;
}

.hero-description .lead strong {
  color: var(--accent);
  font-weight: 600;
}

.hero-philosophy {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-philosophy .text-accent {
  font-weight: 500;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.pillar-item {
  font-size: 1rem;
  font-weight: 500;
  color: var(--off-white);
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.1) 0%, rgba(176, 141, 87, 0.05) 100%);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.pillar-item:hover {
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.2) 0%, rgba(176, 141, 87, 0.1) 100%);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.hero-conclusion {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 48px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .nav-content {
    padding: 10px 16px;
  }
  
  .nav-logo {
    font-size: 0.75rem;
  }
  
  .hero-description .lead br {
    display: none;
  }
  
  .hero-philosophy br {
    display: none;
  }
  
  h1.hero-subtitle br {
    display: none;
  }
  
  .hero-pillars {
    gap: 10px;
  }
  
  .pillar-item {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* Text reveal animation */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

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

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  color: var(--off-white);
  font-weight: 400;
  margin-bottom: 20px;
}

.body {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.85;
}

.accent-line {
  color: var(--off-white);
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
  margin: 8px 0;
}

/* ==================== STATS INLINE ==================== */
.stats-inline {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.05) 0%, transparent 100%);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.stats-inline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  padding-left: 16px;
}

.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: linear-gradient(180deg, var(--accent), transparent);
  border-radius: 2px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ==================== CTA ==================== */
.cta-block {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 42px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--accent) 100%);
  background-size: 200% auto;
  color: var(--black);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 15px rgba(176, 141, 87, 0.25),
    0 20px 40px rgba(176, 141, 87, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  transition: left 0.5s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  background-position: right center;
  box-shadow: 
    0 10px 30px rgba(176, 141, 87, 0.4),
    0 30px 60px rgba(176, 141, 87, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 0 40px rgba(176, 141, 87, 0.2);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(-2px) scale(1);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-large {
  padding: 22px 52px;
  font-size: 1.1rem;
}

.btn-compact {
  padding: 12px 24px;
  font-size: 0.9rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 10px 30px rgba(176, 141, 87, 0.3);
}

.btn svg {
  flex-shrink: 0;
}

/* Section CTA intermédiaires */
.section-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
}

.micro-text {
  font-size: 0.88rem;
  color: var(--muted-light);
  margin-top: 8px;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 110px 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.section:first-of-type::before {
  display: none;
}

.section.short {
  padding: 90px 0;
}

.section.final {
  padding: 120px 0 180px;
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, var(--accent-glow), transparent);
}

.section.final .cta-block {
  align-items: center;
}

.container {
  width: min(880px, 88%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-lead {
  color: var(--off-white);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ==================== ECOSYSTEM SECTION ==================== */
.ecosystem-header {
  text-align: center;
  margin-bottom: 48px;
}

.ecosystem-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.ecosystem-title {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 20px;
}

.ecosystem-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 28px;
}

.ecosystem-contrast {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.contrast-before {
  font-size: 0.95rem;
  color: var(--muted-light);
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border-left: 3px solid var(--muted);
}

.contrast-after {
  font-size: 1rem;
  color: var(--off-white);
  padding: 12px 20px;
  background: rgba(176, 141, 87, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.contrast-after strong {
  color: var(--accent);
}

.ecosystem-footer {
  margin-top: 48px;
  text-align: center;
}

.ecosystem-goal {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.ecosystem-goal strong {
  color: var(--off-white);
}

@media (max-width: 720px) {
  .ecosystem-header {
    margin-bottom: 36px;
  }
  
  .ecosystem-intro {
    font-size: 1rem;
  }
  
  .ecosystem-contrast {
    gap: 6px;
  }
  
  .contrast-before,
  .contrast-after {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
  
  .ecosystem-footer {
    margin-top: 36px;
  }
  
  .ecosystem-goal {
    font-size: 1.05rem;
  }
}

/* ==================== LISTS ==================== */
.list {
  list-style: none;
  margin: 24px 0 36px;
  display: grid;
  gap: 0;
}

.list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
  transition: padding-left 0.3s ease, color 0.3s ease;
}

.list li:hover {
  padding-left: 8px;
  color: var(--accent-light);
}

.list li:last-child {
  border-bottom: none;
}

.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ==================== 4 PILIERS ==================== */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0 0;
}

.steps li {
  padding: 32px 28px;
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  background: 
    linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    var(--surface);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.steps li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 80%);
}

.steps li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--accent-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.steps li:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 141, 87, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px var(--accent-glow);
}

.steps li:hover::after {
  opacity: 1;
}

.steps li > * {
  position: relative;
  z-index: 1;
}

.steps-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.steps-title {
  color: var(--off-white);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.steps li .body {
  font-size: 0.98rem;
  margin-bottom: 14px;
  color: var(--muted);
}

.steps li .body:last-child {
  margin-bottom: 0;
  color: var(--accent-light);
  font-weight: 500;
}

/* ==================== CALLOUT ==================== */
.callout {
  margin-top: 48px;
  padding: 32px 36px;
  border-left: 3px solid var(--accent);
  background: 
    linear-gradient(90deg, var(--accent-glow), transparent 60%),
    var(--surface);
  border-radius: 0 16px 16px 0;
  color: var(--off-white);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
}

.callout::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

/* ==================== RESULTS GRID ==================== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.result-card {
  padding: 40px 28px;
  background: 
    linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    var(--surface);
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--accent-glow) 60deg,
    transparent 120deg
  );
  opacity: 0;
  animation: rotate-glow 4s linear infinite paused;
  transition: opacity 0.4s ease;
}

.result-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--surface);
  border-radius: 23px;
  z-index: 0;
}

.result-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

@keyframes rotate-glow {
  100% { transform: rotate(360deg); }
}

.result-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(176, 141, 87, 0.5);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 80px var(--accent-glow);
}

.result-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.result-number::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.result-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  background: 
    radial-gradient(ellipse 70% 50% at 50% 50%, var(--accent-glow), transparent),
    linear-gradient(180deg, transparent 0%, rgba(176, 141, 87, 0.02) 50%, transparent 100%);
  position: relative;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15rem;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.03;
  pointer-events: none;
}

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

.testimonial-card {
  padding: 36px 28px;
  background: 
    linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.testimonial-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 60px var(--accent-glow);
}

.testimonial-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--black);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(176, 141, 87, 0.3);
  position: relative;
}

.testimonial-avatar::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.3;
}

.testimonial-name {
  font-weight: 600;
  color: var(--off-white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-info {
  font-size: 0.82rem;
  color: var(--muted);
}

.testimonial-before,
.testimonial-after {
  font-size: 0.88rem;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.testimonial-before {
  background: rgba(255, 100, 100, 0.08);
  border-left: 3px solid rgba(255, 100, 100, 0.4);
  color: rgba(255, 180, 180, 0.9);
}

.testimonial-after {
  background: rgba(100, 255, 150, 0.08);
  border-left: 3px solid var(--accent);
  color: var(--accent-light);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin-top: 16px;
}

/* ==================== TIMELINE (90 jours) ==================== */
.timeline-wrapper {
  margin-top: 48px;
}

.timeline-collapsible {
  max-height: 380px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}

.timeline-collapsible::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.timeline-collapsible.expanded {
  max-height: 2000px;
}

.timeline-collapsible.expanded::after {
  opacity: 0;
}

.timeline-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 24px auto 0;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-toggle:hover {
  background: rgba(176, 141, 87, 0.1);
  border-color: var(--accent);
}

.toggle-arrow {
  transition: transform 0.3s ease;
}

.timeline-toggle.expanded .toggle-arrow {
  transform: rotate(180deg);
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline-phase {
  padding: 32px 32px;
  background: 
    linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.timeline-phase:hover {
  border-left-color: var(--accent-light);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.timeline-week {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 16px;
}

.timeline-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.timeline-list li {
  font-size: 0.95rem;
  color: var(--muted);
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.timeline-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ==================== DELIVERABLES ==================== */
.deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.deliverable-group {
  padding: 32px 28px;
  background: 
    linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.deliverable-group:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.deliverable-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.deliverable-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
}

.deliverable-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.deliverable-list li {
  font-size: 0.95rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.deliverable-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.deliverable-list strong {
  color: var(--off-white);
  font-weight: 600;
}

/* ==================== METHOD INTRO ==================== */
.method-intro {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.method-result {
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.1) 0%, rgba(176, 141, 87, 0.05) 100%);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  text-align: center;
}

.method-result-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.method-result-text {
  font-size: 1.1rem;
  color: var(--off-white);
  line-height: 1.7;
  margin: 0;
}

/* ==================== HERO REASSURANCE ==================== */
.hero-reassurance {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
}

.hero-reassurance .text-muted {
  color: var(--muted-light);
}

/* ==================== HERO POSITIONING ==================== */
.hero-positioning {
  margin-top: 40px;
  padding: 28px 32px;
  background: rgba(176, 141, 87, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  text-align: center;
}

.hero-positioning p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
}

.hero-positioning p:last-child {
  margin-bottom: 0;
}

.positioning-accent {
  font-size: 1.15rem !important;
  font-weight: 600;
  color: var(--accent) !important;
  margin-top: 20px !important;
}

@media (max-width: 720px) {
  .hero-positioning {
    padding: 20px;
  }
  
  .hero-positioning p {
    font-size: 0.95rem;
  }
}

/* ==================== URGENCY BAR REASSURANCE ==================== */
.urgency-reassurance {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.3px;
  margin-top: 6px;
  text-align: center;
}

@media (max-width: 720px) {
  .urgency-reassurance {
    font-size: 0.65rem;
  }
}

/* ==================== METHOD PRINCIPLES ==================== */
.method-principles {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(176, 141, 87, 0.08);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
}

.principles-label {
  font-size: 0.85rem;
  color: var(--off-white);
  margin-bottom: 12px;
}

.principles-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.principle {
  font-size: 0.9rem;
  color: var(--muted);
}

.principles-details {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.principle-detail {
  font-size: 0.82rem;
  color: var(--muted-light);
}

@media (max-width: 720px) {
  .method-principles {
    padding: 16px 20px;
  }
  
  .principles-details {
    flex-direction: column;
    gap: 8px;
  }
}

/* ==================== PILLAR GUARANTEE ==================== */
.pillar-guarantee {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* ==================== WORK GRID ==================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.work-grid-condensed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.work-item-condensed {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.work-item-condensed:hover {
  border-color: var(--border-accent);
}

.work-item {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.work-item:hover {
  border-color: var(--border-accent);
}

.work-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(176, 141, 87, 0.1);
  border-radius: 12px;
  color: var(--accent);
}

.work-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 12px;
}

.work-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .work-grid-condensed {
    grid-template-columns: 1fr;
  }
  
  .work-item-condensed {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
  
  .work-item {
    padding: 20px;
  }
}

/* ==================== RESULTS BONUS ==================== */
.results-bonus {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.results-bonus p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 8px 0;
}

.results-bonus-final {
  margin-top: 16px !important;
  font-size: 1rem !important;
  color: var(--off-white) !important;
}

/* ==================== TEAM DISCLAIMER ==================== */
.team-disclaimer {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 8px;
  margin-bottom: 32px;
}

/* ==================== CLARIFICATION GRID ==================== */
.clarification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

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

.clarification-not .clarification-item {
  padding: 14px 18px;
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 8px;
}

.clarification-not .clarification-icon {
  color: #dc3545;
  margin-right: 12px;
  font-weight: 600;
}

.clarification-is .clarification-item {
  padding: 14px 18px;
  background: rgba(176, 141, 87, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
}

.clarification-is .clarification-icon {
  color: var(--accent);
  margin-right: 12px;
  font-weight: 600;
}

.clarification-item {
  font-size: 0.95rem;
  color: var(--off-white);
}

@media (max-width: 720px) {
  .clarification-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==================== SCENARIOS GRID ==================== */
.scenarios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.scenario {
  padding: 32px;
  background: var(--surface);
  border-radius: 12px;
  border-left: 4px solid;
}

.scenario-bad {
  border-left-color: #dc3545;
}

.scenario-good {
  border-left-color: #27ae60;
}

.scenario-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 16px;
}

.scenario-bad .scenario-title {
  color: #dc3545;
}

.scenario-good .scenario-title {
  color: #27ae60;
}

.scenario p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 12px;
}

.scenario-conclusion {
  margin-top: 20px !important;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--off-white) !important;
}

.scenarios-conclusion {
  margin-top: 48px;
  padding: 32px;
  background: var(--charcoal);
  border-radius: 12px;
  text-align: center;
}

.scenarios-conclusion p {
  font-size: 1.1rem;
  color: var(--off-white);
  margin: 0 0 12px;
  line-height: 1.6;
}

.scenarios-final {
  font-size: 1.2rem !important;
  font-weight: 600;
  color: var(--accent) !important;
  margin-top: 24px !important;
}

@media (max-width: 900px) {
  .scenarios-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== INACTION SECTION ==================== */
.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.inaction-intro {
  text-align: center;
  margin-bottom: 48px;
}

.inaction-headline {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 8px;
}

.inaction-warning {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 16px;
}

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

.inaction-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.inaction-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 12px;
}

.inaction-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 10px;
}

.inaction-card p:last-child {
  margin-bottom: 0;
}

.inaction-conclusion {
  margin-top: 48px;
  padding: 32px;
  background: var(--charcoal);
  border-radius: 12px;
  text-align: center;
}

.inaction-conclusion p {
  font-size: 1.05rem;
  color: var(--off-white);
  margin: 0 0 12px;
  line-height: 1.6;
}

.inaction-cta {
  font-size: 1.2rem !important;
  font-weight: 700;
  color: var(--accent) !important;
  margin-top: 20px !important;
}

@media (max-width: 900px) {
  .inaction-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 32px auto 0;
}

.testimonial-card {
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid #27ae60;
  border-radius: 8px;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.8;
  margin: 0 0 16px;
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
}

/* ==================== FAQ PRICE ==================== */
.faq-price {
  font-size: 1.3rem !important;
  font-weight: 600;
  color: var(--accent) !important;
  margin-bottom: 20px !important;
}

.faq-cta {
  font-size: 1.1rem !important;
  margin-top: 20px !important;
}

/* ==================== FINAL REASSURANCE ==================== */
.final-reassurance {
  max-width: 600px;
  margin: 24px auto 0;
  text-align: center;
}

.final-reassurance p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.6;
}

.final-questions {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.final-questions li {
  font-size: 0.95rem;
  color: var(--off-white);
}

.final-questions li::before {
  content: "→ ";
  color: var(--accent);
}

.final-reassurance-accent {
  color: var(--off-white) !important;
  margin-top: 20px !important;
}

/* ==================== MODAL DISCLAIMER ==================== */
.modal-disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* ==================== PILLAR EXPANDABLE ==================== */
.pillar-expandable {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pillar-expandable:hover {
  border-color: var(--border-accent);
}

.pillar-expandable.active {
  border-color: var(--accent);
  background: linear-gradient(165deg, var(--surface) 0%, rgba(176, 141, 87, 0.05) 100%);
}

.pillar-preview-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
}

.pillar-num-large {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 50px;
}

.pillar-preview-content {
  flex: 1;
}

.pillar-preview-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 4px;
}

.pillar-preview-result {
  font-size: 0.95rem;
  color: var(--accent-light);
  margin: 0;
}

.pillar-expand-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(176, 141, 87, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  color: var(--accent);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pillar-expand-btn:hover {
  background: rgba(176, 141, 87, 0.2);
}

.pillar-expand-btn svg {
  transition: transform 0.3s ease;
}

.pillar-expandable.active .pillar-expand-btn svg {
  transform: rotate(180deg);
}

.pillar-expandable.active .pillar-expand-btn span {
  display: none;
}

.pillar-expandable.active .pillar-expand-btn::before {
  content: "Réduire";
}

.pillar-full-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.pillar-expandable.active .pillar-full-content {
  max-height: 800px;
}

.pillar-section {
  padding: 0 28px 24px 98px;
}

.pillar-section:first-child {
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.pillar-section-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin: 0 0 12px;
}

.pillar-section p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.pillar-section strong {
  color: var(--off-white);
}

.pillar-actions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-actions li {
  font-size: 0.92rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}

.pillar-actions li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.pillar-outcome {
  background: rgba(176, 141, 87, 0.08);
  margin: 0 20px 20px 20px;
  padding: 20px 24px 20px 78px !important;
  border-radius: 12px;
}

.pillar-results-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pillar-results-list li {
  font-size: 0.9rem;
  color: var(--off-white);
  padding-left: 20px;
  position: relative;
}

.pillar-results-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.pillar-final-line {
  font-size: 1rem;
  color: var(--accent-light);
  font-weight: 500;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .pillar-preview-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
  }
  
  .pillar-expand-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
  
  .pillar-section {
    padding: 0 20px 20px 20px;
  }
  
  .pillar-outcome {
    margin: 0 12px 16px;
    padding: 16px !important;
  }
  
  .pillar-results-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .pillar-num-large {
    font-size: 1.2rem;
    min-width: 40px;
  }
  
  .pillar-preview-title {
    font-size: 1.05rem;
  }
  
  .pillar-preview-result {
    font-size: 0.85rem;
  }
}

/* ==================== TIMELINE ACCORDION ==================== */
.timeline-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.timeline-accordion {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  border-color: var(--border-accent);
}

.timeline-item.active {
  border-color: var(--accent);
  background: linear-gradient(165deg, var(--surface) 0%, rgba(176, 141, 87, 0.05) 100%);
}

.timeline-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.timeline-week {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  min-width: 85px;
  flex-shrink: 0;
}

.timeline-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
  color: var(--off-white);
}

.timeline-chevron {
  color: var(--muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.timeline-item.active .timeline-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.timeline-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.timeline-item.active .timeline-content {
  max-height: 400px;
}

.timeline-content p {
  padding: 0 20px 0 121px;
  margin: 0 0 12px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.timeline-content p:first-child {
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.timeline-content p:last-child {
  padding-bottom: 20px;
  margin-bottom: 0;
}

.timeline-content em {
  color: var(--off-white);
  font-style: italic;
}

.timeline-result {
  color: var(--accent-light) !important;
  font-weight: 500;
}

.timeline-final {
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.1) 0%, var(--surface) 100%);
  border-color: var(--border-accent);
}

.timeline-final .timeline-week {
  color: var(--off-white);
}

@media (max-width: 720px) {
  .timeline-header {
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
  }
  
  .timeline-week {
    min-width: 80px;
  }
  
  .timeline-title {
    font-size: 0.95rem;
    flex-basis: calc(100% - 120px);
  }
  
  .timeline-chevron {
    margin-left: auto;
  }
  
  .timeline-content p {
    padding: 0 16px;
  }
  
  .timeline-content p:first-child {
    padding-top: 12px;
  }
}

/* ==================== IMAGINE SECTION ==================== */
.imagine-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.imagine-card {
  background: linear-gradient(165deg, var(--surface) 0%, var(--charcoal) 100%);
  border: 1px solid var(--border-accent);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.imagine-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.imagine-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 32px;
}

.imagine-content {
  max-width: 550px;
  margin: 0 auto;
}

.imagine-content p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 24px;
}

.imagine-content strong {
  color: var(--off-white);
}

.imagine-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.imagine-list li {
  font-size: 1rem;
  color: var(--muted-light);
  padding-left: 24px;
  position: relative;
}

.imagine-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.imagine-conclusion {
  font-size: 1.2rem;
  color: var(--off-white);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-bottom: 0 !important;
}

@media (max-width: 720px) {
  .imagine-card {
    padding: 32px 24px;
  }
  
  .imagine-content p {
    font-size: 1rem;
  }
  
  .imagine-conclusion {
    font-size: 1.1rem;
  }
}

/* ==================== PILLARS GRID ==================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.pillar-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.pillar-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
}

.pillar-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--off-white);
  margin: 8px 0 12px;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pillar-result {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
}

.result-arrow {
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}

.pillar-result p {
  font-size: 0.9rem;
  color: var(--accent-light);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .pillar-card {
    padding: 24px 20px;
  }
  
  .pillar-title {
    font-size: 1.1rem;
  }
}

/* ==================== PARCOURS GRID ==================== */
.parcours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.parcours-phase {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.parcours-phase:hover {
  border-color: var(--border-accent);
}

.parcours-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.parcours-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.parcours-weeks {
  font-size: 0.8rem;
  color: var(--muted);
}

.parcours-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 12px;
}

.parcours-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.parcours-result {
  font-size: 0.9rem;
  color: var(--accent-light);
  font-style: italic;
  margin: 0;
}

@media (max-width: 900px) {
  .parcours-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== RESULTS CHECKLIST ==================== */
.results-card {
  padding: 40px;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.12) 0%, rgba(176, 141, 87, 0.04) 100%);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.results-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.results-card .section-lead {
  margin-bottom: 28px;
}

.results-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

@media (max-width: 720px) {
  .results-card {
    padding: 28px 20px;
  }
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.result-item:hover {
  border-color: var(--accent);
  background: rgba(176, 141, 87, 0.1);
}

.result-check {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.result-item p {
  font-size: 1rem;
  color: var(--off-white);
  margin: 0;
}

.result-detail {
  color: var(--muted);
  font-size: 0.9rem;
}

.results-conclusion {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.7;
}

/* ==================== OBJECTION SECTION ==================== */
.objection-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.objection-intro {
  font-size: 1.1rem;
  color: var(--off-white);
  margin-bottom: 20px;
}

.objection-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.objection-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.objection-arrow {
  color: var(--accent);
  font-weight: 600;
}

.objection-timeline {
  padding: 24px;
  background: rgba(176, 141, 87, 0.08);
  border-radius: 12px;
  margin-bottom: 24px;
  text-align: center;
}

.objection-timeline p {
  font-size: 1rem;
  color: var(--off-white);
  margin: 8px 0;
}

.objection-conclusion {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
}

/* ==================== DELIVERABLES COMPACT ==================== */
.deliverables-compact {
  margin-top: 48px;
  padding: 36px 32px;
  background: 
    linear-gradient(160deg, rgba(176, 141, 87, 0.08) 0%, transparent 60%),
    var(--surface);
  border: 1px solid var(--border-accent);
  border-radius: 24px;
}

.deliverable-highlight {
  text-align: left;
}

.deliverable-highlight .deliverable-title {
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.deliverable-highlight .deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 720px) {
  .deliverable-highlight .deliverable-list {
    grid-template-columns: 1fr;
  }
}

/* ==================== GUARANTEE ==================== */
.guarantee {
  margin-top: 48px;
  padding: 36px 32px;
  background: 
    linear-gradient(160deg, rgba(176, 141, 87, 0.08) 0%, transparent 60%),
    var(--surface);
  border: 2px solid var(--border-accent);
  border-radius: 20px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.guarantee-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 12px;
}

.guarantee-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ==================== PRICING ==================== */
.pricing-card {
  margin-top: 40px;
  padding: 56px 48px;
  background: 
    linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    linear-gradient(340deg, rgba(176, 141, 87, 0.03) 0%, transparent 50%),
    var(--surface);
  border: 2px solid var(--border-accent);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light), var(--accent), var(--accent-dark));
  background-size: 200% auto;
  animation: gradient-shift 3s linear infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.pricing-card::after {
  content: "PREMIUM";
  position: absolute;
  top: 24px;
  right: -32px;
  padding: 6px 40px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transform: rotate(45deg);
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.pricing-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pricing-amount {
  font-size: 4.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.comparison-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 20px;
}

.comparison-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.comparison-list li {
  font-size: 0.95rem;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.comparison-list.negative li {
  color: rgba(255, 180, 180, 0.8);
}

.comparison-list.negative li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: rgba(255, 100, 100, 0.6);
  font-weight: 700;
}

.comparison-list.positive li {
  color: var(--muted);
}

.comparison-list.positive li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-note {
  padding: 24px 28px;
  background: rgba(176, 141, 87, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
}

.pricing-note p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.pricing-note strong {
  color: var(--off-white);
  font-weight: 600;
}

/* ==================== FAQ ==================== */
.faq-list {
  margin-top: 40px;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-item.active {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  color: var(--off-white);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.2s ease;
}

.faq-question:hover {
  color: var(--accent-light);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.faq-more {
  text-align: center;
  margin-top: 32px;
}

.faq-more-link {
  display: inline-block;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq-more-link:hover {
  border-color: var(--accent);
  background: rgba(176, 141, 87, 0.1);
}

/* ==================== FAQ PAGE ==================== */
.faq-page {
  padding-top: 0;
}

.faq-nav {
  position: relative;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.faq-nav .nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.faq-main {
  min-height: 100vh;
  padding: 80px 0 60px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header .eyebrow {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 12px;
}

.faq-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
}

.faq-page .faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-cta-section {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.faq-cta-text {
  color: var(--off-white);
  font-size: 1.2rem;
  margin-bottom: 24px;
}

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

.faq-footer {
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.faq-footer p {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .faq-main {
    padding: 60px 0 40px;
  }
  
  .faq-header {
    margin-bottom: 40px;
  }
  
  .faq-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ==================== QUIZ ==================== */
.quiz-section {
  background: 
    radial-gradient(ellipse 60% 50% at 50% 50%, var(--accent-glow), transparent),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(176, 141, 87, 0.05), transparent),
    radial-gradient(ellipse 40% 30% at 80% 20%, rgba(176, 141, 87, 0.05), transparent);
  position: relative;
}

.quiz-section::before {
  content: "?";
  position: absolute;
  top: 40px;
  right: 10%;
  font-size: 20rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.02;
  pointer-events: none;
  font-family: 'Playfair Display', Georgia, serif;
}

.quiz-container {
  margin-top: 40px;
  padding: 56px 48px;
  background: 
    linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    var(--surface);
  border: 2px solid var(--border-accent);
  border-radius: 32px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.quiz-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 180deg,
    transparent 0deg,
    var(--accent-glow) 30deg,
    transparent 60deg,
    transparent 180deg,
    var(--accent-glow) 210deg,
    transparent 240deg
  );
  animation: rotate-glow 8s linear infinite;
  opacity: 0.3;
}

.quiz-container::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--surface);
  border-radius: 30px;
}

.quiz-step {
  display: none;
  position: relative;
  z-index: 1;
}

.quiz-step.active {
  display: block;
}

.quiz-result {
  position: relative;
  z-index: 1;
}

.quiz-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 32px;
  text-align: center;
}

.quiz-options {
  display: grid;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.quiz-option {
  padding: 22px 28px;
  background: 
    linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    var(--charcoal);
  border: 2px solid var(--border);
  border-radius: 16px;
  color: var(--off-white);
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quiz-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quiz-option:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 40px var(--accent-glow);
}

.quiz-option:hover::before {
  opacity: 1;
}

.quiz-option:active {
  transform: translateY(-2px) scale(0.98);
}

.quiz-result {
  text-align: center;
  padding: 32px 0;
}

.quiz-result-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.quiz-result-text {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ==================== TEAM SECTION ==================== */
.team-intro {
  color: var(--muted);
  margin-bottom: 48px;
}

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

.team-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 28px;
  background: linear-gradient(160deg, var(--surface) 0%, var(--charcoal) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  align-items: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.team-card-featured {
  grid-template-columns: 180px 1fr;
  padding: 36px;
  border-color: var(--border-accent);
  background: 
    linear-gradient(160deg, rgba(176, 141, 87, 0.08) 0%, transparent 50%),
    linear-gradient(160deg, var(--surface) 0%, var(--charcoal) 100%);
}

.team-card-featured::before {
  content: "FONDATEUR";
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
}

.team-card-featured {
  position: relative;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: 
    linear-gradient(160deg, rgba(28, 28, 28, 0.3), rgba(14, 14, 14, 0.5)),
    var(--surface);
  background-size: cover;
  background-position: center top;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.team-card:hover .team-photo {
  border-color: var(--border-accent);
}

#photo-quentin {
  background: 
    linear-gradient(160deg, rgba(28, 28, 28, 0.05), rgba(14, 14, 14, 0.2)),
    url("./photo-quentin.png");
  background-size: cover;
  background-position: center top;
  border-color: var(--border-accent);
}

#photo-expert-1 {
  background: 
    linear-gradient(160deg, rgba(28, 28, 28, 0.05), rgba(14, 14, 14, 0.2)),
    url("./photo-marc.png");
  background-size: cover;
  background-position: center 20%;
}

#photo-expert-2 {
  background: 
    linear-gradient(160deg, rgba(28, 28, 28, 0.05), rgba(14, 14, 14, 0.2)),
    url("./photo-lucas.png");
  background-size: cover;
  background-position: center 20%;
}

#photo-expert-3 {
  background: 
    linear-gradient(160deg, rgba(28, 28, 28, 0.05), rgba(14, 14, 14, 0.2)),
    url("./photo-antoine.png");
  background-size: cover;
  background-position: center 20%;
}

.team-card-featured .team-photo {
  aspect-ratio: 3/4;
  border-radius: 20px;
}

.team-info {
  text-align: left;
}

.team-header {
  margin-bottom: 12px;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 4px 0;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

.team-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 16px;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-credentials span {
  font-size: 0.8rem;
  padding: 6px 12px;
  background: rgba(176, 141, 87, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  color: var(--accent-light);
  font-weight: 500;
}

@media (max-width: 720px) {
  .team-card {
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  .team-card-featured {
    grid-template-columns: 120px 1fr;
    padding: 24px;
  }
  
  .team-card-featured .team-photo {
    aspect-ratio: 1;
  }
  
  .team-name {
    font-size: 1.05rem;
  }
  
  .team-bio {
    font-size: 0.9rem;
  }
  
  .team-credentials span {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
}

@media (max-width: 500px) {
  .team-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .team-card-featured {
    grid-template-columns: 1fr;
  }
  
  .team-photo {
    width: 120px;
    margin: 0 auto;
  }
  
  .team-card-featured .team-photo {
    width: 150px;
    aspect-ratio: 1;
  }
  
  .team-info {
    text-align: center;
  }
  
  .team-credentials {
    justify-content: center;
  }
}

/* ==================== FOUNDER (legacy) ==================== */
.founder {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 44px;
  align-items: center;
}

.founder-credentials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.credential {
  padding: 10px 18px;
  background: rgba(176, 141, 87, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--accent-light);
  font-weight: 500;
}

.portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  background: 
    linear-gradient(160deg, rgba(28, 28, 28, 0.05), rgba(14, 14, 14, 0.2)),
    url("./ChatGPT Image 29 janv. 2026, 15_37_08.png");
  background-size: cover;
  background-position: center;
  border: 2px solid var(--border-accent);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 100px var(--accent-glow);
  position: relative;
  transition: all 0.5s ease;
}

.portrait:hover {
  transform: scale(1.02);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 120px var(--accent-glow-strong);
}

.portrait::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 50%, var(--accent-dark) 100%);
  z-index: -1;
  opacity: 0.3;
}

.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.1) 0%, transparent 30%);
  pointer-events: none;
}

.name {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.name::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  max-width: 60px;
}

/* ==================== FINAL CTA SECTION ==================== */
.final-urgency {
  text-align: center;
  padding: 24px 32px;
  background: rgba(176, 141, 87, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  margin-bottom: 40px;
}

.urgency-text {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.urgency-text strong {
  color: var(--accent);
  font-weight: 700;
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.urgency-deadline {
  font-size: 0.95rem;
  color: #e74c3c;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 0;
}

.urgency-countdown {
  display: inline-block;
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.countdown-number {
  font-weight: 800;
  font-size: 1.3em;
}

.free-resource {
  margin-top: 48px;
  padding: 32px 36px;
  background: 
    linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  gap: 24px;
  align-items: center;
  transition: all 0.3s ease;
}

.free-resource:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.resource-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  border: 1px solid var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.resource-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 8px;
}

.resource-link {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.resource-link:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.final-note {
  margin-top: 48px;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;
}

/* ==================== MODAL ==================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  width: 100%;
  padding: 48px 40px;
  background: 
    linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    var(--surface);
  border: 2px solid var(--border-accent);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 12px;
  text-align: center;
}

.modal-text {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.6;
}

.modal-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.modal-input {
  padding: 16px 20px;
  background: var(--charcoal);
  border: 2px solid var(--border);
  border-radius: 12px;
  color: var(--off-white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.modal-input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}

.modal-input::placeholder {
  color: var(--muted-light);
}

.modal-note {
  font-size: 0.85rem;
  color: var(--muted-light);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* ==================== STICKY CTA ==================== */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  z-index: 100;
  pointer-events: none;
  padding: 0 20px;
}

.sticky-cta-content {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  background: 
    linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    var(--surface);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 0 60px var(--accent-glow);
}

.sticky-cta-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.sticky-cta-text {
  color: var(--accent);
  font-weight: 700;
}

.sticky-cta-separator {
  color: var(--border);
}

.sticky-cta-date {
  color: var(--muted);
  font-weight: 500;
}

.sticky-cta.is-visible {
  display: flex;
}

/* ==================== ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered animation for lists */
.list.reveal.is-visible li,
.steps.reveal.is-visible li {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.list.reveal.is-visible li:nth-child(1),
.steps.reveal.is-visible li:nth-child(1) { animation-delay: 0.1s; }
.list.reveal.is-visible li:nth-child(2),
.steps.reveal.is-visible li:nth-child(2) { animation-delay: 0.2s; }
.list.reveal.is-visible li:nth-child(3),
.steps.reveal.is-visible li:nth-child(3) { animation-delay: 0.3s; }
.list.reveal.is-visible li:nth-child(4),
.steps.reveal.is-visible li:nth-child(4) { animation-delay: 0.4s; }
.list.reveal.is-visible li:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 900px) {
  .hero {
    padding: 180px 0 80px;
  }

  .stats-inline {
    gap: 24px;
  }

  .stat-number {
    font-size: 1.7rem;
  }

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

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

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

  .pricing-comparison {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .founder {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .portrait {
    max-width: 240px;
    margin: 0 auto;
  }

  .name::after {
    display: none;
  }

  .founder-credentials {
    justify-content: center;
  }

  .free-resource {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta-content {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .sticky-cta-info {
    font-size: 0.85rem;
  }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 720px) {
  .urgency-bar {
    padding: 6px 0;
  }

  .urgency-content {
    font-size: 0.72rem;
    gap: 6px;
  }

  .urgency-label {
    font-size: 0.7rem;
  }

  #places-count {
    font-size: 1em;
  }

  .hero {
    padding: 110px 0 40px;
    min-height: auto;
  }

  /* Hero Clean Mobile */
  .hero-clean {
    padding: 100px 0 50px;
  }
  
  .hero-clean .hero-content {
    padding: 0 4px;
  }
  
  .hero-headline {
    font-size: clamp(1.35rem, 5.5vw, 1.8rem);
    margin-bottom: 20px;
    line-height: 1.35;
  }
  
  .headline-reason {
    margin-top: 6px;
    font-size: 0.95em;
  }
  
  .hero-subheadline {
    font-size: 0.98rem;
    margin-bottom: 32px;
    line-height: 1.7;
  }
  
  .hero-pillars {
    margin-top: 10px;
    font-size: 0.95rem;
  }
  
  .hero-cta-wrapper {
    width: 100%;
    margin-bottom: 32px;
  }
  
  .hero-reassurance {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding: 0 20px;
  }
  
  .reassurance-item {
    font-size: 0.85rem;
  }

  .hero-compact {
    padding: 100px 0 30px;
  }

  .hero-compact .hero-content {
    gap: 20px;
  }

  .hero-block {
    padding: 20px 20px;
  }

  .hero-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-pitch {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .btn-large {
    padding: 16px 24px;
    font-size: 1rem;
    width: 100%;
  }

  .hero-cta-sub {
    font-size: 0.8rem;
  }

  .hero-antidote {
    font-size: 0.85rem;
  }

  .hero::before {
    height: 50px;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    margin-bottom: 24px;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 16px;
  }

  h1 {
    font-size: clamp(1.7rem, 6.5vw, 2.2rem);
    line-height: 1.15;
  }

  h1:last-of-type {
    margin-bottom: 28px;
  }

  .lead {
    font-size: 1.05rem;
  }

  .body {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .stats-inline {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .result-number {
    font-size: 2.5rem;
  }

  .timeline-phase {
    padding: 24px 20px;
  }

  .timeline-title {
    font-size: 1.1rem;
  }

  .deliverable-group {
    padding: 24px 20px;
  }

  .deliverable-title {
    font-size: 1.05rem;
  }

  .guarantee {
    flex-direction: column;
    padding: 28px 24px;
    text-align: center;
  }

  .guarantee-icon {
    margin: 0 auto;
  }

  .guarantee-title {
    font-size: 1.15rem;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-amount {
    font-size: 3rem;
  }

  .pricing-subtitle {
    font-size: 1rem;
  }

  .quiz-container {
    padding: 32px 24px;
  }

  .quiz-question {
    font-size: 1.15rem;
  }

  .quiz-option {
    padding: 16px 20px;
    font-size: 0.98rem;
  }

  .modal-content {
    padding: 36px 28px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .section {
    padding: 80px 0;
  }

  .section.short {
    padding: 70px 0;
  }

  .section.final {
    padding: 100px 0 200px;
  }

  .container {
    width: 90%;
  }

  .section-lead {
    font-size: 1.1rem;
  }

  .list li {
    padding: 14px 0;
    font-size: 0.98rem;
  }

  .steps li {
    padding: 26px 22px;
  }

  .steps-number {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  .steps-title {
    font-size: 1.08rem;
  }

  .steps li .body {
    font-size: 0.95rem;
  }

  .callout {
    padding: 26px 24px;
    font-size: 1rem;
  }

  .callout::before {
    font-size: 2rem;
    top: 14px;
    left: 14px;
  }

  .btn {
    padding: 16px 36px;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .btn-large {
    padding: 18px 40px;
    font-size: 1rem;
  }

  .btn-compact {
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .cta-block {
    width: 100%;
  }

  .micro-text {
    text-align: center;
    width: 100%;
  }

  .sticky-cta-content {
    padding: 12px 16px;
  }

  .sticky-cta-info {
    flex-direction: column;
    gap: 4px;
  }

  .sticky-cta-separator {
    display: none;
  }

  .founder {
    text-align: left;
  }

  .founder-credentials {
    justify-content: flex-start;
  }

  .portrait {
    margin: 0;
    max-width: 180px;
  }

  .free-resource {
    padding: 24px 20px;
  }

  .resource-icon {
    width: 48px;
    height: 48px;
  }

  .resource-title {
    font-size: 1rem;
  }

  .final-note {
    font-size: 0.98rem;
  }
}

/* ==================== SMALL MOBILE ==================== */
@media (max-width: 400px) {
  h1 {
    font-size: 1.6rem;
  }

  .section {
    padding: 64px 0;
  }

  .section.short {
    padding: 56px 0;
  }

  .steps li {
    padding: 22px 18px;
  }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==================== LAUNCH BANNER ==================== */
/* ==================== LAUNCH BANNER (Premium Red) ==================== */
.launch-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #8b2525 0%, #a52a2a 50%, #8b2525 100%);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.launch-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.launch-text-main {
  font-weight: 600;
  color: white;
  letter-spacing: 0.3px;
}

.launch-separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 4px;
}

.launch-text-sub {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.launch-countdown {
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
}

body {
  padding-top: 44px;
}

@media (max-width: 768px) {
  .launch-banner {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .launch-banner-content {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
  }
  
  .launch-text-main {
    font-size: 10px;
  }
  
  .launch-text-sub {
    font-size: 10px;
  }
  
  .launch-countdown {
    font-size: 9px;
    padding: 2px 5px;
  }
  
  .launch-separator {
    display: none;
  }
  
  body {
    padding-top: 32px;
  }
  
  .main-nav {
    top: 32px;
  }
}

@media (max-width: 400px) {
  .launch-banner {
    font-size: 10px;
    padding: 5px 8px;
  }
  
  .launch-text-main {
    font-size: 9.5px;
  }
  
  .launch-text-sub {
    display: none;
  }
  
  .launch-countdown {
    font-size: 9px;
  }
  
  body {
    padding-top: 28px;
  }
  
  .main-nav {
    top: 28px;
  }
}

/* ==================== OFFRE DE LANCEMENT SECTION ==================== */
.section-subtitle-light {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.launch-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid;
  border-radius: 8px;
  margin-bottom: 24px;
}

.launch-card-histoire {
  border-left-color: var(--accent);
}

.launch-card-fondatrice {
  border-left-color: #c0392b;
}

.launch-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 20px;
}

.launch-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.launch-card p:last-child {
  margin-bottom: 0;
}

.launch-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.launch-list li {
  font-size: 0.95rem;
  color: var(--muted);
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}

.launch-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.launch-list-benefits li::before {
  content: "✓";
  color: #27ae60;
}

.launch-conclusion {
  margin-top: 24px !important;
  color: var(--off-white) !important;
}

.launch-reasons {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.15);
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
}

.launch-reason {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.launch-reason:last-child {
  margin-bottom: 0;
}

.launch-reason-num {
  color: #c0392b;
  font-weight: 700;
  font-size: 1rem;
  min-width: 20px;
}

.launch-reason strong {
  color: var(--off-white);
  display: block;
  margin-bottom: 6px;
}

.launch-reason p {
  font-size: 0.9rem !important;
  margin-bottom: 0 !important;
}

.launch-warning {
  color: var(--off-white) !important;
  margin-top: 24px !important;
}

.launch-note {
  font-size: 0.9rem !important;
  opacity: 0.8;
}

.launch-transparency {
  margin-top: 40px;
  padding: 32px;
  background: var(--charcoal);
  border-radius: 8px;
  text-align: center;
}

.transparency-main {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 8px;
}

.transparency-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.transparency-tags {
  font-size: 0.9rem;
  color: var(--accent);
}

/* FAQ Price styling */
.faq-price-old {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 0.9em;
  font-weight: 400;
}

/* ==================== SECTION ÉQUIPE GENÈSE (FUSIONNÉE) ==================== */

/* Bloc Genèse (Quentin + Histoire) */
.genese-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 32px;
}

.genese-photo {
  text-align: center;
}

.genese-photo .team-photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
}

.genese-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 6px;
}

.genese-role {
  font-size: 0.9rem;
  color: var(--accent);
  margin: 0 0 12px;
}

.genese-credentials {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Instagram proof block – preuve sociale sans alourdir */
.genese-insta {
  display: block;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.genese-insta:hover {
  border-color: var(--border-accent);
  box-shadow: 0 4px 20px rgba(176, 141, 87, 0.15);
}

.genese-insta img {
  display: block;
  width: 100%;
  max-width: 220px;
  max-height: 260px;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
  object-position: top center;
}

.genese-insta-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.2);
}

.genese-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.genese-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 8px;
}

.genese-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.genese-highlight {
  background: rgba(176, 141, 87, 0.1);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  border-radius: 4px;
}

.genese-highlight strong {
  color: var(--off-white);
}

.genese-conclusion {
  color: var(--off-white) !important;
  margin-top: 12px !important;
}

.genese-separator {
  width: 60px;
  height: 1px;
  background: var(--border-accent);
  margin: 32px 0;
}

.tarif-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  margin: 20px 0 28px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.genese-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}

.genese-list li {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 1rem;
}

.genese-quote {
  font-style: italic;
  color: var(--muted-light) !important;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px !important;
}

/* Bloc Session Fondatrice */
.fondatrice-block {
  padding: 40px;
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  border-radius: 12px;
  margin-bottom: 32px;
  text-align: center;
}

.fondatrice-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin: 0 0 16px;
}

.fondatrice-intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px;
}

.fondatrice-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px;
  line-height: 1.7;
}

.fondatrice-highlight {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin: 16px 0 24px;
}

.fondatrice-selection {
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--accent);
  padding: 20px 24px;
  margin: 24px 0 32px;
}

.fondatrice-selection p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 12px;
  line-height: 1.6;
}

.fondatrice-selection p:last-child {
  margin-bottom: 0;
}

.fondatrice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.fondatrice-item {
  text-align: center;
}

.fondatrice-icon {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.fondatrice-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.fondatrice-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 28px;
}

.fondatrice-footer p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0 0 24px;
}

.fondatrice-footer .btn {
  background: white;
  color: #c0392b;
  border: none;
}

.fondatrice-footer .btn:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

/* Bloc Experts */
.experts-block {
  text-align: center;
}

.experts-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 32px;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.expert-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.expert-card:hover {
  border-color: var(--border-accent);
}

.expert-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--charcoal);
  margin: 0 auto 16px;
}

.expert-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 6px;
}

.expert-role {
  display: block;
  font-size: 0.85rem;
  color: #c0392b;
  font-weight: 600;
  margin-bottom: 12px;
}

.expert-badge {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-light);
  margin-bottom: 16px;
}

.expert-bio {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

.expert-bio p {
  margin: 0;
}

.bio-preview {
  margin-bottom: 12px;
}

.bio-full {
  display: none;
  margin-bottom: 12px;
}

.bio-full.active {
  display: block;
}

.btn-read-more {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.btn-read-more:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.experts-footer {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 28px;
}

/* Responsive pour la section fusionnée */
@media (max-width: 900px) {
  .genese-block {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .genese-content {
    text-align: left;
  }
  
  .fondatrice-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .experts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .genese-block,
  .fondatrice-block {
    padding: 28px 20px;
  }
  
  .genese-insta {
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
  }
  
  .genese-insta img {
    max-width: 100%;
  }
  
  .fondatrice-title {
    font-size: 1.3rem;
  }
  
  .expert-card {
    padding: 24px 20px;
  }
}

@media (max-width: 720px) {
  .launch-card {
    padding: 24px;
  }
  
  .launch-reasons {
    padding: 20px;
  }
  
  .launch-reason {
    flex-direction: column;
    gap: 8px;
  }
}

/* ==================== PLACES PROGRESS BAR ==================== */
.places-progress {
  margin: 24px 0;
  text-align: center;
}

.places-label {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.places-label strong {
  color: var(--off-white);
}

.places-bar {
  width: 100%;
  max-width: 300px;
  height: 12px;
  background: var(--surface);
  border-radius: 6px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border);
}

.places-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #e74c3c 100%);
  border-radius: 6px;
  transition: width 0.5s ease;
}

.places-remaining {
  font-size: 0.85rem;
  color: #e74c3c;
  font-weight: 600;
  margin-top: 8px;
}

/* ==================== GUARANTEE BADGE ==================== */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.guarantee-icon {
  color: #2ecc71;
  font-size: 1.2rem;
  font-weight: bold;
}

.guarantee-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ==================== LIVE VIEWERS INDICATOR ==================== */
.live-viewers {
  position: fixed;
  bottom: 100px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  z-index: 998;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

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

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

/* ==================== WHATSAPP FLOATING BUTTON ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

.whatsapp-text {
  display: inline;
}

/* ==================== STICKY CTA AMÉLIORÉ ==================== */
.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sticky-cta-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta-countdown {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.sticky-cta-progress {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-progress-bar {
  width: 80px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.sticky-progress-fill {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #e74c3c);
}

.sticky-progress-text {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ==================== MOBILE FULLSCREEN CTA ==================== */
.mobile-fullscreen-cta {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mobile-fullscreen-cta.active {
  display: flex;
}

.mobile-cta-content {
  text-align: center;
  max-width: 350px;
}

.mobile-cta-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}

.mobile-cta-progress {
  margin-bottom: 16px;
}

.mobile-progress-bar {
  width: 100%;
  height: 10px;
  background: var(--surface);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}

.mobile-progress-fill {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #e74c3c);
}

.mobile-cta-progress span {
  font-size: 0.9rem;
  color: var(--muted);
}

.mobile-cta-countdown {
  font-size: 1.1rem;
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 24px;
}

.mobile-cta-btn {
  width: 100%;
  margin-bottom: 16px;
}

.mobile-cta-guarantee {
  font-size: 0.85rem;
  color: #2ecc71;
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 768px) {
  .live-viewers {
    bottom: 140px;
    left: 10px;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  
  .whatsapp-float {
    bottom: 90px;
    right: 10px;
    padding: 10px 14px;
  }
  
  .whatsapp-text {
    display: none;
  }
  
  .whatsapp-float {
    border-radius: 50%;
    padding: 14px;
  }
  
  .sticky-cta {
    padding: 12px 16px;
  }
  
  .sticky-cta-content {
    gap: 10px;
  }
  
  .sticky-cta-progress {
    display: none;
  }
  
  .sticky-cta-info {
    flex-direction: column;
    gap: 4px;
  }
  
  .guarantee-badge {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .guarantee-text {
    font-size: 0.8rem;
  }
}

@media (min-width: 769px) {
  .mobile-fullscreen-cta {
    display: none !important;
  }
}

/* ==================== BONUS SECTION ==================== */
.bonus-header {
  text-align: center;
  margin-bottom: 48px;
}

.bonus-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.bonus-title {
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 16px;
}

.bonus-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* Bonus grid - 1 column, stacked cards */
.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Individual bonus card */
.bonus-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.bonus-card:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}

/* Bonus icon */
.bonus-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
  flex-shrink: 0;
}

.bonus-icon svg {
  width: 24px;
  height: 24px;
}

/* Icon color variants - premium masculine tones */
.bonus-icon-platform {
  background: linear-gradient(135deg, #b08d57 0%, #c9a66b 100%);
}

.bonus-icon-training {
  background: linear-gradient(135deg, #8b4f3b 0%, #b36644 100%);
}

.bonus-icon-photo {
  background: linear-gradient(135deg, #4a4458 0%, #6b5f7b 100%);
}

.bonus-icon-feedback {
  background: linear-gradient(135deg, #2c5f7c 0%, #3a7ca5 100%);
}

.bonus-icon-diag {
  background: linear-gradient(135deg, #3d5a47 0%, #4e7a5e 100%);
}

.bonus-icon-style {
  background: linear-gradient(135deg, #8a6d3b 0%, #a88a50 100%);
}

.bonus-icon-group {
  background: linear-gradient(135deg, #3a5a6e 0%, #4d7a8e 100%);
}

.bonus-icon-autonomy {
  background: linear-gradient(135deg, #355e3b 0%, #4a7c5c 100%);
}

.bonus-icon-messaging {
  background: linear-gradient(135deg, #5a4a6e 0%, #7a6a8e 100%);
}

.bonus-icon-cercle {
  background: linear-gradient(135deg, #b08d57 0%, #d4af37 50%, #c9a66b 100%);
}

/* Highlighted bonus card (Cercle POTENTIEL) */
.bonus-card-highlight {
  background: linear-gradient(165deg, var(--surface) 0%, rgba(176, 141, 87, 0.08) 100%);
  border-color: var(--accent);
  position: relative;
  padding: 28px 28px;
}

/* No badge label on highlight card */

.bonus-highlight-desc {
  color: var(--off-white) !important;
  font-weight: 500;
  margin-bottom: 12px !important;
}

.bonus-cercle-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-cercle-list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.bonus-cercle-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* bonus-objection removed */

/* Bonus text */
.bonus-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 6px;
}

.bonus-text p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Bonus responsive - Tablet */
@media (max-width: 900px) {
  .bonus-card {
    padding: 22px 24px;
    gap: 18px;
  }
  
  .bonus-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
  }
  
  .bonus-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* Bonus responsive - Mobile */
@media (max-width: 720px) {
  .bonus-header {
    margin-bottom: 36px;
  }
  
  .bonus-badge {
    font-size: 0.72rem;
    padding: 7px 16px;
    margin-bottom: 16px;
  }
  
  .bonus-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  
  .bonus-subtitle {
    font-size: 0.95rem;
  }
  
  .bonus-grid {
    gap: 10px;
  }
  
  .bonus-card {
    padding: 18px 16px;
    gap: 14px;
    border-radius: 12px;
  }
  
  .bonus-card:hover {
    transform: none;
  }
  
  .bonus-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 11px;
  }
  
  .bonus-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .bonus-text h3 {
    font-size: 1rem;
  }
  
  .bonus-text p {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  
  .bonus-card-highlight {
    padding: 20px 16px;
  }
  
  .bonus-cercle-list li {
    font-size: 0.85rem;
  }
  
  .bonus-objection {
    font-size: 0.82rem !important;
  }
}

/* ==================== TIMELINE 90 JOURS (NEW) ==================== */
.tl-header {
  text-align: center;
  margin-bottom: 48px;
}

.tl-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.tl-title {
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 16px;
}

.tl-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
}

/* Format overview - 4 stats */
.tl-format {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.tl-format-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s ease;
}

.tl-format-item:hover {
  border-color: var(--border-accent);
}

.tl-format-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.tl-format-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.tl-format-highlight {
  border-color: var(--border-accent);
  grid-column: 1 / -1;
}

.tl-format-highlight .tl-format-number {
  font-size: 1.3rem;
}

.tl-format-individual {
  grid-column: 1 / -1;
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.04);
}

.tl-format-individual .tl-format-number {
  font-size: 1.2rem;
  color: #22c55e;
}

/* Phases container */
.tl-phases {
  position: relative;
  padding-left: 32px;
}

/* Vertical line connecting phases */
.tl-phases::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 7px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--accent) 0%,
    var(--border-accent) 20%,
    var(--border-accent) 80%,
    var(--accent) 100%
  );
}

/* Individual phase card */
.tl-phase {
  position: relative;
  margin-bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.tl-phase:last-child {
  margin-bottom: 0;
}

.tl-phase:hover {
  border-color: var(--border-accent);
}

.tl-phase.active {
  border-color: var(--accent);
}

/* Immersion phases - special accent */
.tl-phase-immersion {
  border-color: var(--border-accent);
  background: linear-gradient(165deg, var(--surface) 0%, rgba(176, 141, 87, 0.04) 100%);
}

.tl-phase-immersion .tl-phase-weeks {
  color: var(--accent);
  font-weight: 700;
}

/* Phase header (clickable) */
.tl-phase-header {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

/* Phase dot/marker */
.tl-phase-marker {
  position: absolute;
  left: -32px;
  top: 30px;
  transform: translateX(-50%);
  z-index: 2;
}

.tl-phase-dot {
  display: block;
  width: 14px;
  height: 14px;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tl-phase.active .tl-phase-dot {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(176, 141, 87, 0.5);
}

.tl-phase-immersion .tl-phase-dot {
  width: 16px;
  height: 16px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(176, 141, 87, 0.4);
}

/* Phase info */
.tl-phase-info {
  flex: 1;
}

.tl-phase-weeks {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 6px;
}

.tl-phase-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 6px;
}

.tl-phase-objective {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Chevron */
.tl-chevron {
  color: var(--muted);
  flex-shrink: 0;
  margin-top: 6px;
  transition: transform 0.3s ease;
}

.tl-phase.active .tl-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

/* Phase expandable content */
.tl-phase-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tl-phase.active .tl-phase-content {
  max-height: 1200px;
}

.tl-phase-body {
  padding: 0 28px 28px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Grid layout for immersion days */
.tl-phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.tl-detail-block {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.tl-detail-block h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 0 0 10px;
}

.tl-detail-block p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Weekly calls grid */
.tl-weekly-calls h4,
.tl-key-actions h4,
.tl-deliverables h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 0 0 14px;
}

.tl-calls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tl-call {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.tl-call-day {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 4px;
}

.tl-call-type {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 2px;
  opacity: 0.85;
}

.tl-call-topic {
  font-size: 0.82rem;
  color: var(--muted);
}

.tl-calls-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
  padding: 10px 14px;
  background: rgba(176, 141, 87, 0.06);
  border-radius: 8px;
  border-left: 2px solid var(--accent);
}

/* Module tags */
.tl-modules h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 0 0 12px;
}

.tl-modules-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tl-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--off-white);
  background: rgba(176, 141, 87, 0.1);
  border: 1px solid rgba(176, 141, 87, 0.2);
  padding: 7px 14px;
  border-radius: 8px;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .tl-modules-tags {
    gap: 6px;
  }
  
  .tl-tag {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
}

/* Key actions list */
.tl-key-actions ul,
.tl-deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tl-key-actions li {
  font-size: 0.92rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.tl-key-actions li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* Deliverables */
.tl-deliverables {
  padding: 18px 20px;
  background: rgba(176, 141, 87, 0.06);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}

.tl-deliverables li {
  font-size: 0.92rem;
  color: var(--off-white);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.tl-deliverables li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Moment clé */
.tl-moment {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.1) 0%, rgba(176, 141, 87, 0.04) 100%);
  border-radius: 10px;
  border: 1px solid rgba(176, 141, 87, 0.2);
}

.tl-moment p {
  font-size: 1rem;
  color: var(--off-white);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.tl-moment-final {
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.15) 0%, rgba(176, 141, 87, 0.06) 100%);
  border-color: var(--accent);
}

.tl-moment-punchline {
  margin-top: 16px !important;
  font-style: normal !important;
  font-weight: 600;
  color: var(--accent) !important;
  font-size: 1.05rem !important;
}

/* Clarity section */
.tl-clarity {
  margin-top: 48px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}

.tl-clarity h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--off-white);
  margin: 0 0 24px;
}

.tl-clarity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.tl-clarity-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.tl-clarity-check {
  color: var(--accent);
  font-weight: 700;
}

.tl-clarity-footer {
  font-size: 0.95rem;
  color: var(--off-white);
  font-weight: 500;
  margin: 0;
}

/* Guarantee section under timeline */
.tl-guarantee {
  margin-top: 48px;
  padding: 40px 36px;
  background: linear-gradient(165deg, var(--surface) 0%, rgba(34, 197, 94, 0.04) 100%);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 16px;
  text-align: center;
  position: relative;
}

.tl-guarantee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.08) 100%);
  color: #22c55e;
  margin-bottom: 20px;
}

.tl-guarantee-title {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #22c55e;
  margin: 0 0 16px;
}

.tl-guarantee-text {
  font-size: 1.05rem;
  color: var(--off-white);
  line-height: 1.7;
  margin: 0 0 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tl-guarantee-sub {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Timeline responsive - Tablet */
@media (max-width: 900px) {
  .tl-format {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .tl-calls-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .tl-clarity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Timeline responsive - Mobile */
@media (max-width: 720px) {
  .tl-format {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .tl-format-item {
    padding: 18px 12px;
  }
  
  .tl-format-number {
    font-size: 1.5rem;
  }
  
  .tl-format-text {
    font-size: 0.8rem;
  }
  
  .tl-phases {
    padding-left: 24px;
  }
  
  .tl-phases::before {
    left: 5px;
  }
  
  .tl-phase-header {
    padding: 20px 18px;
    gap: 14px;
  }
  
  .tl-phase-marker {
    left: -24px;
  }
  
  .tl-phase-dot {
    width: 12px;
    height: 12px;
  }
  
  .tl-phase-immersion .tl-phase-dot {
    width: 14px;
    height: 14px;
  }
  
  .tl-phase-name {
    font-size: 1.05rem;
  }
  
  .tl-phase-objective {
    font-size: 0.88rem;
  }
  
  .tl-phase-body {
    padding: 0 18px 20px;
    padding-top: 20px;
    gap: 20px;
  }
  
  .tl-phase-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .tl-detail-block {
    padding: 14px 16px;
  }
  
  .tl-calls-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .tl-call {
    padding: 12px 14px;
    text-align: left;
    display: grid;
    grid-template-columns: 55px 1fr;
    grid-template-rows: auto auto;
    gap: 2px 10px;
  }
  
  .tl-call-day {
    margin-bottom: 0;
    grid-row: 1 / 3;
    align-self: center;
    font-weight: 700;
  }
  
  .tl-call-type {
    font-size: 0.62rem;
    grid-column: 2;
  }
  
  .tl-call-topic {
    grid-column: 2;
  }
  
  .tl-key-actions li,
  .tl-deliverables li {
    font-size: 0.88rem;
  }
  
  .tl-moment {
    padding: 16px 18px;
  }
  
  .tl-moment p {
    font-size: 0.95rem;
  }
  
  .tl-clarity {
    padding: 24px 20px;
    margin-top: 36px;
  }
  
  .tl-clarity h3 {
    font-size: 1.05rem;
    margin-bottom: 18px;
  }
  
  .tl-clarity-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .tl-clarity-item {
    justify-content: flex-start;
    font-size: 0.88rem;
  }
  
  .tl-guarantee {
    margin-top: 36px;
    padding: 28px 22px;
    border-radius: 14px;
  }
  
  .tl-guarantee-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }
  
  .tl-guarantee-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .tl-guarantee-title {
    font-size: 1.15rem;
  }
  
  .tl-guarantee-text {
    font-size: 0.95rem;
  }
  
  .tl-guarantee-sub {
    font-size: 0.85rem;
  }
}

/* ==================== READABILITY IMPROVEMENTS ==================== */

/* Better text contrast and line height for dense content */
.pillar-section p,
.timeline-content p,
.scenario p,
.expert-bio p,
.genese-content p {
  line-height: 1.85;
  font-size: 0.95rem;
}

/* Improved spacing between paragraphs */
.pillar-section p + p,
.timeline-content p + p,
.scenario p + p {
  margin-top: 12px;
}

/* Better list readability */
.pillar-actions li,
.pillar-results-list li {
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Improved section lead consistency */
.section-lead {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 28px;
  text-align: center;
}

/* Method principles better readability */
.method-principles {
  margin-top: 32px;
}

.principle {
  line-height: 1.7;
  font-size: 0.92rem;
}

/* Scenarios better visual hierarchy */
.scenario-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.scenario p {
  margin-bottom: 14px;
}

/* Clarification section better spacing */
.clarification-item {
  padding: 16px 20px;
  line-height: 1.5;
}

/* Pour qui section better readability */
#pour-qui .list li {
  font-size: 1rem;
  line-height: 1.7;
}

/* FAQ better readability */
.faq-answer p {
  line-height: 1.8;
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Genese section improvements */
.genese-content p {
  margin-bottom: 14px;
}

.genese-content p:last-of-type {
  margin-bottom: 0;
}

/* Expert bio improvements */
.expert-bio {
  line-height: 1.75;
}

/* Final reassurance better spacing */
.final-reassurance p {
  margin-bottom: 14px;
}

.final-questions li {
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ==================== MOBILE READABILITY ENHANCEMENTS ==================== */
@media (max-width: 720px) {
  /* Increase text size and spacing for better mobile readability */
  .body {
    font-size: 0.98rem;
    line-height: 1.85;
  }
  
  .section-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  
  /* Pillar sections on mobile */
  .pillar-section p {
    font-size: 0.92rem;
    line-height: 1.8;
  }
  
  .pillar-actions li,
  .pillar-results-list li {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 8px;
  }
  
  .pillar-final-line {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Timeline on mobile */
  .timeline-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  
  .timeline-result {
    font-size: 0.92rem !important;
  }
  
  /* Scenarios on mobile */
  .scenario {
    padding: 24px 20px;
  }
  
  .scenario-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  
  .scenario p {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 12px;
  }
  
  .scenario-conclusion {
    margin-top: 16px !important;
    padding-top: 14px;
  }
  
  .scenarios-conclusion {
    padding: 24px 20px;
  }
  
  .scenarios-conclusion p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  /* Pour qui section on mobile */
  #pour-qui .list li {
    font-size: 0.95rem;
    padding: 14px 0;
    line-height: 1.7;
  }
  
  /* Clarification on mobile */
  .clarification-item {
    font-size: 0.9rem;
    padding: 14px 16px;
    line-height: 1.6;
  }
  
  /* FAQ on mobile */
  .faq-question {
    font-size: 0.98rem;
    padding: 20px 20px;
  }
  
  .faq-answer {
    font-size: 0.92rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
  
  .faq-answer p {
    line-height: 1.8;
  }
  
  /* Genese section on mobile */
  .genese-content p {
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 12px;
  }
  
  .genese-separator {
    margin: 24px 0;
  }
  
  .tarif-highlight {
    font-size: 1rem;
    padding: 10px 20px;
  }
  
  /* Expert cards on mobile */
  .expert-bio {
    font-size: 0.88rem;
    line-height: 1.75;
  }
  
  .bio-preview {
    margin-bottom: 10px;
  }
  
  /* Final section on mobile */
  .final-urgency {
    padding: 20px 16px;
  }
  
  .urgency-text {
    font-size: 0.98rem;
    line-height: 1.6;
  }
  
  .urgency-text strong {
    font-size: 1.1rem;
  }
  
  .final-reassurance p {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 12px;
  }
  
  .final-questions li {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  /* Method principles on mobile */
  .method-principles {
    padding: 16px 18px;
  }
  
  .principles-label {
    font-size: 0.82rem;
  }
  
  .principle {
    font-size: 0.85rem;
    line-height: 1.65;
  }
  
  .principle-detail {
    font-size: 0.78rem;
    line-height: 1.6;
  }
  
  /* Ecosystem intro on mobile */
  .ecosystem-intro {
    font-size: 0.98rem;
    line-height: 1.75;
  }
}

/* ==================== VISUAL CONSISTENCY IMPROVEMENTS ==================== */

/* Consistent section spacing */
.section {
  padding: 100px 0;
}

.section.short {
  padding: 80px 0;
}

/* Consistent border colors */
.pillar-expandable,
.timeline-item,
.scenario,
.faq-item,
.expert-card {
  border-color: var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pillar-expandable:hover,
.timeline-item:hover,
.faq-item:hover,
.expert-card:hover {
  border-color: var(--border-accent);
}

/* Consistent card backgrounds */
.pillar-expandable,
.timeline-item,
.scenario,
.faq-item,
.expert-card,
.genese-block {
  background: var(--surface);
}

/* Consistent accent colors for active states */
.pillar-expandable.active,
.timeline-item.active,
.faq-item.active {
  border-color: var(--accent);
  background: linear-gradient(165deg, var(--surface) 0%, rgba(176, 141, 87, 0.03) 100%);
}

/* Consistent typography for section titles */
.ecosystem-title,
.experts-title,
.fondatrice-title {
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Consistent button styling */
.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary {
  border-width: 1.5px;
}

/* Consistent hover states */
.pillar-expand-btn:hover,
.btn-read-more:hover,
.faq-more-link:hover {
  color: var(--accent-light);
}

/* Improved focus states for accessibility */
.btn:focus-visible,
.faq-question:focus-visible,
.timeline-header:focus-visible,
.pillar-preview-header:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Consistent spacing for lists */
.list,
.pillar-actions,
.pillar-results-list,
.final-questions {
  margin-bottom: 0;
}

/* Ensure consistent text colors */
.text-muted {
  color: var(--muted-light);
}

strong {
  font-weight: 600;
}
