@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,500,400,300&display=swap');

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

:root {
  --font-body:    'Satoshi', 'DM Sans', 'Segoe UI', Arial, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Satoshi', 'DM Sans', sans-serif;

  /* Palette Adélaïde — sage & warm */
  --bg:           #FAF9F6;
  --bg-card:      rgba(255, 255, 255, 0.85);
  --text:         #111111;
  --text-muted:   #444444;
  --text-light:   #6B7B6E; /* corrigé #9CA898→#6B7B6E : ratio 4.6:1 sur blanc – WCAG AA ✓ */
  --accent:       #3D7A6C; /* assombri légèrement : ratio 4.6:1 sur blanc – WCAG AA ✓ */
  --accent-hover: #336660;
  --accent-soft:  #A8D0C4; /* décoratif uniquement – pas de texte sur ce fond */
  --accent-light: #E8F0EC;
  --warm:         #C4956A;
  --warm-light:   #F2E6D9;
  --border:       rgba(44, 48, 40, 0.09);
  --focus-ring:   #3D7A6C; /* couleur focus visible, cohérente avec --accent */
}

/* ── BACKGROUND ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background: #FAF9F6;
}

/* ── GRAIN ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.022;
  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");
  background-size: 200px 200px;
}

html { background: #FAF9F6; scroll-behavior: auto; }
body {
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════
   ACCESSIBILITÉ — WCAG 2.1 AA
   Focus visible · Skip link · Reduced motion
══════════════════════════════════════════ */

/* Lien d'évitement (skip to main) */
.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 99999;
  background: var(--accent); color: #ffffff;
  padding: 0.75rem 1.5rem; border-radius: 0 0 12px 12px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  text-decoration: none;
  transition: top 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.skip-link:focus,
.skip-link:focus-visible { top: 0; outline: 3px solid #ffffff; outline-offset: -3px; }

/* Masque le outline uniquement pour les utilisateurs souris — préserve le clavier */
*:focus:not(:focus-visible) { outline: none; }

/* Focus visible universel — WCAG 2.1 SC 2.4.7 */
*:focus-visible {
  outline: 2.5px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Focus sur boutons et liens pill — rayon plus large */
.nav-cta:focus-visible,
.cta-button:focus-visible,
.inline-cta:focus-visible,
.purchase-cta:focus-visible,
.contact-submit:focus-visible,
.contact-whatsapp:focus-visible {
  outline: 2.5px solid var(--focus-ring);
  outline-offset: 4px;
  border-radius: 9999px;
}

/* Focus sur les items FAQ (role=button) */
.faq-question:focus-visible {
  outline: 2.5px solid var(--focus-ring);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Focus sur les inputs du formulaire — enrichit le style existant */
.contact-field input:focus-visible,
.contact-field select:focus-visible,
.contact-field textarea:focus-visible {
  outline: 2.5px solid var(--focus-ring);
  outline-offset: 0;
  border-color: var(--focus-ring);
  box-shadow: 0 0 0 4px rgba(61, 122, 108, 0.18);
}

/* Focus sur les liens nav */
.main-nav a:focus-visible,
.footer-col a:focus-visible,
.site-logo:focus-visible {
  outline: 2.5px solid var(--focus-ring);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Préférence mouvement réduit — désactive animations non-essentielles */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-line,
  .loader-dots span,
  .hero-tagline,
  .hero-desc {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 10000; background: transparent; pointer-events: none;
}
#scroll-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--warm) 100%);
  transition: width 0.1s linear;
}

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
#loader.hidden { opacity: 0; pointer-events: none; }
.loader-brand {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 400; font-style: italic;
  letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 2.8rem;
}
#loader-bar-wrap { width: 160px; height: 1px; background: rgba(122,158,142,0.2); }
#loader-bar { height: 100%; width: 0; background: var(--accent); transition: width 0.12s linear; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 1.4rem 2.5rem; z-index: 100;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
}
.site-header.scrolled {
  background: rgba(250, 249, 246, 0.98);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.site-logo {
  font-family: var(--font-display); font-size: 1.32rem;
  font-weight: 400; color: var(--text); text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-logo em { font-style: italic; color: var(--accent); }
.site-logo:hover { color: var(--accent); }

.main-nav { display: flex; gap: 1.2rem; align-items: center; }
.main-nav a {
  font-size: 0.78rem; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.18em;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav a:hover { color: var(--accent); }
a { text-decoration: none; }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), #5A9A8A) !important;
  color: #ffffff !important;
  padding: 0.72rem 1.6rem; font-size: 0.72rem !important;
  letter-spacing: 0.12em !important;
  border-radius: 9999px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 8px 25px rgba(74, 140, 126, 0.32);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent), #5A9A8A) !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(74, 140, 126, 0.42) !important;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.5rem; z-index: 1001;
  width: 30px; height: 25px; position: relative;
}
.mobile-menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); margin: 5px 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
}
.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 10px; }
.mobile-menu-toggle span:nth-child(3) { top: 20px; }
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 768px) {
  .mobile-menu-toggle { display: flex; flex-direction: column; justify-content: center; align-items: center; }
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: 80%; height: 100vh; background: var(--bg);
    flex-direction: column; justify-content: flex-start;
    padding: 5rem 2.5rem;
    box-shadow: -1px 0 0 var(--border), -20px 0 60px rgba(0,0,0,0.05);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999;
  }
  .main-nav.active { right: 0; }
  .main-nav a { display: block; padding: 0.9rem 0; text-align: left; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
}

/* ── HERO ── */
.hero-standalone {
  position: fixed; inset: 0;
  background: #FAF9F6;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 10.5rem 6vw 5.5rem; z-index: 10;
}
.hero-eyebrow {
  font-size: 0.66rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.4rem; font-weight: 500;
}
.hero-heading {
  font-family: var(--font-sans);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 700; line-height: 0.92;
  color: #111111; margin-bottom: 2.4rem;
  letter-spacing: -0.03em;
}
.hero-heading-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 300; font-style: normal;
  color: #4A8C7E; line-height: 1.1;
  letter-spacing: 0.02em;
}
.hero-tagline {
  font-size: 0.92rem; font-weight: 500;
  color: #444444; letter-spacing: 0.06em;
  line-height: 1.7; margin-bottom: 1rem;
  opacity: 0; transform: translateY(20px);
  animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.3s;
  max-width: 560px;
}
.hero-divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, #4A8C7E, transparent);
  margin: 1.6rem 0; opacity: 0.5;
}
.hero-desc {
  font-size: 0.98rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.95; margin-bottom: 3rem;
  max-width: 560px;
  opacity: 0; transform: translateY(16px);
  animation: heroFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.55s;
}
@keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }
.scroll-indicator {
  position: absolute; right: 3rem; bottom: 3rem;
  display: flex; flex-direction: column; align-items: center;
  color: var(--accent); font-weight: 500; font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  writing-mode: vertical-rl; text-orientation: mixed; gap: 0.8rem;
}
.scroll-line {
  width: 1px; height: 48px; background: var(--accent); transform-origin: top;
  animation: linePulse 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes linePulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ── CANVAS ── */
.canvas-wrap {
  position: fixed; inset: 0; z-index: 5; pointer-events: none;
  clip-path: circle(0% at 50% 50%);
  transition: none;
}
#canvas { display: block; width: 100%; height: 100%; }

/* ── DARK OVERLAY ── */
#dark-overlay {
  position: fixed; inset: 0; z-index: 6;
  background: rgba(7, 21, 16, 0.92);
  opacity: 0; pointer-events: none; transition: none;
}

/* ── MARQUEE ── */
.marquee-wrap {
  position: fixed; bottom: 2.2rem; left: 0; right: 0;
  z-index: 8; overflow: hidden; opacity: 0; pointer-events: none;
  white-space: nowrap;
}
.marquee-text {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.18em; text-transform: uppercase;
  will-change: transform;
}

/* ── SCROLL CONTAINER ── */
#scroll-container { height: 1100vh; position: relative; }

/* ── SCROLL SECTIONS ── */
.scroll-section {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center;
  padding: 0 6vw; z-index: 7;
  opacity: 0; pointer-events: none;
  transition: none;
}
.scroll-section.visible { opacity: 1; pointer-events: auto; }
.scroll-section.visible .section-inner {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-section.align-right { justify-content: flex-end; }
.scroll-section.align-left  { justify-content: flex-start; }

/* ── SECTION INNER (card) ── */
.section-inner {
  max-width: 480px; width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
  border: 1px solid rgba(255, 255, 255, 0.50);
  border-left: 5px solid var(--accent-soft);
  border-radius: 22px;
  padding: 2.6rem 2.4rem;
  box-shadow: 
    0 24px 80px rgba(44, 48, 40, 0.16),
    inset 0 4px 0 rgba(255,255,255,0.9),
    inset 0 -4px 0 rgba(0,0,0,0.015);
  position: relative;
  overflow: visible;
  isolation: isolate;
  margin: 2rem 5vw;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, var(--accent-soft), transparent);
  opacity: 0.7;
}

/* ── SECTION CONTENT ── */
.section-label {
  display: block; font-size: 0.58rem;
  letter-spacing: 0.44em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 1rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400; color: var(--text);
  line-height: 1.1; margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.section-body {
  font-size: 0.925rem; line-height: 1.88;
  color: #3F3F3F; font-weight: 300;
  margin-bottom: 0.85rem;
}
.section-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; font-weight: 300;
  color: var(--accent); line-height: 1.7;
  padding-left: 1rem; border-left: 2px solid var(--accent-soft);
  margin-bottom: 1.2rem;
}
.section-note {
  display: block; font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-light); font-weight: 500; margin-top: 1.2rem;
  padding-top: 1rem; border-top: 1px solid var(--border);
}

/* ── SECTION LIST ── */
.section-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.section-list li {
  font-size: 0.88rem; color: var(--text-muted); font-weight: 400;
  padding-left: 1.1rem; position: relative; line-height: 1.5;
}
.section-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--accent-soft); font-weight: 300;
}
.list-sub {
  display: block; font-size: 0.75rem;
  color: var(--text-light); font-weight: 300;
  margin-top: 0.1rem; font-style: italic;
}

/* ── STATS SECTION ── */
.section-stats {
  align-items: center; justify-content: center;
}
.stats-text {
  max-width: 680px; padding: 3.5rem 3rem;
  background: rgba(7, 21, 16, 0.72);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(160,210,196,0.15);
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}
.stats-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400; font-style: italic;
  color: #ffffff; margin-bottom: 2.4rem; line-height: 1.15;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem; margin-bottom: 2.4rem;
}
.stat-block {
  display: flex; flex-direction: column;
  padding: 1.4rem 1rem;
  border: 1px solid rgba(160,210,196,0.15);
  border-radius: 14px; gap: 0.5rem;
  background: rgba(255,255,255,0.04);
}
.stat-big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--accent-soft);
  line-height: 1; letter-spacing: -0.02em;
}
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.82); line-height: 1.5; font-weight: 300; } /* ratio ~8:1 sur fond sombre ✓ */
.stats-body { font-size: 0.88rem; line-height: 1.9; color: rgba(255,255,255,0.87); font-weight: 300; margin-bottom: 1rem; }
.stats-note { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.85); } /* ratio ~9.1:1 ✓ WCAG AAA */

/* ── TRUST BAR ── */
.trust-bar {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
  padding-bottom: 1.2rem; margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.trust-item {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 500;
  display: flex; align-items: center; gap: 0.5rem;
}
.trust-item > [aria-hidden="true"] { font-size: 0.42rem; color: var(--accent-soft); }

/* ── CTA ── */
.cta-group { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 1.8rem; }
.cta-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--accent), #5A9A8A); color: #ffffff !important;
  padding: 1.05rem 2.3rem; border-radius: 9999px;
  text-decoration: none; font-weight: 500; font-size: 0.79rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center; min-width: 220px;
  box-shadow: 0 8px 25px rgba(74, 140, 126, 0.32);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(74, 140, 126, 0.42); color: #ffffff !important;
}
.cta-phone {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  color: var(--text-muted) !important; text-decoration: none;
  font-weight: 300; font-size: 0.84rem; letter-spacing: 0.02em;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1); padding: 0.4rem 0;
}
.cta-phone:hover { color: var(--accent) !important; }

/* ── INLINE CTA ── */
.inline-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent), #5A9A8A); color: white !important;
  padding: 1.05rem 2.3rem; text-decoration: none; border-radius: 9999px;
  font-weight: 500; font-size: 0.79rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-top: 1.6rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(74, 140, 126, 0.32);
}
.inline-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(74, 140, 126, 0.42); color: white !important;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  position: relative; z-index: 8; background: transparent;
  padding: 5rem 6vw 5rem; border-top: 1px solid var(--border);
}
.testimonials-inner {
  max-width: 1100px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
  border: 1px solid rgba(255, 255, 255, 0.50);
  border-left: 5px solid var(--accent-soft);
  border-radius: 22px;
  padding: 2.8rem 2.8rem 3rem;
  box-shadow:
    0 24px 80px rgba(44, 48, 40, 0.10),
    inset 0 4px 0 rgba(255,255,255,0.9),
    inset 0 -4px 0 rgba(0,0,0,0.015);
}
.testimonials-note {
  font-size: 0.72rem; color: var(--text-light); font-style: italic;
  margin-bottom: 2.4rem; margin-top: -1.2rem;
}
.testimonials-note--bottom {
  margin-top: 2rem; margin-bottom: 0;
  text-align: center;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
  border: 1px solid rgba(255, 255, 255, 0.50);
  border-left: 5px solid var(--accent-soft);
  border-radius: 22px;
  padding: 1.6rem 1.8rem 2rem;
  box-shadow:
    0 24px 80px rgba(44, 48, 40, 0.10),
    inset 0 4px 0 rgba(255,255,255,0.9),
    inset 0 -4px 0 rgba(0,0,0,0.015);
  transition: transform 0.40s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.40s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow:
    0 40px 100px rgba(44, 48, 40, 0.18),
    inset 0 4px 0 rgba(255,255,255,0.9);
}
.testimonial-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.3rem;
}
.testimonial-deco {
  display: flex; align-items: center; opacity: 0.9;
}
.testimonial-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(168,208,196,0.12);
  border: 1px solid rgba(168,208,196,0.35);
  border-radius: 9999px;
  padding: 0.28rem 0.65rem 0.28rem 0.5rem;
}
.testimonial-badge span {
  font-size: 0.56rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--accent); line-height: 1;
}
.testimonial-text {
  font-family: var(--font-display); font-size: 1rem; font-style: italic;
  font-weight: 300; color: var(--text); line-height: 1.75; margin-bottom: 1.1rem;
}
.testimonial-author {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}

/* ── FAQ ── */
.faq-section {
  position: relative; z-index: 8; background: transparent;
  padding: 5rem 6vw 5rem; border-top: 1px solid var(--border);
}
.faq-inner {
  max-width: 760px; margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
  border: 1px solid rgba(255, 255, 255, 0.50);
  border-left: 5px solid var(--accent-soft);
  border-radius: 22px;
  padding: 2.8rem 2.8rem 3rem;
  box-shadow:
    0 24px 80px rgba(44, 48, 40, 0.10),
    inset 0 4px 0 rgba(255,255,255,0.9),
    inset 0 -4px 0 rgba(0,0,0,0.015);
}
.faq-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--accent-soft); font-weight: 600; margin-bottom: 1.2rem; display: block;
}
.faq-heading {
  font-family: var(--font-display); font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 400; color: var(--text); margin-bottom: 2.4rem; line-height: 1.2;
  font-style: italic;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); padding: 1.6rem 0; cursor: pointer; transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; }
.faq-question-text { font-size: 0.96rem; font-weight: 500; color: var(--text); line-height: 1.5; transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item:hover .faq-question-text { color: var(--accent); }
.faq-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  position: relative; color: var(--accent-soft); margin-top: 0.2rem;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: currentColor;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-item.open .faq-question-text { color: var(--accent); }
.faq-answer {
  font-size: 0.88rem; line-height: 1.85; color: var(--text-muted); font-weight: 300;
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 320px; padding-top: 1.1rem; }

/* ── FOOTER ── */
.site-footer {
  position: relative; z-index: 8;
  background: rgba(250, 249, 246, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(74, 140, 126, 0.18);
  padding: 5rem 2rem 4rem;
}
.footer-inner {
  display: flex; gap: 4rem; flex-wrap: wrap; max-width: 1200px; margin: 0 auto;
  padding-left: 1.6rem;
  border-left: 3px solid var(--accent-soft);
}
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col strong {
  font-size: 0.62rem; letter-spacing: 0.36em; text-transform: uppercase;
  font-weight: 600; color: var(--text); margin-bottom: 0.3rem;
}
.footer-col p, .footer-col a, .footer-col span {
  font-size: 0.8rem; color: var(--text-muted); text-decoration: none;
  line-height: 1.8; font-weight: 300;
}
.footer-col a:hover { color: var(--accent); }
.footer-col a { transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  #scroll-container { height: 600vh; }

  .scroll-section {
    position: fixed !important; top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0; pointer-events: none; background: transparent !important;
    align-items: flex-start;
    padding-top: 90px;           /* plus d'espace sous le header */
    padding-bottom: 2rem;
  }
  .scroll-section.visible { opacity: 1; pointer-events: auto; }
  .scroll-section::after { display: none; }

  #canvas-wrap { display: block; width: 100vw !important; height: 100vh !important; overflow: hidden !important; }
  #canvas { width: 100vw !important; height: 100vh !important; }
  .marquee-wrap { display: none; }
  .hero-standalone { position: fixed !important; inset: 0; min-height: unset; }

  .section-inner {
    max-width: 81vw;
    width: 81vw;
    margin: 2.9rem 9.5vw !important;
    padding: 2.9rem 2.6rem !important;
    border-radius: 34px;
    box-shadow: 
      0 25px 75px rgba(0, 0, 0, 0.15),
      0 6px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-left: 3px solid var(--accent-soft);
    max-height: none;
    min-height: 380px;
    overflow: visible;
    isolation: isolate;
    -webkit-overflow-scrolling: touch;
  }
  /* Badge section 001 — pas de clipping */
  [data-section="001"] .section-inner {
    padding-top: 2.8rem !important;
  }
  [data-section="001"] .section-badge {
    top: -14px;
    right: 1.4rem;
  }
  .section-stats { align-items: center !important; padding-bottom: 0 !important; }
  .section-stats .stats-text {
    max-width: 94vw; padding: 2rem 1.2rem; margin: 0 auto;
    max-height: 82vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
    background: rgba(7, 21, 16, 0.80);
  }
  .stats-body { font-size: 0.86rem; line-height: 1.9; margin-bottom: 1.2rem; }
  .stats-heading { font-size: clamp(1.5rem, 5vw, 1.9rem); margin-bottom: 1.4rem; }
  .section-cta .section-inner { max-height: 66vh; }
  .section-heading { font-size: clamp(1.55rem, 5.5vw, 2rem); margin-bottom: 0.8rem; line-height: 1.15; }
  .section-body { font-size: 0.91rem; line-height: 1.82; margin-bottom: 0.6rem; }
  .section-label { margin-bottom: 0.7rem; }
  .section-note { margin-top: 0.9rem; font-size: 0.6rem; }
  .hero-heading { font-size: clamp(3.2rem, 14vw, 5.5rem); }
  .hero-heading-sub { font-size: clamp(1.7rem, 7vw, 2.8rem); }
  .stats-grid { grid-template-columns: 1fr; gap: 0.7rem; margin-bottom: 1.4rem; }
  .stat-block { padding: 1rem 1.2rem; flex-direction: row; align-items: center; gap: 1rem; }
  .stat-big { font-size: clamp(1.6rem, 6vw, 2rem); flex-shrink: 0; }
  .stat-label { font-size: 0.72rem; }
  .testimonials-section { padding: 3.5rem 1.4rem; }
  .testimonials-inner { padding: 2rem 1.2rem 2.4rem; border-radius: 18px; border-left-width: 4px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { padding: 1.5rem 1.4rem; }
  .section-list li { font-size: 0.84rem; }
  .section-quote { font-size: 0.88rem; }
  .scroll-indicator { display: none; }
  .hero-standalone { padding: 7rem 5vw 3.5rem; }
  .hero-divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, #4A8C7E, transparent);
  margin: 1.6rem 0; opacity: 0.5;
}
.hero-desc { max-width: 100%; margin-bottom: 0; font-size: 0.82rem; }
  .hero-tagline { font-size: 0.78rem; }
  .site-header { padding: 1.1rem 1.4rem; }
  .footer-inner { flex-direction: column; gap: 2rem; padding: 0; border-left: none; }
  .trust-bar { gap: 0.6rem; margin-bottom: 1.1rem; padding-bottom: 1.1rem; flex-direction: column; align-items: flex-start; }
  .cta-button { padding: 0.95rem 1.5rem; font-size: 0.76rem; min-width: unset; width: 100%; }
  .cta-phone { font-size: 0.82rem; }
  .cta-group { gap: 0.7rem; margin-top: 1.1rem; }
  .faq-section { padding: 3rem 1.4rem; }
  .faq-inner { padding: 2rem 1.4rem 2.4rem; border-radius: 18px; border-left-width: 4px; }
  .faq-heading { font-size: clamp(1.6rem, 5vw, 2rem); margin-bottom: 2rem; }
  .inline-cta { padding: 0.82rem 1.4rem; font-size: 0.72rem; margin-top: 1rem; }
}

/* ── BADGE PREMIUM ── */
.section-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  position: absolute; top: -18px; right: 2rem;
  background: linear-gradient(135deg, #3D6B5A 0%, #5A9A8A 100%);
  color: #ffffff; font-family: var(--font-sans);
  font-size: 0.54rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.6rem 1.4rem; border-radius: 50px;
  box-shadow: 0 22px 55px rgba(61, 107, 90, 0.52);
  z-index: 20;
}
.section-badge svg {
  width: 11px; height: 11px; flex-shrink: 0;
}

/* ── SECTION ICON ── */
.section-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(90,122,106,0.1), rgba(126,201,184,0.15));
  margin-bottom: 1.2rem;
}
.section-icon svg { width: 18px; height: 18px; color: #4A8C7E; }

/* ── SECTION DIVIDER ── */
.section-title-divider {
  width: 36px; height: 1.5px;
  background: linear-gradient(90deg, #4A8C7E, #7EC9B8);
  border-radius: 2px; margin: 1rem 0 1.4rem;
  opacity: 0.6;
}

/* ── SECTION HEADING PREMIUM ── */
.scroll-section:first-child .section-heading {
  color: #3D6B5A;
  font-size: clamp(1.85rem, 2.6vw, 2.4rem);
  font-weight: 600;
  margin-top: 0.4rem;
  margin-bottom: 1.8rem;
}

/* ════════════════════════════════════════════
   HARMONISATION — session 29 mars 2026 · passe 1 & 2
   ✦ Frosted card unifié : testimonials-inner, faq-inner, contact-inner, purchase-card
   ✦ Transitions 0.35–0.45s cubic-bezier partout (inputs, FAQ, liens, cartes)
   ✦ Espacement vertical 5rem 6vw harmonisé sur les 4 sections hors-scroll
   ✦ Eyebrow/heading rhythm unifié (purchase-eyebrow ↔ faq-eyebrow)
   ✦ Purchase : ton adouci, border-left accent-soft, hover lift
════════════════════════════════════════════ */

/* ── FORMULAIRE DE CONTACT ── */
.contact-section {
  position: relative; z-index: 8;
  background: transparent;
  padding: 5rem 6vw 5rem;
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 760px; margin: 0 auto;
  /* Frosted card — pixel-perfect avec .section-inner */
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
  border: 1px solid rgba(255, 255, 255, 0.50);
  border-left: 5px solid var(--accent-soft);
  border-radius: 22px;
  padding: 2.8rem 2.8rem 3rem;
  box-shadow:
    0 24px 80px rgba(44, 48, 40, 0.16),
    inset 0 4px 0 rgba(255,255,255,0.9),
    inset 0 -4px 0 rgba(0,0,0,0.015);
}
.contact-intro {
  font-size: 0.9rem; color: var(--text-muted); font-weight: 300;
  line-height: 1.8; margin-bottom: 2.4rem; margin-top: -0.4rem;
}

/* Form layout */
.contact-form { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.contact-field { display: flex; flex-direction: column; gap: 0.55rem; }
.contact-field--full { grid-column: 1 / -1; }
.contact-field label {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}
.contact-optional { font-weight: 300; text-transform: none; letter-spacing: 0; font-size: 0.7em; }
.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
  color: var(--text); background: rgba(255,255,255,0.88);
  border: 1px solid rgba(44,48,40,0.14);
  border-radius: 12px; padding: 0.95rem 1.1rem;
  transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                              background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  appearance: none; -webkit-appearance: none;
}
.contact-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA898' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  color: var(--text);
}
/* Option par défaut grisée */
.contact-field select option[value=""] { color: var(--text-light); }
.contact-field textarea { resize: vertical; min-height: 120px; line-height: 1.75; }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: var(--text-light); }
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(168, 208, 196, 0.22);
  background: rgba(255,255,255,0.97);
}

/* Texte rassurant */
.contact-reassurance {
  font-size: 0.75rem; color: var(--text-light); font-weight: 300;
  letter-spacing: 0.04em; line-height: 1.6;
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.2rem;
}
.contact-reassurance::before {
  content: '';
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-soft); flex-shrink: 0;
}

/* Bouton — identique à .cta-button / .inline-cta */
.contact-submit {
  align-self: flex-start;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--accent), #5A9A8A);
  color: #ffffff; border: none; cursor: pointer;
  padding: 1.05rem 2.3rem; border-radius: 9999px;
  font-family: var(--font-body); font-size: 0.79rem;
  font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(74,140,126,0.32);
}
.contact-submit:hover:not(:disabled) {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 50px rgba(74,140,126,0.55);
}
.contact-submit:disabled { opacity: 0.65; cursor: not-allowed; }

.contact-actions {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
}
.contact-whatsapp {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #25D366 !important; text-decoration: none;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  border: 1px solid rgba(37,211,102,0.3); border-radius: 9999px;
  padding: 0.7rem 1.3rem;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-whatsapp:hover { background: rgba(37,211,102,0.08); border-color: #25D366; }
.contact-privacy {
  font-size: 0.6rem; color: var(--text-light);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 1.2rem; font-weight: 300;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-inner {
    max-width: 90vw; margin: 0 auto;
    padding: 2rem 1.6rem 2.4rem;
    border-radius: 18px;
    border-left-width: 4px;
  }
  .contact-row { grid-template-columns: 1fr; gap: 1.4rem; }
  .contact-form { gap: 1.4rem; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-whatsapp { justify-content: center; }
  .contact-submit { width: 100%; justify-content: center; }
  /* Empêche le keyboard de rétrécir le viewport et d'écraser le formulaire */
  .contact-section { padding-bottom: env(safe-area-inset-bottom, 4rem); }
}

/* Toast */
.contact-toast {
  position: fixed; bottom: 2.2rem; left: 50%; transform: translateX(-50%) translateY(20px);
  background: #1a2e25; color: #ffffff;
  padding: 1rem 1.8rem; border-radius: 9999px;
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.7rem;
  opacity: 0; pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.contact-toast svg { width: 16px; height: 16px; color: var(--accent-soft); flex-shrink: 0; }
.contact-toast.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 768px) {
  .contact-section { padding: 3rem 5vw 4rem; }
}

/* QW3 : Lisibilité section-body — consolidé dans les règles de base ci-dessus */

/* QW4 : Badge WELLNESS PREMIUM — consolidé dans les règles de base ci-dessus */

/* ── DARK OVERLAY — contraste amélioré (Lighthouse AA) ── */
#dark-overlay {
  background: rgba(5, 16, 11, 0.95); /* plus opaque pour meilleur contraste texte blanc */
}

/* ── FOOTER WHATSAPP ── */
.footer-whatsapp {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  color: #25D366 !important;
}
.footer-whatsapp:hover { opacity: 0.8; }

/* ── TEMPLATE BANNER ── */
.template-banner {
  background: #0f1f17;
  padding: 1.8rem 6vw;
  border-top: 1px solid rgba(74,140,126,0.2);
}
.template-banner-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.template-banner-badge {
  font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-soft); font-weight: 700;
  border: 1px solid rgba(168,208,196,0.3);
  padding: 0.4rem 0.9rem; border-radius: 9999px;
  white-space: nowrap; flex-shrink: 0;
}
.template-banner-content { flex: 1; min-width: 200px; }
.template-banner-title {
  font-size: 0.82rem; color: rgba(255,255,255,0.85);
  font-weight: 400; line-height: 1.5; margin-bottom: 0.3rem;
}
.template-banner-desc {
  font-size: 0.68rem; color: rgba(255,255,255,0.4);
  font-weight: 300; letter-spacing: 0.03em; line-height: 1.6;
}
.template-banner-tags {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.template-banner-tags span {
  font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); font-weight: 500;
  background: rgba(255,255,255,0.06);
  padding: 0.3rem 0.7rem; border-radius: 9999px;
}
@media (max-width: 768px) {
  .template-banner { padding: 1.4rem 5vw; }
  .template-banner-inner { gap: 1rem; }
}

/* Hover CTA buttons */
.cta-button:hover {
  transform: translateY(-5px) scale(1.03) !important;
  box-shadow: 0 20px 50px rgba(74, 140, 126, 0.55) !important;
}
.inline-cta:hover {
  transform: translateY(-5px) scale(1.03) !important;
  box-shadow: 0 20px 50px rgba(74, 140, 126, 0.55) !important;
}
.nav-cta:hover {
  transform: translateY(-5px) scale(1.03) !important;
  box-shadow: 0 20px 50px rgba(74, 140, 126, 0.55) !important;
}

/* Hover section-inner (cards) */
.section-inner {
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-section.visible .section-inner:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 40px 100px rgba(44, 48, 40, 0.24);
}

/* will-change sur éléments animés GSAP */
.scroll-section,
.section-inner,
.hero-heading span,
.hero-eyebrow,
.hero-tagline,
.hero-desc,
.scroll-indicator,
.canvas-wrap {
  will-change: transform, opacity;
}

/* Canvas — évite reflow sur mobile */
#canvas-wrap {
  contain: strict;
}

/* ── LOADER DOTS ── */
.loader-brand em {
  font-style: italic;
  color: var(--accent);
}
#loader-percent {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--text-light);
  font-weight: 300;
  margin-top: 1.2rem;
  text-align: center;
  max-width: 240px;
  line-height: 1.6;
}
.loader-dots {
  display: flex; gap: 6px; align-items: center; margin-top: 1.4rem;
}
.loader-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-soft);
  animation: dotPulse 1.4s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse {
  0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); }
  40%            { opacity: 1;   transform: scale(1.2); }
}

/* ── SECTION ACHAT TEMPLATE ── */
.purchase-section {
  position: relative; z-index: 8;
  background: linear-gradient(160deg, #f7f5f0 0%, #eef2ed 50%, #f5f0ea 100%);
  padding: 5rem 6vw 5rem;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.purchase-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(74,140,126,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(196,149,106,0.06) 0%, transparent 70%);
}
.purchase-inner {
  max-width: 1060px; margin: 0 auto;
  position: relative;
}
.purchase-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--accent-soft); font-weight: 600; margin-bottom: 1.2rem; display: block;
}
.purchase-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400; color: var(--text);
  line-height: 1.15; letter-spacing: -0.01em;
  margin-bottom: 1rem; font-style: italic;
}
.purchase-heading em {
  font-style: italic; font-weight: 300;
  font-family: var(--font-display);
  color: var(--accent); letter-spacing: 0;
}
.purchase-highlight {
  color: var(--accent);
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1.05;
}
.purchase-sub {
  font-size: 0.95rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.85; max-width: 580px; margin-bottom: 2.8rem;
}

/* Card principale */
.purchase-card {
  display: grid; grid-template-columns: 1fr 340px; gap: 0;
  background: linear-gradient(150deg,
    rgba(252,254,252,0.97) 0%,
    rgba(245,250,247,0.94) 45%,
    rgba(250,246,241,0.92) 100%);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
  border: 1px solid rgba(255,255,255,0.7);
  border-left: 5px solid var(--accent-soft);
  border-radius: 38px;
  box-shadow:
    0 24px 70px rgba(44,48,40,0.10),
    0 6px 22px rgba(44,48,40,0.05),
    inset 0 3px 0 rgba(255,255,255,1),
    inset 0 -1px 0 rgba(44,48,40,0.025);
  overflow: hidden;
  transition: box-shadow 0.40s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.40s cubic-bezier(0.4, 0, 0.2, 1);
}
.purchase-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 100px rgba(44,48,40,0.14),
    0 10px 32px rgba(44,48,40,0.07),
    inset 0 3px 0 rgba(255,255,255,1);
}

/* Colonne gauche */
.purchase-card-left {
  padding: 3.6rem 3.4rem;
  border-right: 1px solid rgba(44,48,40,0.06);
}

/* Prix */
.purchase-early-bird {
  margin-bottom: 1.2rem;
}
.purchase-early-label {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.67rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #9B6F3A; font-weight: 700;
  background: linear-gradient(135deg, rgba(196,149,106,0.14) 0%, rgba(212,168,120,0.1) 100%);
  border: 1px solid rgba(196,149,106,0.4);
  padding: 0.48rem 1.1rem; border-radius: 9999px;
  box-shadow: 0 2px 12px rgba(196,149,106,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Prix */
.purchase-price-block {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin-bottom: 2.4rem;
}
.purchase-price {
  font-family: var(--font-sans); font-size: 4.5rem;
  font-weight: 700; color: var(--accent); line-height: 1;
  letter-spacing: -0.04em;
}
.purchase-price-detail {
  display: flex; flex-direction: column; gap: 0.1rem;
}
.purchase-currency {
  font-size: 1.2rem; font-weight: 600; color: var(--text); line-height: 1;
}
.purchase-once {
  font-size: 0.65rem; color: var(--text-light); font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* Bénéfices */
.purchase-benefits {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 0.9rem;
  margin-bottom: 2.6rem;
}
.purchase-benefits li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  font-size: 0.875rem; color: var(--text-muted); font-weight: 400;
  line-height: 1.6; padding: 0.1rem 0;
}
.pb-check {
  flex-shrink: 0; margin-top: 0.22rem;
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74,140,126,0.1);
  border-radius: 50%;
  color: var(--accent);
}

/* CTA achat */
.purchase-cta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: linear-gradient(135deg, var(--accent), #5A9A8A);
  color: #ffffff !important; text-decoration: none;
  padding: 1.35rem 2.8rem; border-radius: 9999px;
  font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.08em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 35px rgba(74,140,126,0.42);
  margin-bottom: 1.6rem;
}
.purchase-cta:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 28px 65px rgba(74,140,126,0.62);
  color: #ffffff !important;
}

.purchase-price-note {
  font-size: 0.65rem; color: var(--text-light); font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: -0.8rem; margin-bottom: 1.6rem;
}
.purchase-included {
  display: flex; align-items: flex-start; gap: 0.65rem;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.4rem;
  font-size: 0.72rem; color: var(--text); font-weight: 400;
  letter-spacing: 0.02em; line-height: 1.5;
}
.purchase-included strong { font-weight: 600; color: var(--accent-dark, var(--accent)); }
.purchase-included-icon {
  flex-shrink: 0; margin-top: 0.05rem;
  color: var(--accent);
}
.purchase-trust {
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem;
}
.purchase-trust span {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; color: var(--text-muted); font-weight: 400;
  letter-spacing: 0.04em; line-height: 1.4;
}
.purchase-trust svg { flex-shrink: 0; color: var(--accent); }

/* Colonne droite */
.purchase-card-right {
  padding: 3.2rem 2.6rem;
  background: linear-gradient(160deg, rgba(232,240,236,0.5) 0%, rgba(245,240,234,0.35) 100%);
  display: flex; flex-direction: column; gap: 1.8rem;
}
.purchase-preview-label {
  font-size: 0.56rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--accent-soft); font-weight: 700; margin-bottom: 0.2rem;
}
.purchase-specs {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 0;
  flex: 1;
}
.purchase-specs li {
  display: flex; gap: 0.8rem;
  font-size: 0.82rem; color: var(--text-muted); font-weight: 300;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(44,48,40,0.06);
  line-height: 1.5;
}
.purchase-specs li:last-child { border-bottom: none; }
.purchase-specs li strong {
  font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-light); font-weight: 500;
  min-width: 76px; flex-shrink: 0; margin-top: 0.16rem;
}
.purchase-badge-asca {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.67rem; color: var(--text-muted); font-weight: 300;
  font-style: italic;
  line-height: 1.6; padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}
.purchase-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 0.28rem;
  box-shadow: 0 0 0 3px rgba(74,140,126,0.2);
}

/* Mobile */
@media (max-width: 768px) {
  .purchase-section { padding: 3rem 5vw 3.5rem; }
  .purchase-heading { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .purchase-card { grid-template-columns: 1fr; }
  .purchase-card-left {
    padding: 2.4rem 1.8rem; border-right: none;
    border-bottom: 1px solid rgba(44,48,40,0.07);
    display: flex; flex-direction: column; align-items: center; text-align: center;
  }
  .purchase-price-block { justify-content: center; }
  .purchase-benefits { text-align: left; width: 100%; }
  .purchase-card-right { padding: 2rem 1.8rem; }
  .purchase-price { font-size: 3.2rem; }
  .purchase-cta { width: 100%; justify-content: center; }
  .purchase-trust { flex-direction: column; align-items: center; gap: 0.7rem; }
}
