/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg, video, canvas { max-width: 100%; display: block; }

:root {
  --dark: #08111F;
  --dark-2: #0D1A2D;
  --dark-3: #112038;
  --cream: #F8F8F6;
  --cream-2: #F0EFE9;
  --gold: #D89A2B;
  --gold-light: #E8B84B;
  --gold-dark: #B87E1A;
  --gold-glow: rgba(216, 154, 43, 0.15);
  --white: #ffffff;
  --muted: rgba(248,248,246,0.5);
  --muted-2: rgba(248,248,246,0.25);
  --red: #E05252;
  --border: rgba(248,248,246,0.08);
  --border-gold: rgba(216,154,43,0.25);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 40px rgba(216,154,43,0.15);
  --transition: 0.4s cubic-bezier(0.16,1,0.3,1);
  --font: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* Wrapper anti-scroll horizontal — fiable sur iOS Safari */
.page-clip {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Empêche tout texte de dépasser son conteneur */
* { box-sizing: border-box; }
p, h1, h2, h3, h4, h5, h6, span, a, li {
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

::selection { background: var(--gold); color: var(--dark); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; position: relative; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.hide-mobile { display: inline; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(48px, 7vw, 88px); font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h3 { font-size: 20px; font-weight: 600; line-height: 1.3; }
h4 { font-size: 16px; font-weight: 600; }
p { line-height: 1.7; color: var(--muted); }

em { font-style: normal; color: var(--gold); font-family: 'Playfair Display', Georgia, serif; }
strong { color: var(--cream); font-weight: 600; }

.text-gold { color: var(--gold); }
.reg { font-size: 0.6em; vertical-align: super; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0; transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 0 0 0 rgba(216,154,43,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(216,154,43,0.35);
}
.btn-ghost {
  background: rgba(248,248,246,0.06);
  color: var(--cream);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(248,248,246,0.1);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-gold);
}
.btn-outline:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn-xl { padding: 20px 44px; font-size: 16px; }

/* ── SECTION TAGS & HEADERS ── */
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-gold);
  background: var(--gold-glow);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-tag-light { border-color: rgba(248,248,246,0.2); background: rgba(248,248,246,0.06); color: var(--cream); }
.section-tag-red { border-color: rgba(224,82,82,0.3); background: rgba(224,82,82,0.08); color: var(--red); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 80px; }
.section-header h2 { margin-bottom: 20px; }
.section-sub { font-size: 18px; color: var(--muted); line-height: 1.6; }

/* ── REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
/* Hero visible immédiatement — pas d'attente de scroll */
.hero [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="80"] { transition-delay: 80ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="160"] { transition-delay: 160ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="240"] { transition-delay: 240ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="320"] { transition-delay: 320ms; }
[data-delay="400"] { transition-delay: 400ms; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,17,31,0.85);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 72px; display: flex; align-items: center; gap: 40px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-brand { font-size: 15px; font-weight: 700; letter-spacing: 0.05em; }
.nav-brand-sub { font-weight: 300; letter-spacing: 0.15em; font-size: 11px; display: block; color: var(--muted); }
.nav-links { display: flex; gap: 32px; list-style: none; margin-left: auto; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  margin-left: 16px;
  padding: 9px 20px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1.2;
}
.nav-cta-main {
  font-size: 13px; font-weight: 700;
  white-space: nowrap;
}
.nav-cta-sub {
  font-size: 9.5px; font-weight: 400;
  opacity: 0.7; letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px; transition: var(--transition); }
.nav-mobile { display: none; flex-direction: column; gap: 0; background: rgba(8,17,31,0.98); backdrop-filter: blur(20px); border-top: 1px solid var(--border); }
.nav-mobile a { padding: 16px 32px; font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--muted); }
.nav-mobile a:hover { color: var(--cream); }
.nav-cta-secondary { font-size: 13px; padding: 9px 16px; opacity: 0.75; }
.nav-cta-secondary:hover { opacity: 1; }
.nav-mobile .btn { margin: 16px 32px; text-align: center; justify-content: center; }

/* ── HERO — layout 2 colonnes SaaS ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 72px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { display: none; }
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 10% 50%, rgba(216,154,43,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 90% 20%, rgba(216,154,43,0.04) 0%, transparent 60%),
    linear-gradient(160deg, rgba(8,17,31,0.15) 0%, rgba(8,17,31,0.5) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(248,248,246,0.008) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248,248,246,0.008) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 75%);
  opacity: 0.6;
}

/* 2-column grid */
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  row-gap: 0;
  align-items: start;
  padding: 108px 32px 80px;
  max-width: 1200px; margin: 0 auto; width: 100%;
}

/* Colonne gauche */
.hero-left { display: flex; flex-direction: column; grid-row: span 2; justify-content: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 100px;
  border: 1px solid var(--border-gold);
  background: rgba(216,154,43,0.06);
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--gold); margin-bottom: 36px; width: fit-content;
}
.hero-badge--grid { display: none; }
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 8px var(--gold); animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(216,154,43,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(216,154,43,0); }
}
.hero-title { margin-bottom: 22px; color: var(--cream); font-size: clamp(32px, 4.5vw, 58px); }
.hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500; color: var(--cream);
  margin-bottom: 40px; line-height: 1.45;
}
.hero-text {
  font-size: 15px; color: var(--muted);
  margin-bottom: 36px; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-cta-block { display: flex; flex-direction: column; gap: 10px; }
.hero-cta-sub {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: rgba(248,248,246,0.5);
  line-height: 1.5; margin: 0;
}
.hero-signature {
  margin: 20px 0 0;
  font-size: 14px;
  font-style: italic;
  color: rgba(248,248,246,0.38);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* KPIs bar */
.hero-kpis {
  display: flex; align-items: stretch; gap: 0;
  background: rgba(248,248,246,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.hero-kpi {
  flex: 1; padding: 14px 16px;
  display: flex; gap: 0; align-items: center;
  transition: background 0.3s;
}
.hero-kpi:hover { background: rgba(216,154,43,0.06); }
.hero-kpi-sep { width: 1px; background: var(--border); flex-shrink: 0; align-self: stretch; margin: 8px 0; }
.hero-kpi-body { display: flex; flex-direction: column; gap: 3px; }
.hero-kpi-num {
  font-size: 15px; font-weight: 700; color: var(--cream); line-height: 1; white-space: nowrap;
}
.hero-kpi-num strong { color: var(--gold); }
.hero-kpi-unit { color: var(--gold); font-weight: 700; }
.hero-kpi-label { font-size: 10px; color: var(--muted); letter-spacing: 0.03em; }

/* Colonne droite : image */
.hero-right { display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; }

/* ── HERO REASSURANCE BADGES ── */
.hero-reassurance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
  grid-column: 2; /* desktop : colle à la colonne droite */
}
.hero-reassurance-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s, background 0.2s;
}
.hero-reassurance-item:hover {
  background: rgba(216,154,43,0.05);
  border-color: rgba(216,154,43,0.18);
}
/* Carte XXL : occupe les 2 colonnes */
.hero-reassurance-item--xl {
  grid-column: 1 / -1;
  background: rgba(216,154,43,0.06);
  border-color: rgba(216,154,43,0.22);
  padding: 18px 20px;
  gap: 14px;
  align-items: center;
}
.hero-reassurance-item--xl .hero-reassurance-icon {
  font-size: 28px;
}
.hero-reassurance-item--xl .hero-reassurance-content strong {
  font-size: 17px;
  color: var(--gold);
}
.hero-reassurance-item--xl .hero-reassurance-content span {
  font-size: 13px;
  color: var(--cream);
}
.hero-reassurance-item--xl .hero-reassurance-content em {
  font-size: 11px;
  color: var(--cream);
}
.hero-reassurance-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-reassurance-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-reassurance-content strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
}
.hero-reassurance-content span {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
}
.hero-reassurance-content em {
  font-size: 10px;
  color: rgba(248,248,246,0.35);
  font-style: italic;
  line-height: 1.3;
  margin-top: 2px;
}
.hero-img-wrapper { position: relative; width: 100%; }
.hero-img-glow {
  position: absolute; inset: -60px;
  background: radial-gradient(ellipse 65% 55% at 50% 55%, rgba(216,154,43,0.14), transparent 65%);
  pointer-events: none; z-index: 0;
  animation: glow-breathe 5s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero-img {
  width: 100%; height: auto; border-radius: 20px;
  display: block; position: relative; z-index: 1;
  box-shadow:
    0 48px 96px rgba(0,0,0,0.55),
    0 0 0 1px rgba(216,154,43,0.18),
    0 0 80px rgba(216,154,43,0.08);
  animation: hero-float 7s ease-in-out infinite;
}
.hero-img:hover { transform: scale(1.02) translateY(-6px); transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
/* Badges flottants */
.hero-img-badge {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(8,17,31,0.88); backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold); border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), var(--shadow-gold);
  white-space: nowrap;
}
.hero-img-badge--tl {
  top: 18px; left: -12px;
  animation: badge-float-a 5s ease-in-out infinite;
}
.hero-img-badge--br {
  bottom: 28px; right: -12px;
  color: var(--cream); border-color: rgba(248,248,246,0.15);
  animation: badge-float-b 5s ease-in-out infinite;
}
.hero-img-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ADE80;
  box-shadow: 0 0 8px rgba(74,222,128,0.6); flex-shrink: 0;
}
@keyframes badge-float-a { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes badge-float-b { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* Carte KPI flottante */
.hero-img-card {
  position: absolute; z-index: 3;
  top: 42%; right: -24px; transform: translateY(-50%);
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: rgba(8,17,31,0.92); backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold); border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45), var(--shadow-gold);
  min-width: 155px;
  animation: badge-float-a 7s ease-in-out infinite;
}
.hero-img-card-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(216,154,43,0.15); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-img-card-num { display: block; font-size: 22px; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.hero-img-card-label { font-size: 11px; color: var(--muted); margin-top: 2px; display: block; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  animation: float 3s ease-in-out infinite; z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── PRODUCTS SHOWCASE ── */
/* ── TICKER SPÉCIALISATION ── */
.ticker-wrap {
  display: flex; align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(248,248,246,0.015);
  padding: 0;
  overflow: hidden;
  gap: 0;
}
.ticker-label {
  flex-shrink: 0;
  padding: 0 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  height: 100%;
  display: flex; align-items: center;
  min-height: 52px;
}
.ticker-track {
  flex: 1; overflow: hidden; position: relative;
}
.ticker-track::before, .ticker-track::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker-track::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.ticker-track::after { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
.ticker-inner {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
  padding: 14px 0;
}
.ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  white-space: nowrap; padding: 0 28px;
  transition: color 0.2s;
}
.ticker-item:hover { color: var(--cream); }
.ticker-emoji { font-size: 15px; }
.ticker-sep {
  color: var(--border);
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}

/* old logo-pill kept for safety */
.logo-pill {
  padding: 10px 24px; border: 1px solid var(--border);
  border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--muted);
  white-space: nowrap; flex-shrink: 0;
  background: rgba(248,248,246,0.03);
}

/* ── PROBLÈME ── */
/* ── HALOS ORANGE DISCRETS — texture lumineuse transversale ── */
.probleme, .resultats, .methode, .fit, .audit-section, .calc-section {
  position: relative;
  overflow: hidden;
}
.probleme::after, .resultats::after, .methode::after, .fit::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.probleme::after {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,154,43,0.04) 0%, transparent 70%);
}
.resultats::after {
  width: 700px; height: 500px;
  bottom: -100px; left: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,154,43,0.05) 0%, transparent 65%);
}
.methode::after {
  width: 500px; height: 500px;
  top: 50%; right: -100px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,154,43,0.04) 0%, transparent 70%);
}
.fit::after {
  width: 400px; height: 400px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,154,43,0.03) 0%, transparent 65%);
}
/* S'assurer que le contenu reste au dessus des halos */
.probleme > *, .resultats > *, .methode > *, .fit > *, .audit-section > * {
  position: relative; z-index: 1;
}

/* ── SÉPARATEURS PREMIUM ENTRE SECTIONS ── */
.section + .section::before,
.comparatif + .section::before,
.methode + .section::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(216,154,43,0.08) 20%,
    rgba(216,154,43,0.25) 50%,
    rgba(216,154,43,0.08) 80%,
    transparent 100%
  );
  margin: 0;
}

/* Alternance fond sombre / fond légèrement plus clair */
.probleme { background: var(--dark); }
.probleme-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 80px;
}
.probleme-card {
  background: rgba(248,248,246,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 34px 36px; /* +5% hauteur */
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.probleme-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, rgba(216,154,43,0.05), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.probleme-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.probleme-card:hover::before { opacity: 1; }
.probleme-card-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 11px; font-weight: 700; color: var(--muted-2);
  letter-spacing: 0.1em;
}
.probleme-card-icon {
  width: 46px; height: 46px; border-radius: var(--radius-xs); /* +5% icône */
  background: rgba(216,154,43,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 20px;
}
.probleme-card h3 { font-size: 18.7px; margin-bottom: 12px; color: var(--cream); line-height: 1.3; } /* +10% titre */
.probleme-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.probleme-cta-card {
  background: linear-gradient(135deg, rgba(216,154,43,0.12), rgba(216,154,43,0.04));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  transition: var(--transition);
}
.probleme-cta-card:hover { transform: translateY(-4px); }
/* Mic drop variant */
.probleme-cta-card--micdrop {
  background: linear-gradient(145deg, rgba(216,154,43,0.13) 0%, rgba(216,154,43,0.03) 60%, rgba(8,17,31,0.2) 100%);
  border-color: rgba(216,154,43,0.35);
  box-shadow: 0 0 40px rgba(216,154,43,0.08), inset 0 1px 0 rgba(216,154,43,0.15);
  justify-content: space-between;
}
.probleme-cta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 4px;
}
.probleme-bottom-cta {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: 56px; text-align: center;
}
.probleme-bottom-cta-sub {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: rgba(248,248,246,0.5);
  line-height: 1.5; margin: 0;
}
.probleme-cta-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(216,154,43,0.18);
  width: 100%;
  font-size: 13px;
  font-style: italic;
  color: rgba(248,248,246,0.5);
  line-height: 1.5;
}
.probleme-cta-text { font-size: 18px; font-weight: 600; color: var(--cream); }
.probleme-cta-bold { font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1.3; }
.probleme-cta-icon { margin-bottom: 4px; }

/* Fuites */
.fuites {
  background: rgba(248,248,246,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}
.fuites-header { margin-bottom: 36px; }
.fuites-header h3 { font-size: 24px; margin-top: 12px; }
.fuites-list { display: flex; flex-direction: column; gap: 0; }
.fuite-item {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.fuite-item:last-child { border-bottom: none; }
.fuite-item:hover { padding-left: 8px; }
.fuite-num {
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.1em; flex-shrink: 0; padding-top: 2px;
  min-width: 28px;
}
.fuite-item strong { display: block; font-size: 15px; color: var(--cream); margin-bottom: 4px; }
.fuite-item p { font-size: 14px; color: var(--muted); }

/* ── COMPARATIF ── */
.comparatif { background: var(--dark-2); }
.comparatif .section-header h2 { line-height: 1.155; } /* +5% interligne */
.comparatif .section-header { margin-bottom: 100px; } /* +20px espace avant tableau */
.comparatif-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comparatif-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.comparatif-row-last { border-bottom: none; }
.comparatif-cell {
  padding: 14px 20px;
  font-size: 13px; color: var(--muted); line-height: 1.5;
  display: flex; align-items: center; gap: 8px;
}
.comparatif-cell-label {
  color: var(--cream); font-weight: 600; font-size: 13px;
  border-right: 1px solid var(--border);
}
.comparatif-row-header .comparatif-cell {
  padding: 18px 20px; font-weight: 700; font-size: 14px;
}
.comparatif-row-header { background: rgba(248,248,246,0.02); }
/* Généralistes : très atténué */
.comparatif-cell-bad {
  background: rgba(5,8,15,0.4);
  color: rgba(248,248,246,0.38);
  border-right: 1px solid var(--border);
}
.comparatif-row-header .comparatif-cell-bad {
  background: rgba(5,8,15,0.6);
}
/* HME : colonne lumineuse et dorée */
.comparatif-cell-good {
  background: rgba(216,154,43,0.05);
  color: var(--cream);
  font-weight: 500;
}
.comparatif-row:hover .comparatif-cell-good {
  background: rgba(216,154,43,0.09);
}
.comparatif-row:hover .comparatif-cell-bad {
  background: rgba(5,8,15,0.55);
}
.comparatif-row-header .comparatif-cell-good {
  background: linear-gradient(135deg, rgba(216,154,43,0.18), rgba(216,154,43,0.08));
  border-left: 1px solid rgba(216,154,43,0.3);
}
.tag-bad { padding: 4px 12px; border-radius: 100px; background: rgba(255,255,255,0.05); color: rgba(248,248,246,0.4); font-size: 12px; }
.tag-good { padding: 6px 14px; border-radius: 100px; background: linear-gradient(90deg, rgba(216,154,43,0.25), rgba(216,154,43,0.15)); color: var(--gold); font-size: 13px; font-weight: 700; border: 1px solid rgba(216,154,43,0.3); }
.x { color: rgba(224,82,82,0.5); font-weight: 700; flex-shrink: 0; font-size: 13px; }
.check { color: var(--gold); font-weight: 700; flex-shrink: 0; font-size: 15px; }

/* Tagline sous le sous-titre */
.comparatif-tagline {
  font-size: 14px; font-style: italic;
  color: rgba(248,248,246,0.4);
  margin-top: -8px; margin-bottom: 0;
}

/* Bannière mic drop */
.comparatif-banner {
  margin-top: 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  padding: 22px 32px;
  background: linear-gradient(90deg, rgba(216,154,43,0.04), rgba(216,154,43,0.1), rgba(216,154,43,0.04));
  border: 1px solid rgba(216,154,43,0.2);
  border-radius: var(--radius);
  text-align: center;
}
.comparatif-banner-left {
  font-size: 15px; color: rgba(248,248,246,0.55);
}
.comparatif-banner-sep {
  color: rgba(216,154,43,0.4); font-size: 20px; flex-shrink: 0;
}
.comparatif-banner-right {
  font-size: 15px; font-weight: 700; color: var(--cream);
}
.comparatif-banner-right em {
  color: var(--gold); font-style: normal;
}

/* ── RÉSULTATS ── */
.resultats { background: var(--dark); }
.resultats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 60px;
}
.resultat-card {
  background: rgba(248,248,246,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.resultat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s;
}
.resultat-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.resultat-card:hover::after { transform: scaleX(1); }
.resultat-card-hero {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(216,154,43,0.1), rgba(216,154,43,0.03));
  border-color: var(--border-gold);
}
.resultat-card-hero .resultat-num { font-size: clamp(60px, 8vw, 96px); }
.resultat-card-valorisable .resultat-num-text {
  font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1.2; margin-bottom: 12px;
}
.resultat-icon { margin-bottom: 20px; }
.resultat-num {
  font-size: 52px; font-weight: 800; color: var(--gold);
  line-height: 1; letter-spacing: -0.03em; margin-bottom: 8px;
}
.resultat-unit { font-size: 0.5em; }
.resultat-label { font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.resultat-detail { font-size: 13px; color: var(--muted); line-height: 1.6; }
.resultat-note { font-size: 11px; color: var(--muted-2); margin-top: 8px; }
.resultats-quote {
  text-align: center; padding: 40px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  background: var(--gold-glow);
}
.resultats-quote blockquote {
  font-size: 20px; font-weight: 600; color: var(--cream);
  font-style: italic; line-height: 1.6;
}

/* ── MÉTHODE ── */
.methode { background: var(--dark-2); overflow: hidden; }

/* ── L'EXPÉRIENCE HME ── */
.experience-hme { background: var(--dark); overflow: hidden; }

.experience-journey {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.experience-journey::-webkit-scrollbar { display: none; }

.experience-step {
  flex: 1;
  min-width: 160px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  position: relative;
}
.experience-step:hover {
  border-color: rgba(216,154,43,0.3);
  background: rgba(216,154,43,0.04);
  transform: translateY(-4px);
}
.experience-step--highlight {
  border-color: var(--border);
  background: rgba(255,255,255,0.02);
}
.experience-step-num {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--gold); opacity: 0.7;
}
.experience-step-icon {
  font-size: 28px; line-height: 1;
}
.experience-step h3 {
  font-size: 14px; font-weight: 700; color: var(--cream);
  line-height: 1.3; margin: 0;
}
.experience-step-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
  margin-top: auto;
}
.experience-step-list li {
  font-size: 12px; color: var(--muted); line-height: 1.4;
  padding-left: 14px; position: relative;
}
.experience-step-list li::before {
  content: '·';
  position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}
.experience-step-arrow {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; padding: 0 8px;
  color: rgba(216,154,43,0.3); font-size: 18px;
  align-self: center;
}
.home-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 80px; }
.home-card {
  border-radius: var(--radius); padding: 40px;
  display: flex; gap: 28px; align-items: flex-start;
  border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.home-card:hover { transform: translateY(-4px); }
.home-card-H { background: linear-gradient(135deg, rgba(216,154,43,0.12), rgba(216,154,43,0.04)); border-color: var(--border-gold); }
.home-card-O { background: rgba(248,248,246,0.03); }
.home-card-M { background: rgba(248,248,246,0.03); }
.home-card-E { background: linear-gradient(135deg, rgba(216,154,43,0.08), rgba(216,154,43,0.02)); border-color: rgba(216,154,43,0.15); }
.home-letter {
  font-size: 80px; font-weight: 900; line-height: 0.85;
  color: var(--gold); flex-shrink: 0;
  font-family: 'Playfair Display', Georgia, serif;
  opacity: 0.9;
}
.home-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--cream); }
.home-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Steps */
.steps-wrapper {
  background: rgba(248,248,246,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}
.steps-label {
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 48px;
}
.steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start; margin-bottom: 40px;
}
.step { text-align: center; padding: 0 16px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-size: 14px; font-weight: 700; margin: 0 auto 16px;
}
.step-icon { margin: 0 auto 12px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; }
.step-range {
  font-size: 11px; color: var(--gold); font-weight: 600;
  letter-spacing: 0.04em; margin-bottom: 8px;
}
.step h4 { font-size: 17px; color: var(--cream); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.step-arrow {
  font-size: 24px; color: var(--gold); opacity: 0.4;
  padding-top: 40px; flex-shrink: 0;
}
.steps-tagline { text-align: center; font-size: 16px; color: var(--muted); }
.steps-tagline strong { color: var(--cream); }

/* ── ENTREPÔT ── */
/* ══════════════════════════════════════════
   ENTREPÔT V2 — L'INFRASTRUCTURE HME
══════════════════════════════════════════ */
.entrepot-v2 { background: var(--dark); }

/* Photo immersive */
.entrepot-photo-wrap {
  margin: 0 32px 72px;
  border-radius: var(--radius);
  overflow: visible;
  position: relative;
  height: 560px;
  border: none;
}
.entrepot-photo-inner {
  position: relative; width: 100%; height: 100%;
  border-radius: var(--radius);
  overflow: visible;
}
.entrepot-photo-inner > img {
  border-radius: var(--radius);
  border: 1px solid rgba(216,154,43,0.15);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(216,154,43,0.08);
  overflow: hidden;
}
.entrepot-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.9) brightness(1.12);
  transition: transform 6s ease;
}
.entrepot-photo-wrap:hover .entrepot-photo { transform: scale(1.03); }
.entrepot-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(8,17,31,0.88) 100%);
}

/* Bande badges bas */
.entrepot-badges-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-around;
  padding: 20px 32px;
  background: rgba(8,17,31,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(216,154,43,0.18);
  z-index: 10;
}
.entrepot-badge-item {
  display: flex; align-items: center; gap: 10px;
  flex: 1;
  justify-content: center;
}
.entrepot-badge-icon { font-size: 20px; flex-shrink: 0; }
.entrepot-badge-label {
  font-size: 12px; font-weight: 500; color: var(--cream);
  line-height: 1.4;
}
.entrepot-badge-sep {
  width: 1px; height: 32px;
  background: rgba(216,154,43,0.2);
  flex-shrink: 0;
}


/* Séparateur entre journey et strip */
.experience-features-sep {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 56px 0 44px;
}
.experience-features-sep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(216,154,43,0.25), transparent);
}
.experience-features-sep-text {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* Bande cartes fonctionnalités — défilement auto */
.entrepot-features-strip {
  overflow: hidden;
  margin-bottom: 56px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.entrepot-features-strip-inner {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: featuresScroll 30s linear infinite;
}
.entrepot-features-strip-inner:hover { animation-play-state: paused; }
@keyframes featuresScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.entrepot-feat-card {
  flex: 0 0 auto;
  width: 172px;
  padding: 24px 18px;
  border-radius: var(--radius);
  background: rgba(248,248,246,0.03);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.entrepot-feat-card:hover {
  border-color: rgba(216,154,43,0.2);
  background: rgba(216,154,43,0.03);
  transform: translateY(-3px);
}
.entrepot-feat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.entrepot-feat-icon--gold { background: rgba(216,154,43,0.1); }
.entrepot-feat-icon--blue { background: rgba(107,159,212,0.1); }
.entrepot-feat-card strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.4;
}
.entrepot-feat-card span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
/* Logos image individuels */
.reass-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s, filter 0.2s;
}
.reass-logo-img:hover { opacity: 1; filter: none; }
.reass-logo-img--dark { filter: brightness(0) invert(1); }

/* Bande intégrations & transporteurs */
.reass-integrations-banner {
  width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.85;
  border-radius: 8px;
  transition: opacity 0.2s;
}
.reass-integrations-banner:hover { opacity: 1; }

/* Transporteurs texte (conservés) */
.reass-logo {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.reass-logo:hover { opacity: 1; }
.reass-logo--colissimo { color: #FFCD00; border-color: rgba(255,205,0,0.25); background: rgba(255,205,0,0.07); }
.reass-logo--laposte   { color: #FFCD00; border-color: rgba(255,205,0,0.25); background: rgba(255,205,0,0.07); }
.reass-logo--mondial   { color: #E2001A; border-color: rgba(226,0,26,0.25); background: rgba(226,0,26,0.07); }
.reass-logo--colis     { color: #00AEEF; border-color: rgba(0,174,239,0.25); background: rgba(0,174,239,0.07); }

/* ── Partenaires image pleine largeur ── */
.entrepot-partners-full {
  margin-bottom: 56px;
  border-radius: var(--radius);
  overflow: hidden;
}
.partners-full-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.entrepot-partners-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.partners-card-img {
  width: 100%;
  height: 280px;
  display: block;
  border-radius: var(--radius);
  object-fit: contain;
  object-position: center;
}

/* ── Partenaires grid (ancienne version) ── */
.entrepot-partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.entrepot-partner-card {
  padding: 32px 36px;
  border-radius: var(--radius);
  background: rgba(248,248,246,0.03);
  border: 1px solid rgba(216,154,43,0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.entrepot-partner-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,154,43,0.5), transparent);
}
.entrepot-partner-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.entrepot-partner-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(216,154,43,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.entrepot-partner-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cream);
  margin-bottom: 8px;
}
.entrepot-partner-line {
  width: 32px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.entrepot-partner-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.entrepot-partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.partner-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.2s, border-color 0.2s;
}
.partner-logo:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(216,154,43,0.2);
}
.partner-logo--dark { filter: brightness(0) invert(1); opacity: 0.7; }
.entrepot-partner-subs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.entrepot-partner-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 130px;
}
.entrepot-partner-sub svg { flex-shrink: 0; }
.entrepot-partner-sub div { display: flex; flex-direction: column; gap: 1px; }
.entrepot-partner-sub strong { font-size: 12px; color: var(--cream); font-weight: 600; }
.entrepot-partner-sub span { font-size: 11px; color: var(--muted); }

/* Phrase signature */
.entrepot-signature {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding-top: 8px;
}
.entrepot-signature p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.entrepot-signature p em {
  font-style: normal;
  color: var(--cream);
  font-weight: 700;
}

/* ── FIT ── */
.fit { background: var(--dark); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit-col { background: rgba(248,248,246,0.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; }
.fit-good { border-color: rgba(216,154,43,0.2); }
.fit-bad { border-color: rgba(224,82,82,0.15); }
.fit-header { margin-bottom: 32px; }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.fit-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--muted); }
.fit-check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.fit-cross { color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ── TÉMOIGNAGE ── */
.temoignage { background: var(--dark); }
.temoignage-inner {
  max-width: 820px; margin: 0 auto; text-align: center;
  background: rgba(248,248,246,0.03);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 60px; position: relative;
}
.temoignage-quote-mark {
  font-size: 120px; line-height: 0.5; color: var(--gold);
  opacity: 0.3; font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}
.temoignage-text {
  font-size: clamp(18px, 2.5vw, 22px); font-style: italic;
  color: var(--cream); line-height: 1.7; margin-bottom: 40px;
  font-family: 'Playfair Display', Georgia, serif;
}
.temoignage-author {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 40px;
}
.temoignage-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.temoignage-author strong { display: block; font-size: 15px; color: var(--cream); }
.temoignage-author span { font-size: 13px; color: var(--muted); }
.temoignage-stats {
  display: flex; gap: 0; justify-content: center;
  border-top: 1px solid var(--border); padding-top: 32px;
}
.temoignage-stat { padding: 0 32px; flex: 1; border-right: 1px solid var(--border); }
.temoignage-stat:last-child { border-right: none; }
.temoignage-stat-num { display: block; font-size: 32px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.temoignage-stat span:last-child { font-size: 12px; color: var(--muted); }

/* ── URGENCE ── */
.urgence {
  background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.urgence-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.urgence-inner h2 { margin-bottom: 24px; font-size: clamp(28px, 4vw, 44px); }
.urgence-inner p { font-size: 17px; color: var(--muted); margin-bottom: 44px; line-height: 1.7; }

/* ── AUDIT ── */
/* ══ AUDIT SECTION ══ */
.audit-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.audit-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(216,154,43,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.audit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left */
.audit-content .section-tag { margin-bottom: 16px; }
.audit-content h2 { margin-bottom: 20px; font-size: clamp(36px, 5vw, 56px); line-height: 1.1; }
.audit-intro { font-size: 16px; color: var(--muted); margin-bottom: 24px; }
.audit-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 40px; padding: 0;
}
.audit-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--cream); font-weight: 500;
}
.audit-list li svg { flex-shrink: 0; }
.audit-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Right — card */
.audit-card {
  background: rgba(248,248,246,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.audit-card-header { margin-bottom: 28px; }
.audit-card-tag {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.audit-progress-track {
  height: 4px;
  background: rgba(248,248,246,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.audit-progress-fill {
  height: 100%; width: 65%; border-radius: 2px;
  background: linear-gradient(to right, #b87c1a, #f0c060);
  animation: auditPulse 2s ease-in-out infinite;
}
@keyframes auditPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.audit-steps {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.audit-step {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; padding: 11px 14px;
  border-radius: 8px;
  background: rgba(248,248,246,0.02);
  color: var(--muted);
}
.audit-step--done {
  color: var(--cream);
}
.audit-step--active {
  color: var(--gold);
  background: rgba(216,154,43,0.08);
  border: 1px solid rgba(216,154,43,0.15);
}
.audit-step--pending {
  opacity: 0.55;
}
.audit-step-icon { flex-shrink: 0; }
.audit-spinner {
  flex-shrink: 0;
  display: inline-block;
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(216,154,43,0.25);
  border-top-color: var(--gold);
  animation: auditSpin 0.9s linear infinite;
}
@keyframes auditSpin { to { transform: rotate(360deg); } }
.audit-dot {
  flex-shrink: 0;
  display: inline-block;
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(248,248,246,0.15);
}

.audit-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.audit-footer-label { font-size: 13px; color: var(--muted); }
.audit-footer-value { font-size: 16px; font-weight: 700; color: var(--gold); }

/* Merit badge */
.audit-merite {
  display: flex; align-items: flex-start; gap: 20px;
  max-width: 680px; margin: 52px auto 0;
  padding: 28px 36px;
  border-radius: var(--radius);
  background: rgba(216,154,43,0.05);
  border: 1px solid rgba(216,154,43,0.18);
}
.audit-merite-icon {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(216,154,43,0.1);
  border: 1px solid rgba(216,154,43,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.audit-merite-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
}
.audit-merite-content p {
  font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0;
}
.audit-merite-content strong { color: var(--cream); font-weight: 600; }

/* ══════════════════════════════════════
   CALCULATEUR D'ÉCONOMIES
══════════════════════════════════════ */
.calc-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.calc-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(216,154,43,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.calc-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.calc-header h2 { margin-bottom: 16px; }
.calc-header-sub {
  font-size: 17px; color: var(--muted); line-height: 1.6;
}

/* Card principale */
.calc-card {
  max-width: 780px; margin: 0 auto;
  background: rgba(248,248,246,0.035);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 52px;
  position: relative; z-index: 1;
}

/* Label d'étape */
.calc-step-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream);
  margin-bottom: 28px;
}
.calc-step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Slider */
.calc-slider-wrap {
  position: relative;
  margin-bottom: 36px;
}
.calc-slider-labels {
  position: relative;
  height: 20px;
  margin-bottom: 10px;
}
.calc-slider-labels span {
  position: absolute;
  font-size: 11px; color: var(--muted); font-weight: 500;
  transform: translateX(-50%);
  white-space: nowrap;
}
.calc-slider-labels span:first-child { transform: translateX(0); }
.calc-slider-labels span:last-child  { transform: translateX(-100%); }

.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  border-radius: 3px;
  background: rgba(248,248,246,0.1);
  outline: none; cursor: pointer;
  position: relative;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 2px var(--gold);
  cursor: pointer;
  transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--dark);
  cursor: pointer;
}

/* Estimation inline */
.calc-slider-current {
  text-align: center;
  font-size: 13px; font-weight: 600; color: var(--gold);
  margin-top: 14px; letter-spacing: 0.04em;
}

.calc-estimate {
  background: rgba(216,154,43,0.06);
  border: 1px solid rgba(216,154,43,0.2);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.calc-estimate--hidden {
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.calc-estimate--active {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
  border-color: rgba(216,154,43,0.4);
  background: rgba(216,154,43,0.09);
}
.calc-estimate-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.calc-estimate-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: var(--cream);
  line-height: 1.1; margin-bottom: 6px;
}
.calc-estimate-sub {
  font-size: 13px; color: var(--muted);
}

/* Email row */
.calc-email-wrap {
  display: flex; gap: 12px;
  margin-bottom: 12px;
}
.calc-email-input {
  flex: 1;
  background: rgba(248,248,246,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px; color: var(--cream);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.calc-email-input::placeholder { color: rgba(248,248,246,0.3); }
.calc-email-input:focus { border-color: rgba(216,154,43,0.5); }
.calc-email-hint {
  font-size: 11px; color: var(--muted); font-style: italic;
  margin: 6px 0 0; letter-spacing: 0.02em;
}
.calc-email-btn {
  width: 100%;
  padding: 16px 24px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.calc-btn-main {
  font-size: 15px; font-weight: 700; line-height: 1.2;
}
.calc-btn-sub {
  font-size: 10.5px; font-weight: 400; opacity: 0.75;
  letter-spacing: 0.03em;
}

/* ── RÉSULTAT ── */
.calc-result { animation: fadeSlideUp 0.4s ease; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.calc-result-top {
  text-align: center;
  padding: 36px 24px;
  background: rgba(216,154,43,0.06);
  border: 1px solid rgba(216,154,43,0.25);
  border-radius: 16px;
  margin-bottom: 28px;
}
.calc-result-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(216,154,43,0.35);
  border-radius: 100px; padding: 5px 14px;
  margin-bottom: 20px;
}
.calc-result-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; color: var(--cream);
  line-height: 1.1; margin-bottom: 8px;
}
.calc-result-label {
  font-size: 15px; color: var(--muted); margin-bottom: 12px;
}
.calc-result-basis {
  font-size: 12px; color: rgba(248,248,246,0.35);
  font-style: italic;
}
.calc-result-breakdown {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 24px;
}
.calc-breakdown-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--cream);
}
.calc-result-disclaimer {
  font-size: 11px; color: rgba(248,248,246,0.3);
  font-style: italic; margin-bottom: 28px; line-height: 1.6;
}
.calc-result-ctas { text-align: center; }
.calc-result-cta-sub {
  font-size: 12px; color: var(--muted); margin-top: 10px;
}

/* Réassurance bas */
.calc-why {
  display: flex; align-items: flex-start; gap: 18px;
  max-width: 680px; margin: 40px auto 0;
  padding: 24px 32px;
  border-radius: 14px;
  background: rgba(216,154,43,0.04);
  border: 1px solid rgba(216,154,43,0.12);
  font-size: 14px; color: var(--muted); line-height: 1.7;
  position: relative; z-index: 1;
}
.calc-why-icon {
  flex-shrink: 0; margin-top: 2px;
}
.calc-why strong { color: var(--cream); }
.calc-why em { font-style: italic; }

/* Responsive */
@media (max-width: 700px) {
  .calc-card { padding: 28px 20px; }
  .calc-email-wrap { flex-direction: column; }
  .calc-email-btn { width: 100%; text-align: center; }
  .calc-why { padding: 18px 20px; }
}

/* ── ÉQUIPE ── */
.equipe { background: var(--dark-2); }
.equipe-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.equipe-card {
  background: rgba(248,248,246,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 20px; text-align: center;
  transition: var(--transition);
}
.equipe-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.equipe-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 700; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.equipe-card strong { display: block; font-size: 15px; color: var(--cream); margin-bottom: 4px; }
.equipe-role { display: block; font-size: 12px; color: var(--gold); margin-bottom: 12px; font-weight: 500; }
.equipe-quote { font-size: 13px; color: var(--muted); line-height: 1.6; font-style: italic; margin-bottom: 16px; }
.equipe-value {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
}
.engages { background: rgba(216,154,43,0.15); color: var(--gold); }
.exigeants { background: rgba(99,179,237,0.1); color: #63B3ED; }
.proactifs { background: rgba(104,211,145,0.1); color: #68D391; }
.responsables { background: rgba(183,148,244,0.1); color: #B794F4; }
.passionnes { background: rgba(252,129,74,0.1); color: #FC814A; }

/* ── VISION ── */
.vision { background: var(--dark); }
.vision-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.vision-content h2 { margin-bottom: 40px; font-size: clamp(24px, 3.5vw, 40px); }
.vision-stats { display: flex; flex-direction: column; gap: 28px; }
.vision-stat { display: flex; align-items: baseline; gap: 16px; }
.vision-num { font-size: 40px; font-weight: 800; color: var(--gold); flex-shrink: 0; }
.vision-stat span:last-child { font-size: 16px; color: var(--muted); }
.vision-map { display: flex; justify-content: center; }
.europe-map { width: 100%; max-width: 360px; }

/* ── MANIFESTE ── */
.manifeste {
  background: linear-gradient(to bottom, var(--dark-2), var(--dark));
  position: relative;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.manifeste::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/entrepot-2.jpg') center center / cover no-repeat;
  opacity: 0.04; filter: grayscale(1);
  pointer-events: none;
}
.manifeste-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.manifeste-title { font-size: clamp(32px, 5vw, 56px); margin-bottom: 8px; }
.manifeste-sub { font-size: 16px; color: var(--muted); margin-bottom: 60px; }
.manifeste-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-bottom: 48px; }
.manifeste-item {
  padding: 32px; background: rgba(248,248,246,0.02);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.manifeste-item:hover { background: rgba(248,248,246,0.04); }
.manifeste-neg { font-size: 14px; color: var(--muted); margin-bottom: 8px; text-decoration: line-through; opacity: 0.6; }
.manifeste-pos { font-size: 18px; font-weight: 600; color: var(--gold); line-height: 1.3; }
.manifeste-tagline { font-size: 20px; color: var(--muted); line-height: 1.6; }
.manifeste-tagline strong { color: var(--cream); display: block; font-size: 24px; margin-top: 8px; }

/* ── FOOTER ── */
.footer {
  background: var(--dark-2); border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 80px; margin-bottom: 60px; }
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 8px; }
.footer-certs { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-certs span { font-size: 12px; color: var(--muted); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer-col a, .footer-col span {
  display: block; font-size: 14px; color: var(--muted);
  margin-bottom: 12px; line-height: 1.6;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-shipping { margin-top: 16px; padding: 10px 14px; border-radius: var(--radius-xs); background: rgba(248,248,246,0.03); border: 1px solid var(--border); font-size: 12px !important; }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--muted-2);
}

/* ══════════════════════════════════════════
   V2 — HERO KPI CARDS (P1)
══════════════════════════════════════════ */
.hero-kpis {
  display: flex; align-items: stretch; gap: 0;
  background: rgba(248,248,246,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  overflow: hidden; max-width: 800px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.hero-kpi {
  flex: 1; padding: 22px 24px;
  display: flex; gap: 14px; align-items: center;
  position: relative; transition: background 0.3s;
}
.hero-kpi:hover { background: rgba(216,154,43,0.06); }
.hero-kpi-sep {
  width: 1px; background: var(--border); flex-shrink: 0; align-self: stretch; margin: 12px 0;
}
.hero-kpi-icon {
  width: 40px; height: 40px; border-radius: var(--radius-xs);
  background: rgba(216,154,43,0.1); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-kpi-body { display: flex; flex-direction: column; gap: 4px; }
.hero-kpi-num {
  font-size: 17px; font-weight: 700; color: var(--cream); line-height: 1;
  white-space: nowrap;
}
.hero-kpi-num strong { color: var(--gold); }
.hero-kpi-unit { color: var(--gold); font-weight: 700; }
.hero-kpi-label { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }

/* ══════════════════════════════════════════
   V2 — FUITES SUB TEXT (P5)
══════════════════════════════════════════ */
.fuites-sub {
  font-size: 15px; color: var(--muted); line-height: 1.7; margin-top: 12px; max-width: 600px;
}

/* ══════════════════════════════════════════
   V2 — RÉSULTATS MEGA CARDS (P4)
══════════════════════════════════════════ */
.resultats { background: var(--dark); }
.resultats-mega {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px; margin-bottom: 64px;
}
.mega-card-col { display: flex; flex-direction: column; gap: 16px; }

.mega-card {
  border-radius: var(--radius); padding: 40px 36px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.mega-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(216,154,43,0.06), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.mega-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.mega-card:hover::before { opacity: 1; }

.mega-card-primary {
  background: linear-gradient(135deg, rgba(216,154,43,0.12) 0%, rgba(216,154,43,0.04) 100%);
  border-color: var(--border-gold);
  grid-row: span 2;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow-gold);
}
.mega-card-secondary {
  background: rgba(248,248,246,0.03); flex: 1;
}
.mega-card-valorisable {
  background: linear-gradient(135deg, rgba(216,154,43,0.08), rgba(216,154,43,0.02));
  border-color: rgba(216,154,43,0.2);
}

.mega-card-tag {
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(216,154,43,0.15); border: 1px solid var(--border-gold);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.mega-card-num {
  font-size: clamp(36px, 4vw, 52px); font-weight: 900; color: var(--gold);
  line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 12px;
}
.mega-card-num span { font-size: 0.6em; color: var(--muted); font-weight: 400; display: block; margin: 4px 0; }
.mega-card-num-sm {
  font-size: clamp(22px, 2.5vw, 30px); font-weight: 800; color: var(--cream);
  line-height: 1.1; margin-bottom: 8px; letter-spacing: -0.02em;
}
.mega-card-num-sm em { font-size: 1.1em; color: var(--gold); }
.mega-card-num-text {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--gold);
  line-height: 1.1; letter-spacing: -0.02em; margin: 16px 0 8px;
}
.mega-card-label {
  font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 8px;
}
.mega-card-sub {
  font-size: 13px; color: var(--muted); line-height: 1.7;
}
.mega-card-note {
  font-size: 11px; color: var(--muted-2); margin-top: 12px;
}
.mega-card-icon { margin-bottom: 16px; }
.mega-card-star { margin-bottom: 8px; }
.mega-card-cta { margin-top: 24px; }
.mega-card-bar {
  height: 3px; background: rgba(248,248,246,0.08); border-radius: 2px;
  overflow: hidden; margin-top: 20px;
}
.mega-card-bar-fill {
  height: 100%; width: var(--w, 70%);
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  animation: bar-grow 1.5s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes bar-grow { from { width: 0; } to { width: var(--w, 70%); } }

/* EBITDA statement — P5 */
.ebitda-statement {
  display: flex; align-items: center; gap: 32px;
  padding: 40px 0; margin-bottom: 48px;
}
.ebitda-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--border-gold), transparent); }
.ebitda-text {
  text-align: center; font-size: clamp(16px, 2vw, 20px); color: var(--muted);
  line-height: 1.7; flex-shrink: 0; max-width: 600px;
  font-style: italic;
}
.ebitda-text strong { color: var(--cream); font-style: normal; }

/* Mini stats row */
.resultats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: rgba(248,248,246,0.02);
}
.resultat-mini {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.resultat-mini:last-child { border-right: none; }
.resultat-mini:hover { background: rgba(216,154,43,0.05); }
.resultat-mini-num {
  display: block; font-size: 32px; font-weight: 800;
  color: var(--gold); letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 6px;
}
.resultat-mini-label { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* ══════════════════════════════════════════
   V2 — SYSTÈME HOME MADE® (P6)
══════════════════════════════════════════ */
.methode { background: var(--dark-2); }
.system-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 60px;
}
.system-card {
  background: rgba(248,248,246,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column; gap: 0;
}
.system-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.system-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.system-card:hover::after { transform: scaleX(1); }
.system-card-num {
  font-size: 11px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.12em; margin-bottom: 20px;
}
.system-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: rgba(216,154,43,0.08); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.system-card h3 {
  font-size: 18px; color: var(--cream); line-height: 1.2; margin-bottom: 14px;
}
.system-card p { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.system-card-tag { display: none; }

/* HOME acrostic */
/* ── BANDEAU OBSESSION ── */
.methode-obsession {
  margin: 0 0 56px;
  padding: 28px 40px;
  background: linear-gradient(90deg, rgba(216,154,43,0.05), rgba(216,154,43,0.1), rgba(216,154,43,0.05));
  border: 1px solid rgba(216,154,43,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.methode-obsession-question {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 6px;
  flex-basis: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.methode-obsession-mantra-label {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.methode-obsession-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); flex-shrink: 0;
  white-space: nowrap;
}
.methode-obsession-items {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.methode-obsession-items span {
  font-size: 15px; font-weight: 600; color: var(--cream);
}
.methode-obsession-sep {
  color: rgba(216,154,43,0.4); font-size: 20px;
}

/* ── HOME ACROSTICHE XXL ── */
.home-acrostic {
  background: rgba(248,248,246,0.02);
  border: 1px solid rgba(216,154,43,0.2);
  border-radius: var(--radius);
  padding: 56px 48px; margin-bottom: 48px;
  position: relative; overflow: hidden;
}
.home-acrostic::before {
  content: 'HOME';
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  font-size: 200px; font-weight: 900; color: rgba(216,154,43,0.03);
  line-height: 1; pointer-events: none; user-select: none;
  font-family: Georgia, serif;
}
.home-acrostic-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-bottom: 40px;
}
.acro-item {
  display: flex; flex-direction: column; gap: 12px;
  padding: 0 32px 0 0;
  border-right: 1px solid rgba(216,154,43,0.12);
}
.acro-item:last-child { border-right: none; padding-right: 0; }
.acro-item:not(:first-child) { padding-left: 32px; }
.acro-letter {
  font-size: 80px; font-weight: 900; color: var(--gold); line-height: 0.85; flex-shrink: 0;
  font-family: 'Playfair Display', Georgia, serif;
  text-shadow: 0 0 40px rgba(216,154,43,0.3);
}
.acro-content strong { display: block; font-size: 16px; font-weight: 700; color: var(--cream); margin-bottom: 6px; }
.acro-content p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.acro-tagline {
  text-align: center; font-size: 14px; font-weight: 600;
  color: rgba(248,248,246,0.4); letter-spacing: 0.08em; text-transform: uppercase;
  border-top: 1px solid rgba(216,154,43,0.12); padding-top: 28px;
}

/* ══════════════════════════════════════════
   V2 — FIT UPDATES (P3)
══════════════════════════════════════════ */
.fit { background: var(--dark); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fit-col {
  background: rgba(248,248,246,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 48px;
}
.fit-good { border-color: rgba(216,154,43,0.2); }
.fit-bad { border-color: rgba(224,82,82,0.15); }
.fit-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.fit-header-icon {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.fit-icon-good { background: rgba(216,154,43,0.15); color: var(--gold); }
.fit-icon-bad { background: rgba(224,82,82,0.15); color: var(--red); }
.fit-header-label { font-size: 15px; font-weight: 700; color: var(--cream); }
.fit-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.fit-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--muted); }
.fit-check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.fit-cross { color: var(--red); font-weight: 700; flex-shrink: 0; }
.fit-cta { display: inline-flex; margin-top: 8px; }
.fit-note {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 16px; border-radius: var(--radius-sm);
  background: rgba(216,154,43,0.05); border: 1px solid var(--border-gold);
  font-size: 13px; color: var(--muted); line-height: 1.6; margin-top: 8px;
}
/* ── FIT STATS BAR ── */
.fit-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.fit-stat-item {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.fit-stat-sep {
  color: rgba(216,154,43,0.4);
  font-size: 14px;
}

/* ── FIT MANIFESTE ── */
.fit-manifeste {
  margin-top: 48px;
  text-align: center;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  padding: 36px 48px;
  border-radius: var(--radius);
  background: rgba(216,154,43,0.04);
  border: 1px solid rgba(216,154,43,0.15);
  position: relative;
}
.fit-manifeste::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 48px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.fit-manifeste-line1 {
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 16px;
}
.fit-manifeste-line2 {
  font-size: 24px;
  line-height: 1.5;
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  margin: 0;
}
.fit-manifeste-line2 em {
  font-style: normal;
  color: var(--gold);
}
.fit-manifeste-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.7;
}
.fit-manifeste-cta {
  margin-top: 36px;
  display: inline-flex;
}

/* ══════════════════════════════════════════
   V2 — URGENCE CALCUL (P7)
══════════════════════════════════════════ */
.urgence { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.urgence-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.urgence-inner h2 { margin-bottom: 24px; font-size: clamp(26px, 4vw, 44px); }
.urgence-text { font-size: 17px; color: var(--muted); margin-bottom: 52px; line-height: 1.8; }
.urgence-calcul {
  display: flex; align-items: center; gap: 16px; justify-content: center;
  margin-bottom: 48px; flex-wrap: wrap;
}
.urgence-calc-item {
  background: rgba(248,248,246,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 20px 24px; text-align: center; flex: 1; min-width: 160px;
}
.urgence-calc-item.urgence-calc-result {
  background: var(--gold-glow); border-color: var(--border-gold);
}
.urgence-calc-num {
  display: block; font-size: 18px; font-weight: 700; color: var(--gold); margin-bottom: 4px;
}
.urgence-calc-item span:last-child { font-size: 12px; color: var(--muted); }
.urgence-calc-op { font-size: 28px; font-weight: 300; color: var(--muted); flex-shrink: 0; }

/* ══════════════════════════════════════════
   V2 — FOOTER PREMIUM (P8)
══════════════════════════════════════════ */
.footer { background: var(--dark-2); border-top: 1px solid var(--border); padding: 0 0 40px; }

.footer-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(216,154,43,0.03); flex-wrap: wrap;
}
.footer-trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 20px; font-size: 13px; font-weight: 500; color: var(--muted);
  transition: color 0.2s;
}
.footer-trust-item:hover { color: var(--cream); }
.footer-trust-sep { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; }

/* ── FOOTER BODY ── */
.footer-body { padding: 64px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 240px;
  gap: 48px;
}

/* Brand column */
.footer-logo {
  display: inline-flex; align-items: center; text-decoration: none;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  margin-bottom: 20px;
}
.footer-proof {
  margin-bottom: 20px;
}
.footer-stars {
  color: var(--gold); font-size: 14px; letter-spacing: 2px;
  display: block; margin-bottom: 6px;
}
.footer-proof p {
  font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--muted); text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social:hover { border-color: rgba(216,154,43,0.4); color: var(--gold); }

/* Nav columns */
.footer-col-nav h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted-2);
  margin-bottom: 20px;
}
.footer-col-nav a {
  display: block; font-size: 14px; color: var(--muted);
  text-decoration: none; margin-bottom: 12px; line-height: 1.6;
  transition: color 0.2s;
}
.footer-col-nav a:hover { color: var(--cream); }

/* Contact column */
.footer-col-contact h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted-2);
  margin-bottom: 20px;
}
.footer-phone {
  display: block; font-size: 20px; font-weight: 700;
  color: var(--gold); text-decoration: none;
  margin-bottom: 8px; transition: opacity 0.2s;
}
.footer-phone:hover { opacity: 0.8; }
.footer-email {
  display: block; font-size: 14px; color: var(--muted);
  text-decoration: none; margin-bottom: 16px;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--cream); }
.footer-address {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 13px; color: var(--muted); line-height: 1.6;
  margin-bottom: 24px;
}
.footer-cta-block { margin-bottom: 20px; }
.footer-cta-btn {
  width: 100%; justify-content: center;
  padding: 13px 20px; font-size: 14px;
}
.footer-cta-note {
  font-size: 11px; color: rgba(248,248,246,0.35);
  text-align: center; margin-top: 8px;
  font-style: italic;
}
.footer-human {
  font-size: 12px; color: var(--muted); line-height: 1.7;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.footer-human a { color: var(--gold); text-decoration: none; font-weight: 600; }
.footer-human a:hover { text-decoration: underline; }
.footer-human em { font-style: italic; opacity: 0.75; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 24px; padding-bottom: 24px;
  font-size: 13px; color: var(--muted-2);
}
.footer-bottom-links { display: flex; align-items: center; gap: 8px; }
.footer-bottom-links a { color: var(--muted-2); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--muted); }

/* audit intro */
.audit-intro { font-size: 16px; color: var(--muted); margin-bottom: 20px !important; }

/* ══════════════════════════════════════════
   RESPONSIVE — RÉÉCRITURE COMPLÈTE
══════════════════════════════════════════ */

/* ── TABLETTE 1024px ── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; padding: 100px 32px 60px; }
  .hero-img-card { right: -8px; }
  .hero-kpis { flex-wrap: wrap; }
  .hero-kpi { min-width: 180px; }

  .probleme-cards { grid-template-columns: repeat(2, 1fr); }
  .comparatif-table { grid-template-columns: 140px 1fr 1fr; }
  .comparatif-cell { padding: 12px 14px; font-size: 12px; }

  .resultats-mega { grid-template-columns: 1fr 1fr; }
  .mega-card-primary { grid-column: span 2; }
  .mega-card-col, .mega-card-valorisable { grid-column: span 1; }
  .resultats-row { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: 1fr; gap: 32px; }
  .step-arrow { display: none; }
  .system-grid { grid-template-columns: repeat(2, 1fr); }
  .home-acrostic-inner { grid-template-columns: repeat(2, 1fr); }
  .acro-item:nth-child(2) { border-right: none; }
  .acro-item:nth-child(3) { border-top: 1px solid var(--border); }

  .equipe-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-col-brand { grid-column: span 2; }
  .footer-col-contact { grid-column: span 2; }
  .footer-trust { gap: 0; }
  .footer-trust-sep { display: none; }
  .footer-trust-item { flex: 1; justify-content: center; }
}

/* ── MOBILE 768px ── */
@media (max-width: 768px) {

  /* BASE */
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .hide-mobile { display: none; }
  .section-header h2 { font-size: clamp(24px, 6vw, 34px); }

  /* NAV */
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; margin-left: auto; }
  .nav-mobile.open { display: flex; }
  .side-nav { display: none; }

  /* ── HERO ── */
  .hero { min-height: unset; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 16px 20px 48px;
    gap: 28px;
  }
  .hero-right { order: -1; }
  /* min-width: 0 empêche les enfants de grid de dépasser 1fr */
  .hero-left, .hero-right { min-width: 0; width: 100%; }
  .hero-left { grid-row: auto; justify-content: flex-start; }
  /* Image contenue dans une box fixe */
  .hero-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 14px;
  }
  .hero-img-glow { display: none; }
  .hero-img-badge, .hero-img-card { display: none; }
  .hero-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 14px;
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
  /* Texte hero */
  .hero-badge {
    font-size: 11px; padding: 5px 12px; margin-bottom: 14px;
    max-width: 100%; overflow: hidden;
    white-space: nowrap; text-overflow: ellipsis;
  }
  .hero-badge--grid { display: inline-flex; order: -2; margin-bottom: 0; }
  .hero-badge--inline { display: none; }
  .hero-title { font-size: clamp(24px, 6.5vw, 34px); margin-bottom: 12px; }
  .hero-sub { font-size: 14px; line-height: 1.65; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .hero-cta-block { width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; text-align: center; font-size: 14px; white-space: normal; line-height: 1.4; padding: 14px 20px; }
  .probleme-bottom-cta .btn, .fit-manifeste-cta, .footer-cta-btn { white-space: normal; line-height: 1.4; }
  .btn { white-space: normal; }
  .hero-cta-sub { font-size: 11px; }
  .hero-signature { font-size: 13px; }
  .hero-reassurance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
    grid-column: 1; /* mobile : pleine largeur, en bas */
    order: 3;
  }
  .hero-reassurance-item--xl {
    grid-column: span 2;
  }
  .hero-reassurance-item {
    background: rgba(248,248,246,0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 14px;
    gap: 10px;
  }
  .hero-reassurance-icon { font-size: 20px; flex-shrink: 0; }
  .hero-reassurance-content strong { font-size: 13px; line-height: 1.3; display: block; margin-bottom: 0; font-weight: 400; }
  .hero-reassurance-content .reass-sub,
  .hero-reassurance-content span,
  .hero-reassurance-content em { display: none; }
  .hero-kpis { display: none; }
  .hero-scroll { display: none; }

  /* ── TICKER ── */
  .ticker-wrap { flex-direction: column; gap: 8px; padding: 16px 20px; }
  .ticker-label { border-right: none; padding-right: 0; }

  /* ── PROBLÈME ── */
  .probleme-cards { grid-template-columns: 1fr; }
  .probleme-card { padding: 24px 20px; }
  .probleme-cta-card { padding: 24px 20px; }
  .probleme-bottom-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .probleme-bottom-cta .btn { width: 100%; justify-content: center; text-align: center; }
  .probleme-bottom-cta-sub { font-size: 12px; text-align: center; }

  /* ── COMPARATIF ── */
  .comparatif .section-header { margin-bottom: 32px; }

  /* Wrapper scrollable */
  .comparatif-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .comparatif-table { min-width: 320px; }
  .comparatif-row { grid-template-columns: 76px 1fr 1fr; }
  .comparatif-cell-label { font-size: 10px; padding: 10px 6px; }
  .comparatif-cell { font-size: 11px; padding: 10px 10px; white-space: normal; }
  .comparatif-row-header .comparatif-cell { font-size: 11px; padding: 12px 10px; }


  .comparatif-banner { flex-direction: column; gap: 12px; text-align: center; padding: 24px 20px; }
  .comparatif-banner-sep { display: none; }

  /* ── FIT ── */
  .fit-grid { grid-template-columns: 1fr; gap: 16px; }
  .fit-manifeste { padding: 24px 20px; margin-top: 32px; }
  .fit-manifeste-line1 { font-size: 16px; margin-bottom: 10px; }
  .fit-manifeste-line2 { font-size: 18px; }
  .fit-manifeste-label { margin-bottom: 16px; }
  .fit-manifeste-cta { width: 100%; justify-content: center; text-align: center; margin-top: 20px; }

  /* ── CAS CLIENTS ── */
  .cs-header-identity { flex-direction: column; gap: 16px; }
  .cs-kpis { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cs-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cs-table { min-width: 520px; }
  .cs-timeline-entry { flex-direction: column; gap: 10px; }
  .cs-timeline-label { min-width: unset; }
  .cs-footer-text { font-size: 15px; }

  /* ── RÉSULTATS ── */
  .resultats-mega { grid-template-columns: 1fr; }
  .mega-card-primary, .mega-card-col, .mega-card-valorisable { grid-column: span 1; }
  .resultats-row { grid-template-columns: 1fr 1fr; }
  .ebitda-statement { flex-direction: column; gap: 14px; padding: 20px 0; }
  .ebitda-line { width: 100%; height: 1px; }

  /* ── MÉTHODE ── */
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .step-arrow { display: none; }
  .system-grid { grid-template-columns: 1fr; }
  .steps-wrapper { padding: 28px 20px; }

  /* Steps 6 étapes — scroll horizontal sur mobile */
  .experience-journey { padding-bottom: 12px; gap: 10px; }
  .experience-step { min-width: 220px; flex: 0 0 220px; }
  .home-acrostic-inner { grid-template-columns: 1fr; }
  .acro-item { border-right: none !important; border-bottom: 1px solid var(--border); padding: 20px 0; }
  .acro-item:last-child { border-bottom: none; }

  /* ── ENTREPÔT ── */
  .entrepot-inner { grid-template-columns: 1fr; gap: 40px; }
  .entrepot-photo-wrap { height: 300px; margin: 0 0 20px; }
  .entrepot-reassurance { grid-template-columns: 1fr 1fr; }
  .entrepot-reass-item--wide { grid-column: span 2; }
  .entrepot-signature p { font-size: 16px; }
  .entrepot-badges-bar { display: none; }

  /* ── ÉQUIPE ── */
  .equipe-grid { grid-template-columns: 1fr 1fr; }
  .team-ann-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; }
  .team-ann-card { padding: 10px 12px; }
  .team-ann-name { font-size: 11px; }
  .team-ann-role { font-size: 9px; }

  /* ── CALCULETTE ── */
  .calc-card { padding: 28px 20px; }
  .calc-slider-labels { display: none; }
  .calc-email-wrap { flex-direction: column; gap: 10px; }
  .calc-email-btn { width: 100%; text-align: center; }
  .urgence-calcul { flex-direction: column; }
  .urgence-calc-op { display: none; }

  /* ── FAQ ── */
  .faq-item { padding: 20px 0; }

  /* ── FOOTER ── */
  .footer-trust { flex-direction: column; padding: 16px 20px; gap: 2px; }
  .footer-trust-sep { display: none; }
  .footer-trust-item { padding: 6px 0; font-size: 12px; }
  .footer-body { padding: 40px 0 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col-brand, .footer-col-contact { grid-column: span 1; }
  .footer-cta-btn { width: 100%; justify-content: center; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── PETIT MOBILE 480px ── */
@media (max-width: 480px) {
  .hero-img-wrapper { height: 200px; }
  .hero-title { font-size: clamp(22px, 7vw, 30px); }

  .cs-kpis { grid-template-columns: 1fr; }
  .resultats-row { grid-template-columns: 1fr; }
  .entrepot-reassurance { grid-template-columns: 1fr; }
  .entrepot-reass-item--wide { grid-column: span 1; }
  .entrepot-photo-wrap { height: 220px; }
  .entrepot-partners-two { grid-template-columns: 1fr; gap: 14px; }
  .partners-card-img { height: 200px; }

  .comparatif-cell { font-size: 10px; padding: 8px 8px; }
  .equipe-grid { grid-template-columns: 1fr 1fr; }

  .footer-trust { display: none; } /* trop verbeux sur 375px */
}

/* ══ SIDE NAV ══ */
.side-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.side-nav-item {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(248,248,246,0.2);
  border-radius: 2px;
  transition: width 0.25s ease, background 0.25s ease;
  text-decoration: none;
}

.side-nav-item::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
  background: rgba(8,17,31,0.85);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  backdrop-filter: blur(8px);
}

.side-nav-item:hover::after,
.side-nav-item.active::after {
  opacity: 1;
}

.side-nav-item:hover {
  width: 32px;
  background: rgba(248,248,246,0.5);
}

.side-nav-item.active {
  width: 36px;
  background: var(--gold);
}

@media (max-width: 1100px) {
  .side-nav { display: none; }
}
@media (max-width: 768px) {
  .side-nav {
    display: flex;
    right: 10px;
    gap: 7px;
  }
  .side-nav-item {
    width: 16px;
    height: 2px;
  }
  .side-nav-item:hover { width: 20px; }
  .side-nav-item.active { width: 22px; }
  .side-nav-item::after { display: none; }
}

/* ══ EXIT INTENT ══ */
.ei-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(8,17,31,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.ei-overlay.ei-visible {
  opacity: 1; pointer-events: auto;
}
.ei-modal {
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(216,154,43,0.22);
  border-radius: 20px;
  max-width: 540px; width: 100%;
  padding: 48px 48px 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(216,154,43,0.06);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
}
.ei-overlay.ei-visible .ei-modal {
  transform: translateY(0) scale(1);
}
.ei-close {
  position: absolute; top: 18px; right: 18px;
  background: rgba(248,248,246,0.06); border: 1px solid var(--border);
  border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.ei-close:hover { background: rgba(248,248,246,0.1); color: var(--cream); }

.ei-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(216,154,43,0.1);
  border: 1px solid rgba(216,154,43,0.2);
  border-radius: 20px; padding: 5px 14px;
  margin-bottom: 20px;
}
.ei-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700; line-height: 1.25;
  color: var(--cream);
  margin-bottom: 12px;
}
.ei-sub {
  font-size: 14px; color: var(--muted); line-height: 1.6;
  margin-bottom: 28px;
}

.ei-fields {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 20px;
}
.ei-field {
  display: flex; flex-direction: column; gap: 6px;
}
.ei-field label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
}
.ei-field input,
.ei-field select {
  background: rgba(248,248,246,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px; color: var(--cream);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.ei-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}
.ei-field select option { background: #0d1f35; color: var(--cream); }
.ei-field input::placeholder { color: rgba(248,248,246,0.25); }
.ei-field input:focus,
.ei-field select:focus { border-color: rgba(216,154,43,0.5); }

.ei-submit {
  width: 100%; justify-content: center;
  font-size: 16px; padding: 16px 24px;
}
.ei-legal {
  text-align: center; margin-top: 12px;
  font-size: 12px; color: rgba(248,248,246,0.3);
}

.ei-success {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 24px 0 8px; text-align: center;
}
.ei-success p {
  font-size: 16px; color: var(--cream); font-weight: 500;
}

/* Desktop only */
@media (max-width: 768px) {
  .ei-overlay { display: none !important; }
}
@media (max-width: 540px) {
  .ei-fields { grid-template-columns: 1fr; }
  .ei-modal { padding: 32px 24px; }
}

/* ══ AUDIT FORM ÉTAPE 1 ══ */
.audit-form { display: flex; flex-direction: column; gap: 0; }

.audit-form-fields {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 24px;
}
.audit-form-field {
  display: flex; flex-direction: column; gap: 6px;
}
.audit-form-field label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--muted);
}
.audit-form-field input,
.audit-form-field .audit-select-wrap select {
  background: rgba(248,248,246,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px; color: var(--cream);
  font-family: inherit; outline: none;
  transition: border-color 0.2s;
  width: 100%; box-sizing: border-box;
}
.audit-form-field input::placeholder { color: rgba(248,248,246,0.25); }
.audit-form-field input:focus,
.audit-form-field .audit-select-wrap select:focus { border-color: rgba(216,154,43,0.5); }

.audit-select-wrap {
  position: relative;
}
.audit-select-wrap select {
  -webkit-appearance: none; appearance: none;
  padding-right: 36px; cursor: pointer;
}
.audit-select-wrap select option { background: #0d1f35; color: var(--cream); }
.audit-select-arrow {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%); pointer-events: none;
}

.audit-submit {
  width: 100%; justify-content: center;
  font-size: 15px;
}
.audit-legal {
  text-align: center; margin-top: 10px;
  font-size: 11px; color: rgba(248,248,246,0.28);
}

/* Bloc "Pourquoi gratuit" */
.audit-why {
  display: flex; align-items: flex-start; gap: 20px;
  max-width: 680px; margin: 52px auto 0;
  padding: 28px 36px;
  border-radius: var(--radius);
  background: rgba(216,154,43,0.04);
  border: 1px solid rgba(216,154,43,0.15);
}
.audit-why-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(216,154,43,0.1); border: 1px solid rgba(216,154,43,0.2);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.audit-why-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
}
.audit-why-content p {
  font-size: 14px; line-height: 1.75; color: var(--muted); margin: 0;
}
.audit-why-content strong { color: var(--cream); font-weight: 600; }

/* ══ AUDIT VISUAL — DELIVERABLE + PROOFS ══ */
.audit-visual {
  display: flex; flex-direction: column; gap: 20px;
}

.audit-deliverable {
  background: rgba(248,248,246,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
}
.audit-deliverable-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.audit-deliverable-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.audit-deliverable-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--cream); font-weight: 500;
}
.audit-deliverable-list li svg { flex-shrink: 0; }

.audit-proofs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.audit-proof {
  background: rgba(216,154,43,0.05);
  border: 1px solid rgba(216,154,43,0.15);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
}
.audit-proof-num {
  font-size: 28px; font-weight: 800;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}
.audit-proof-text {
  font-size: 12px; color: var(--cream); line-height: 1.4;
}
.audit-proof-text span {
  display: block; font-size: 11px;
  color: var(--muted); margin-top: 4px;
}

/* ══ AUDIT FORM CARD — flottante surbrillée ══ */
.audit-form-card {
  background: rgba(216,154,43,0.05);
  border: 1px solid rgba(216,154,43,0.3);
  border-radius: 16px;
  padding: 32px;
  margin-top: 28px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(216,154,43,0.08),
    0 8px 40px rgba(0,0,0,0.35),
    0 0 60px rgba(216,154,43,0.06);
}
.audit-form-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(216,154,43,0.2) 0%, transparent 50%, rgba(216,154,43,0.08) 100%);
  pointer-events: none;
  z-index: 0;
}
.audit-form-card > * { position: relative; z-index: 1; }

.audit-proofs-note {
  font-size: 11px;
  color: rgba(248,248,246,0.3);
  margin: 4px 0 0;
  font-style: italic;
}

.audit-sub-h2 {
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--muted);
  margin: -8px 0 20px;
  line-height: 1.5;
}

.audit-why-after {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  padding-top: 12px;
  border-top: 1px solid rgba(216,154,43,0.1);
}
.audit-why-after strong { color: var(--cream); font-weight: 600; }

/* ══ FAQ ══ */
.faq-section { background: var(--dark-2); }

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

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  padding: 22px 4px;
  font-size: 16px; font-weight: 600; color: var(--cream);
  text-align: left; font-family: inherit;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q[aria-expanded="true"] { color: var(--gold); }

.faq-chevron {
  flex-shrink: 0; color: var(--muted);
  transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  padding: 0 4px;
}
.faq-a.open { max-height: 1000px; }
.faq-a p {
  font-size: 15px; color: var(--muted); line-height: 1.8;
  margin: 0 0 12px;
}
.faq-a p:last-child { margin-bottom: 24px; }
.faq-a strong { color: var(--cream); font-weight: 600; }
.faq-a ul {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-a ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--muted); line-height: 1.6;
}
.faq-a ul li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); margin-top: 8px;
}

/* Étapes onboarding dans FAQ */
.faq-steps {
  display: flex; flex-direction: column; gap: 12px;
  margin: 16px 0 20px;
}
.faq-step {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px; color: var(--muted); line-height: 1.6;
}
.faq-step-num {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(216,154,43,0.1);
  border: 1px solid rgba(216,154,43,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--gold);
  margin-top: 1px;
}
.faq-step strong { color: var(--cream); }

/* ══════════════════════════════════════════
   ÉTUDE DE CAS — FLORNA
══════════════════════════════════════════ */
.cs-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cs-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(216,154,43,0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Header */
.cs-header { text-align: center; margin-bottom: 72px; }
.cs-header .section-tag { margin-bottom: 16px; }
.cs-header h2 { margin-bottom: 16px; }

/* ── HERO : profil + KPIs ── */
/* ── HERO V2 (condensed) ── */
.cs-hero-v2 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
  background: rgba(248,248,246,0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 48px;
}
.cs-hero-v2-left { display: flex; flex-direction: column; gap: 28px; }
.cs-hero-v2-name {
  display: flex; flex-direction: column; gap: 6px;
}
.cs-hero-v2-name strong {
  font-size: 22px; font-weight: 700; color: var(--cream);
}
/* ── CITATION D'OUVERTURE ── */
.cs-opening-quote {
  text-align: center;
  max-width: 700px; margin: 0 auto 64px;
  padding: 0 24px;
}
.cs-opening-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 64px; line-height: 0.5;
  color: var(--gold); opacity: 0.4;
  margin-bottom: 20px;
}
.cs-opening-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700; font-style: italic;
  color: var(--cream); line-height: 1.5;
  margin: 0 0 24px;
}
.cs-opening-quote-author {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}

/* ── CS HEADER CLIENT ── */
.cs-header-client {
  display: flex; align-items: center; gap: 20px; margin-top: 24px;
  padding: 16px 24px;
  background: rgba(248,248,246,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: fit-content;
}
.cs-header-identity {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: 24px;
}
.cs-header-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 16px;
  color: var(--muted); line-height: 1.7; margin: 0;
  max-width: 680px; text-align: center;
}
.cs-header-logo {
  height: 28px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.cs-header-client-name {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  border-left: 1px solid var(--border); padding-left: 20px;
}
.cs-header-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 1.5px solid rgba(216,154,43,0.35);
  flex-shrink: 0;
}

.section-header--sub { margin-top: 72px; }
.methode-sub-h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700; color: var(--cream);
  line-height: 1.25; margin-bottom: 12px;
}
.methode-sub-h3 em { color: var(--gold); font-style: normal; }

.cs-hero-v2-logo {
  height: 36px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 6px;
}
.cs-hero-v2-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
}
.cs-hero-v2-desc {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  margin: 4px 0 0; max-width: 480px;
  font-style: italic;
}
.cs-hero-v2-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.cs-hero-v2-stat {
  background: rgba(248,248,246,0.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px;
}
.cs-hero-v2-stat--gold {
  background: rgba(216,154,43,0.08); border-color: rgba(216,154,43,0.3);
}
.cs-hero-v2-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--cream); line-height: 1;
  margin-bottom: 6px;
}
.cs-hero-v2-stat--gold .cs-hero-v2-num { color: var(--gold); }
.cs-hero-v2-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.cs-hero-v2-photo {
  flex-shrink: 0; width: 160px;
}
.cs-hero-v2-photo img {
  width: 160px; height: 160px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 3px solid rgba(216,154,43,0.35);
  display: block;
}

.cs-hero {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 80px;
  background: rgba(248,248,246,0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.cs-profile {
  display: flex; flex-direction: column; gap: 20px;
}
.cs-profile-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(216,154,43,0.3), rgba(216,154,43,0.1));
  border: 2px solid rgba(216,154,43,0.4);
  display: flex; align-items: center; justify-content: center;
}
.cs-profile-initials {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--gold);
}
.cs-profile-info { display: flex; flex-direction: column; gap: 4px; }
.cs-profile-name {
  font-size: 18px; font-weight: 700; color: var(--cream);
}
.cs-profile-badge {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
}
.cs-profile-desc p {
  font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0 0 8px;
}

/* KPIs */
.cs-kpis {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cs-kpi {
  background: rgba(248,248,246,0.03);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 22px 20px;
  transition: border-color 0.2s;
}
.cs-kpi:hover { border-color: rgba(216,154,43,0.3); }
.cs-kpi--highlight {
  grid-column: span 2;
  background: rgba(216,154,43,0.06);
  border-color: rgba(216,154,43,0.35);
  display: flex; flex-direction: column; gap: 4px;
  position: relative; overflow: hidden;
}
.cs-kpi--highlight::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cs-kpi-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.cs-kpi--highlight .cs-kpi-num { font-size: 40px; }
.cs-kpi-label {
  font-size: 13px; font-weight: 600; color: var(--cream); margin-top: 6px;
}
.cs-kpi-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── BLOC TITRE ── */
.cs-block-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700; color: var(--cream);
  margin-bottom: 28px;
}

/* ── POURQUOI ── */
.cs-why { margin-bottom: 80px; }
.cs-why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.cs-why-card {
  background: rgba(248,248,246,0.03);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.cs-why-card:hover {
  border-color: rgba(216,154,43,0.3);
  transform: translateY(-3px);
}
.cs-why-icon { font-size: 28px; margin-bottom: 14px; }
.cs-why-name {
  font-size: 15px; font-weight: 700; color: var(--cream); margin-bottom: 10px;
}
.cs-why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── TABLEAU COMPARATIF ── */
.cs-table-wrap { margin-bottom: 72px; }
.cs-table {
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.cs-table-header {
  display: grid; grid-template-columns: 2fr 1.1fr 1.9fr;
  background: rgba(248,248,246,0.04);
  border-bottom: 1px solid var(--border);
}
.cs-th {
  padding: 16px 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.cs-th-label {
  display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700;
}
.cs-th-label--before {
  background: rgba(248,248,246,0.06); color: var(--muted);
}
.cs-th-label--after {
  background: rgba(216,154,43,0.15); color: var(--gold);
  border: 1px solid rgba(216,154,43,0.3);
}
.cs-tr {
  display: grid; grid-template-columns: 2fr 1.1fr 1.9fr;
  border-bottom: 1px solid rgba(248,248,246,0.05);
  transition: background 0.15s;
}
.cs-tr:last-child { border-bottom: none; }
.cs-tr:hover { background: rgba(248,248,246,0.02); }
.cs-td {
  padding: 16px 20px;
  font-size: 14px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.cs-td-criteria { font-weight: 500; color: var(--cream); }
.cs-td-before { color: rgba(248,248,246,0.4); }
.cs-td-bad { color: #e07070; }
.cs-td-after { background: rgba(216,154,43,0.04); }
.cs-td-win { color: var(--cream); font-weight: 600; }
.cs-td-big {
  color: var(--gold) !important;
  font-size: 16px; font-weight: 800;
  font-family: 'Playfair Display', serif;
}
.cs-td-criteria {
  flex-direction: column; align-items: flex-start; gap: 4px;
}
.cs-td-sub {
  display: block; font-size: 11px; color: var(--muted);
  font-weight: 400; line-height: 1.4; opacity: 0.7;
}
/* Ligne économie finale en highlight */
.cs-tr--highlight {
  background: rgba(216,154,43,0.04);
  border-top: 1px solid rgba(216,154,43,0.2) !important;
}
.cs-tr--highlight .cs-td-criteria { color: var(--gold); font-weight: 700; }
/* Bulle flottante au-dessus d'une ligne */
.cs-tr--tooltip-anchor {
  position: relative;
}
.cs-tooltip-bubble {
  position: absolute;
  top: -38px; left: 20px;
  background: rgba(216,154,43,0.12);
  border: 1px solid rgba(216,154,43,0.35);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 12px; font-weight: 500; color: var(--cream);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}
.cs-tooltip-bubble::after {
  content: '';
  position: absolute; bottom: -6px; left: 20px;
  width: 10px; height: 6px;
  background: rgba(216,154,43,0.12);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border-left: 1px solid rgba(216,154,43,0.35);
  border-right: 1px solid rgba(216,154,43,0.35);
}
/* Bulle inline sous une valeur */
.cs-inline-bubble {
  display: inline-flex; align-items: flex-start; gap: 7px;
  background: rgba(216,154,43,0.1);
  border: 1px solid rgba(216,154,43,0.3);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px; font-weight: 500; color: var(--muted);
  line-height: 1.5; white-space: normal;
  max-width: 260px;
}
.cs-inline-bubble::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 7px; height: 7px; margin-top: 4px; align-self: flex-start;
  border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='6' fill='white'/%3E%3Cpath d='M7 4v3.5M7 9.5v.5' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='6' fill='white'/%3E%3Cpath d='M7 4v3.5M7 9.5v.5' stroke='%23000' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.cs-inline-bubble svg { display: none; }

/* ── EBITDA BLOC ── */
.cs-ebitda {
  background: linear-gradient(135deg, rgba(216,154,43,0.1) 0%, rgba(216,154,43,0.04) 60%, transparent 100%);
  border: 1px solid rgba(216,154,43,0.3);
  border-radius: 20px; padding: 48px;
  margin-bottom: 72px; position: relative; overflow: hidden;
}
.cs-ebitda::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cs-ebitda::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(216,154,43,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cs-ebitda-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px;
  align-items: center; position: relative; z-index: 1;
}
.cs-ebitda-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.cs-ebitda-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px); font-weight: 700;
  color: var(--cream); line-height: 1.2; margin: 0;
}
.cs-ebitda-right p {
  font-size: 15px; color: var(--muted); line-height: 1.8; margin: 0 0 12px;
}
.cs-ebitda-right strong { color: var(--cream); font-weight: 600; }

/* ── EBITDA COMPACT ── */
.cs-ebitda--compact .cs-ebitda-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center;
}

/* ── MIGRATION INLINE ── */
.cs-migration-inline {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  background: rgba(248,248,246,0.03); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 32px;
  margin-bottom: 64px;
}
.cs-migration-dot { color: var(--border); font-size: 18px; line-height: 1; }

/* ── TÉMOIGNAGE ── */
.cs-testimonial { margin-bottom: 64px; }
.cs-testimonial-inner {
  background: rgba(248,248,246,0.03);
  border: 1px solid rgba(216,154,43,0.2);
  border-radius: 20px; padding: 52px 60px;
  text-align: center; position: relative;
}
.cs-testimonial-inner::before {
  content: '';
  position: absolute; inset: 0; border-radius: 20px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(216,154,43,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.cs-testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 80px; line-height: 0.6;
  color: var(--gold); opacity: 0.3;
  margin-bottom: 24px;
}
.cs-testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.5vw, 26px); font-weight: 700;
  font-style: italic; color: var(--cream); line-height: 1.5;
  margin: 0 0 32px;
}
.cs-testimonial-author {
  display: inline-flex; align-items: center; gap: 14px;
}
.cs-testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(216,154,43,0.15);
  border: 2px solid rgba(216,154,43,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 18px;
  font-weight: 700; color: var(--gold);
}
.cs-testimonial-photo {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 2px solid rgba(216,154,43,0.4);
  flex-shrink: 0;
}
.cs-testimonial-author strong {
  display: block; font-size: 15px; color: var(--cream);
}
.cs-testimonial-author span {
  display: block; font-size: 13px; color: var(--muted); margin-top: 2px;
}

/* ── FOOTER SECTION ── */
.cs-footer-text {
  text-align: center; padding-top: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.cs-footer-text p {
  font-size: 17px; color: var(--muted); margin: 0;
  font-family: 'Playfair Display', serif; font-style: italic;
}
.cs-footer-text strong { color: var(--cream); font-style: normal; }
.cs-footer-text .btn { margin-top: 24px; }

/* Responsive CS */
@media (max-width: 900px) {
  .cs-hero-v2 { grid-template-columns: 1fr; }
  .cs-hero-v2-photo { display: none; }
  .cs-hero-v2-stats { grid-template-columns: repeat(2, 1fr); }
  .cs-hero { grid-template-columns: 1fr; }
  .cs-ebitda-inner { grid-template-columns: 1fr; gap: 28px; }
  .cs-ebitda--compact .cs-ebitda-inner { flex-direction: column; gap: 16px; }
}
@media (max-width: 600px) {
  .cs-hero-v2 { padding: 28px 24px; }
  .cs-hero-v2-stats { grid-template-columns: 1fr 1fr; }
  .cs-migration-inline { flex-direction: column; gap: 8px; text-align: center; }
  .cs-migration-dot { display: none; }
  .cs-testimonial-inner { padding: 32px 24px; }
  .cs-table-header, .cs-tr { grid-template-columns: 1.2fr 0.8fr 1.4fr; }
  .cs-ebitda { padding: 20px 16px; margin-bottom: 40px; }
  .cs-ebitda-tag { font-size: 9px; margin-bottom: 8px; }
  .cs-ebitda-title { font-size: 15px; line-height: 1.3; }
  .cs-ebitda-right p { font-size: 12px; line-height: 1.6; margin-bottom: 8px; }
  .cs-ebitda-inner { gap: 14px; }
  .cs-ebitda--compact .cs-ebitda-inner { gap: 12px; }
}

/* ══════════════════════════════════════════
   ÉQUIPE DIRECTION
══════════════════════════════════════════ */
.team-section { background: var(--dark-2); }

.team-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }

/* Photo équipe */
/* Photo annotée — conteneur principal */
.team-photo-annotated {
  position: relative;
  border-radius: 20px; overflow: hidden;
  margin-bottom: 48px;
  aspect-ratio: 16 / 9;
  max-height: 560px;
}
.team-photo-annotated .team-photo {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  display: block;
}
.team-photo-annotated .team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(8,17,31,0.90) 0%,
    rgba(8,17,31,0.55) 28%,
    transparent 60%
  );
}

/* Rangée des 4 annotations en bas */
.team-ann-row {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  align-items: flex-end;
}

/* Carte individuelle */
.team-ann-card {
  flex: 1 1 0;
  background: rgba(8,17,31,0.60);
  border: 1px solid rgba(216,154,43,0.30);
  border-radius: 12px;
  padding: 14px 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 0;
}
.team-ann-name {
  font-size: 14px; font-weight: 700; color: var(--cream);
  margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.team-ann-role {
  font-size: 10px; font-weight: 600; letter-spacing: 0.02em;
  text-transform: none; color: var(--gold);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .team-photo-annotated { aspect-ratio: 4/3; }
  .team-ann-row { gap: 8px; padding: 14px 16px; }
  .team-ann-card { padding: 10px 12px; }
  .team-ann-name { font-size: 12px; }
  .team-ann-role { font-size: 9px; }
}
@media (max-width: 600px) {
  .team-photo-annotated { aspect-ratio: 4/3; max-height: unset; }
  .team-ann-row {
    display: grid;
    grid-template-columns: 42% 42%;
    justify-content: space-between;
    align-items: end;
    gap: 6px 0;
    padding: 10px 10px;
  }
  .team-ann-card { padding: 8px 10px; }
  .team-ann-name { font-size: 10px; white-space: normal; margin-bottom: 2px; }
  .team-ann-role { font-size: 7.5px; letter-spacing: 0.06em; }
}

/* ══════════════════════════════════════════
   BANDE CLIENTS DÉFILANTE
══════════════════════════════════════════ */
.clients-strip-wrap {
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
  margin-top: 64px;
}
.clients-strip-title {
  text-align: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 32px;
}
.clients-strip {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.clients-strip-inner {
  display: flex; align-items: center; gap: 64px;
  width: max-content;
  animation: clientsScroll 18s linear infinite;
}
.clients-strip:hover .clients-strip-inner { animation-play-state: paused; }
@keyframes clientsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo-item {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.client-logo-item span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--muted); text-transform: uppercase;
}
.client-logo-item em {
  font-size: 11px; font-style: italic; color: var(--muted);
  opacity: 0.6; max-width: 180px; text-align: center;
  line-height: 1.4; display: block;
}
.client-logo-item img {
  height: 64px; width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s;
  border-radius: 6px;
}
.client-logo-item:hover img { opacity: 1; }

/* ── CTA INTERMÉDIAIRE ── */
.mid-cta {
  text-align: center; padding: 48px 0 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.mid-cta-sub {
  font-size: 13px; color: var(--muted); margin: 0;
}
