/* ═══════════════════════════════════════════════════════════
   DISTRICT CARTELS — style.css
   Cormorant Garamond × Space Grotesk × Noir/Argent
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
  --black:      #000000;
  --dark:       #080808;
  --dark-2:     #101010;
  --dark-3:     #181818;
  --silver:     #C0C0C0;
  --silver-2:   #909090;
  --silver-3:   #555555;
  --white:      #FFFFFF;
  --white-off:  #F0F0F0;

  --fd: 'Cormorant Garamond', serif;
  --fb: 'Space Grotesk', sans-serif;

  --nav-h:    80px;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --t:        0.4s;
  --t-slow:   0.8s;
}

/* ─── BASE ───────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--black);
  color: var(--white-off);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
body.menu-open { overflow: hidden; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── SILVER GRADIENT ────────────────────────────────────── */
.silver-gradient {
  background: linear-gradient(135deg, #fff 0%, #c0c0c0 40%, #808080 80%, #c0c0c0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── CURSOR ─────────────────────────────────────────────── */
#cursor { pointer-events: none; position: fixed; z-index: 9999; mix-blend-mode: difference; }
#cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease), opacity 0.2s;
  will-change: transform;
}
#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, transform 0.08s linear;
  will-change: transform;
}
body.cursor-hover #cursor-dot { transform: translate(-50%, -50%) scale(0); }
body.cursor-hover #cursor-ring { width: 64px; height: 64px; border-color: rgba(255,255,255,0.3); }

/* ─── GRAIN ──────────────────────────────────────────────── */
.grain { display: none; }

/* ─── NAV ────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.06);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
  transition: opacity var(--t);
}
.nav-brand:hover { opacity: 0.6; }
.nb-d {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
}
.nb-c {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--silver);
  text-transform: uppercase;
}

.nav-chapters {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-ch {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--silver-3);
  transition: color var(--t);
  position: relative;
}
.nav-ch::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--silver);
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}
.nav-ch:hover, .nav-ch.active { color: var(--white); }
.nav-ch.active::after { transform: scaleX(1); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform var(--t) var(--ease), opacity var(--t), width var(--t);
}
.menu-toggle span:last-child { width: 60%; margin-left: auto; }
.menu-toggle:hover span:last-child { width: 100%; }
body.menu-open .menu-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:last-child  { width: 100%; transform: translateY(-7px) rotate(-45deg); }

/* ─── MENU OVERLAY ───────────────────────────────────────── */
#menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
#menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: calc(var(--nav-h) + 48px) 48px 48px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-links { display: flex; flex-direction: column; gap: 8px; }
.menu-link {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: gap var(--t) var(--ease);
  overflow: hidden;
}
.menu-link:hover { gap: 40px; }
.menu-link em {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--silver-3);
  flex-shrink: 0;
  transition: color var(--t);
}
.menu-link:hover em { color: var(--silver); }
.menu-link span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  transition: letter-spacing var(--t) var(--ease);
}
.menu-link:hover span { letter-spacing: 4px; }

/* Staggered entrance */
.menu-link { transform: translateY(30px); opacity: 0; transition: transform 0.6s var(--ease), opacity 0.6s, gap var(--t) var(--ease); }
#menu-overlay.open .menu-link:nth-child(1) { transform: none; opacity: 1; transition-delay: 0.05s; }
#menu-overlay.open .menu-link:nth-child(2) { transform: none; opacity: 1; transition-delay: 0.1s; }
#menu-overlay.open .menu-link:nth-child(3) { transform: none; opacity: 1; transition-delay: 0.15s; }
#menu-overlay.open .menu-link:nth-child(4) { transform: none; opacity: 1; transition-delay: 0.2s; }
#menu-overlay.open .menu-link:nth-child(5) { transform: none; opacity: 1; transition-delay: 0.25s; }

.menu-footer {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.menu-social {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-3);
  transition: color var(--t);
}
.menu-social:hover { color: var(--white); }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── CHAPTER LAYOUT ─────────────────────────────────────── */
.chapter {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.ch-number {
  position: absolute;
  top: 50%;
  right: -0.05em;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(180px, 28vw, 380px);
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.ch-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver-3);
  margin-bottom: 24px;
}
.ch-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 80px;
}
.ch-title em {
  font-style: italic;
  color: var(--silver);
}
.ch-header { margin-bottom: 72px; }

/* ─── HERO ───────────────────────────────────────────────── */
.s-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver-3);
  margin-bottom: 32px;
}
.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  margin-bottom: 40px;
}
.ht-d {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 14vw, 200px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--white);
}
.ht-c {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 14vw, 200px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(192,192,192,0.6);
}
.hero-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: var(--silver-2);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 420px;
}
.hero-tagline em { font-style: italic; color: var(--white-off); }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: gap var(--t) var(--ease), border-color var(--t);
}
.hero-cta:hover { gap: 20px; border-color: var(--white); }
.hero-cta svg { transition: transform var(--t) var(--ease); }
.hero-cta:hover svg { transform: translateY(4px); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.sh-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--silver-3));
  animation: shLine 2s ease-in-out infinite;
}
@keyframes shLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}
.hero-scroll-hint span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver-3);
  writing-mode: vertical-rl;
}

/* ─── CONSTAT ────────────────────────────────────────────── */
.s-constat { background: var(--black); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 80px;
}
.pain-item {
  background: var(--black);
  padding: 48px 40px;
  transition: background var(--t);
}
.pain-item:hover { background: var(--dark-2); }
.pain-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--silver-3);
  margin-bottom: 20px;
}
.pain-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.pain-item p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--silver-3);
  line-height: 1.7;
}

.ch-transition {
  display: flex;
  align-items: center;
  gap: 40px;
}
.ct-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 200px;
}
.ch-transition p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  font-weight: 300;
  color: var(--silver);
}

/* ─── MÉTHODE — OFFRES ───────────────────────────────────── */
.s-methode { background: var(--dark); }

.offers-wrap { margin-bottom: 80px; }

/* Featured card — Clé en main */
.offer-featured {
  background: var(--dark-2);
  border: 1px solid rgba(192,192,192,0.15);
  border-radius: 4px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.offer-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
  opacity: 0.4;
}
.offer-featured:hover {
  border-color: rgba(192,192,192,0.3);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(192,192,192,0.04);
}

.of-top { display: flex; flex-direction: column; justify-content: space-between; }
.of-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.of-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--silver-3);
}
.of-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  padding: 4px 10px;
  border: 1px solid rgba(192,192,192,0.3);
  border-radius: 100px;
}
.of-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.of-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: var(--silver-2);
  line-height: 1.6;
  max-width: 320px;
}

.of-body { display: flex; flex-direction: column; gap: 32px; }
.of-price-block {}
.of-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
}
.of-price span { font-size: 0.5em; vertical-align: super; }
.of-price em { font-style: normal; font-size: 0.35em; color: var(--silver-3); vertical-align: middle; }
.of-price-alt {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: var(--silver-3);
  margin-top: 8px;
}

.of-features { display: flex; flex-direction: column; gap: 12px; }
.of-features li {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--silver-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.of-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--silver);
  flex-shrink: 0;
}

/* Small cards */
.offers-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.offer-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--t), transform var(--t) var(--ease);
}
.offer-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.oc-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--silver-3);
}
.oc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.oc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.oc-price em { font-style: normal; font-size: 0.5em; color: var(--silver-3); }
.oc-desc {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--silver-3);
  line-height: 1.6;
}
.oc-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.oc-features li {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--silver-2);
  padding-left: 16px;
  position: relative;
}
.oc-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--silver-3);
}
.oc-no { color: var(--silver-3) !important; text-decoration: line-through; }

/* ─── STATS ──────────────────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-sep { display: none; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: var(--silver-3);
  margin-top: 8px;
  line-height: 1.4;
}

/* ─── PREUVES ────────────────────────────────────────────── */
.s-preuves { background: var(--black); }

.real-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 80px;
  background: rgba(255,255,255,0.04);
}
.real-card {
  background: var(--black);
  display: flex;
  flex-direction: column;
  transition: background var(--t);
}
.real-card:hover { background: var(--dark-2); }
.rc-visual {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-3);
}
.rc-placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 20px
  );
}
.rc-content { padding: 40px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.rc-cat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver-3);
}
.rc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.rc-desc {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--silver-3);
  line-height: 1.7;
  flex: 1;
}
.rc-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}
.rc-stat { display: flex; flex-direction: column; gap: 2px; }
.rc-stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.rc-stat span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  color: var(--silver-3);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
}
.testi-card {
  background: var(--black);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background var(--t);
}
.testi-card:hover { background: var(--dark-2); }
.testi-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: var(--white-off);
  line-height: 1.5;
  flex: 1;
}
.testi-card footer { margin-top: auto; }
.testi-card cite {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-style: normal;
  color: var(--silver-3);
  letter-spacing: 1px;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.s-contact { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left {}
.contact-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: var(--silver-3);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 360px;
}
.contact-reassurance {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-reassurance li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--silver-2);
}
.contact-reassurance svg { width: 16px; height: 16px; stroke: var(--silver); flex-shrink: 0; }

/* Form */
.contact-right {}
#contactForm, .form-success {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-3);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--white-off);
  outline: none;
  transition: border-color var(--t), background var(--t);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--silver-3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(192,192,192,0.3);
  background: rgba(255,255,255,0.06);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-3); color: var(--white); }

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--white);
  color: var(--black);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: background var(--t), color var(--t), gap var(--t) var(--ease), opacity var(--t);
  cursor: pointer;
  border: 1px solid var(--white);
}
.form-submit:hover { background: transparent; color: var(--white); gap: 20px; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-success {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  gap: 16px;
}
.fs-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--silver);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.fs-icon svg { width: 24px; height: 24px; stroke: var(--silver); }
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
}
.form-success p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--silver-3);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--white);
  color: var(--black);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: 1px solid var(--white);
  transition: background var(--t), color var(--t), gap var(--t) var(--ease);
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn-primary:hover { background: transparent; color: var(--white); gap: 20px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: var(--silver-2);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color var(--t), border-color var(--t);
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }

/* ─── FOOTER ─────────────────────────────────────────────── */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 40px;
}
.footer-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
  margin-bottom: 20px;
  transition: opacity var(--t);
  width: fit-content;
}
.footer-wordmark:hover { opacity: 0.6; }
.footer-wordmark span:first-child {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
}
.footer-wordmark span:last-child {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--silver);
}
.footer-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--silver-3);
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fn-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.fn-col ul { display: flex; flex-direction: column; gap: 10px; }
.fn-col a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--silver-3);
  transition: color var(--t);
}
.fn-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: var(--silver-3);
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--silver-3);
  transition: color var(--t), border-color var(--t);
}
.footer-socials a:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }
.footer-socials svg { width: 14px; height: 14px; }

/* ─── FLOATING BUTTONS ───────────────────────────────────── */
.floating-btns {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t) var(--ease), box-shadow var(--t);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.float-btn:hover { transform: translateY(-4px) scale(1.05); }
.float-ig {
  background: rgba(20,20,20,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--silver);
}
.float-ig svg { width: 18px; height: 18px; }
.float-wa {
  background: #25D366;
  color: white;
}
.float-wa svg { width: 22px; height: 22px; }

/* ─── COOKIE BANNER ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 48px;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.visible { transform: none; }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-inner p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--silver-3);
  line-height: 1.6;
}
.cookie-inner a { color: var(--silver); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ─── TOAST NOTIFICATIONS ────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: 320px;
}
.toast {
  background: rgba(12,12,12,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  pointer-events: auto;
  transform: translateX(-110%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s;
  backdrop-filter: blur(20px);
}
.toast.show { transform: none; opacity: 1; }
.toast-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  flex-shrink: 0;
  margin-top: 2px;
}
.toast-badge-book  { background: rgba(255,255,255,0.08); color: var(--silver); border: 1px solid rgba(255,255,255,0.1); }
.toast-badge-rev   { background: rgba(192,192,192,0.12); color: var(--white-off); border: 1px solid rgba(255,255,255,0.12); }
.toast-badge-live  { background: rgba(255,60,60,0.12); color: #ff6b6b; border: 1px solid rgba(255,60,60,0.2); }
.toast-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: var(--silver-2);
  line-height: 1.5;
}
.toast-text strong { color: var(--white); display: block; margin-bottom: 2px; }

/* ─── EXIT POPUP ─────────────────────────────────────────── */
#exitPopup {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
#exitPopup.visible { opacity: 1; pointer-events: auto; }
.exit-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
}
.exit-card {
  position: relative;
  z-index: 1;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 56px 48px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}
#exitPopup.visible .exit-card { transform: none; }
.exit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
  opacity: 0.3;
}
.exit-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--silver-3);
  border-radius: 50%;
  transition: background var(--t), color var(--t);
}
.exit-close:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.exit-close svg { width: 16px; height: 16px; }
.exit-brand { margin-bottom: 24px; }
.exit-brand-d {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
  display: block;
}
.exit-brand-c {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--silver);
  display: block;
}
.exit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.exit-title em { font-style: italic; color: var(--silver); }
.exit-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--silver-3);
  line-height: 1.7;
  margin-bottom: 32px;
}
.exit-cta {
  display: block;
  padding: 16px 32px;
  background: var(--white);
  color: var(--black);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--white);
  margin-bottom: 12px;
  transition: background var(--t), color var(--t);
  cursor: pointer;
  text-align: center;
}
.exit-cta:hover { background: transparent; color: var(--white); }
.exit-dismiss {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: var(--silver-3);
  cursor: pointer;
  transition: color var(--t);
  background: none;
  border: none;
  width: 100%;
  text-align: center;
  padding: 8px;
}
.exit-dismiss:hover { color: var(--silver); }

.of-btns { display: flex; flex-direction: column; gap: 12px; }

/* ─── PANNEAU CLÉ EN MAIN ────────────────────────────────── */
.cem-panel {
  position: fixed;
  inset: 0;
  z-index: 700;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cem-panel.open {
  opacity: 1;
  pointer-events: auto;
}
.cem-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cem-inner {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(900px, 100%);
  background: #0A0A0A;
  border-left: 1px solid rgba(255,255,255,0.08);
  overflow-y: auto;
  transform: translateX(60px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 64px 56px;
}
.cem-panel.open .cem-inner { transform: none; }

.cem-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s, border-color 0.3s;
}
.cem-close:hover { color: #fff; border-color: rgba(255,255,255,0.25); }
.cem-close svg { width: 18px; height: 18px; }

.cem-content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  margin-top: 32px;
}

.cem-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 24px;
}
.cem-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 40px;
}
.cem-title em { font-style: italic; color: #C0C0C0; }
.cem-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.cem-price span { font-size: 0.5em; vertical-align: super; }
.cem-price em { font-style: normal; font-size: 0.35em; color: #555; }
.cem-price-alt {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 40px;
}
.cem-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #fff;
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: 1px solid #fff;
  transition: background 0.3s, color 0.3s, gap 0.3s;
  cursor: pointer;
}
.cem-cta:hover { background: transparent; color: #fff; gap: 20px; }

.cem-right { display: flex; flex-direction: column; gap: 40px; padding-top: 8px; }
.cem-block { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px; }
.cem-block-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C0C0C0;
  margin-bottom: 20px;
}
.cem-list { display: flex; flex-direction: column; gap: 14px; }
.cem-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  padding-left: 20px;
  position: relative;
}
.cem-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #555;
  font-size: 18px;
}

@media (max-width: 768px) {
  .cem-inner { padding: 48px 24px; }
  .cem-content { grid-template-columns: 1fr; gap: 40px; }
  .cem-list li { font-size: 18px; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  #nav { padding: 0 32px; }
  .hero-inner { padding: 0 32px; }
  .hero-scroll-hint { right: 32px; }
  .nav-chapters { display: none; }
  .offer-featured { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  #nav { padding: 0 24px; }
  .hero-inner { padding: 0 24px; }
  .chapter { padding: 100px 0; }
  .cookie-banner { padding: 20px 24px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-item { padding: 32px 24px; }
  .offers-row { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }
  .real-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .floating-btns { bottom: 20px; right: 20px; }
  .toast-container { left: 16px; right: 16px; max-width: none; bottom: 80px; }
  .menu-inner { padding: calc(var(--nav-h) + 32px) 24px 32px; }
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .offer-featured { padding: 28px 24px; }
  .offer-card { padding: 28px 24px; }
  .hero-scroll-hint { display: none; }
  .ch-number { display: none; }
}
