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

:root {
  --bg: #060B12;
  --bg2: #0A1120;
  --surface: #0D1624;
  --surface2: #111D2E;
  --border: #1A2C40;
  --border2: #243650;
  --emerald: #0FBC86;
  --emerald-dim: rgba(15,188,134,0.12);
  --emerald-glow: rgba(15,188,134,0.25);
  --orange: #F97316;
  --orange-dim: rgba(249,115,22,0.12);
  --red: #EF4444;
  --red-dim: rgba(239,68,68,0.1);
  --text: #EFF6FF;
  --text2: #CBD5E1;
  --muted: #7A8FA6;
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── UTILITIES ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }

.em { color: var(--emerald); }
.or { color: var(--orange); }

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6,11,18,0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 26px; display: block; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text2);
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--emerald); color: var(--emerald); }

.btn-nav {
  background: var(--emerald);
  color: #060B12;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.btn-nav:hover { background: #0ed696; box-shadow: 0 0 20px var(--emerald-glow); }

/* ─── HERO ─── */
#hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 80px 2rem;
  position: relative;
  overflow: hidden;
}

/* mesh gradient bg */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, rgba(15,188,134,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 85%, rgba(249,115,22,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 5% 70%, rgba(15,188,134,0.05) 0%, transparent 50%);
  pointer-events: none;
}

#hero .hero-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('pexels-timmossholder-34424818.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.12;
  filter: grayscale(100%);
  pointer-events: none;
  z-index: 0;
}

/* field lines decoration */
#hero::after {
  content: '';
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  height: 800px;
  border: 1px solid rgba(15,188,134,0.05);
  border-radius: 50%;
  box-shadow: inset 0 0 0 80px transparent, 0 0 0 80px rgba(15,188,134,0.02);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-content { position: relative; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-dim);
  border: 1px solid rgba(15,188,134,0.2);
  color: var(--emerald);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--emerald);
}

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

h1 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 18px;
  color: var(--text2);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-cta {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta:hover {
  background: #fb8a38;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,0.35);
}

.btn-link {
  color: var(--muted);
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  font-weight: 500;
}
.btn-link:hover { color: var(--text); }

.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.trust-icon {
  width: 16px;
  height: 16px;
  background: var(--emerald-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-sep { color: var(--border2); }

/* ─── HERO MOCK ─── */
.hero-visual {
  position: relative;
}

.mock-phone {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.6));
}

.phone-frame {
  background: #0A1524;
  border: 1.5px solid var(--border2);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,188,134,0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 10;
}

.phone-notch {
  height: 32px;
  background: #060B12;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-notch-bar {
  width: 80px;
  height: 8px;
  background: #1a2c40;
  border-radius: 4px;
}

.phone-screen {
  padding: 0;
  background: #060B12;
}

/* floating cards */
.mock-float-1 {
  position: absolute;
  top: 20px;
  right: 8px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: float-card 4s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mock-float-1 .float-label { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.mock-float-1 .float-val { font-size: 20px; font-weight: 900; color: var(--emerald); letter-spacing: -0.02em; }
.mock-float-1 .float-sub { color: var(--text2); font-size: 11px; margin-top: 2px; }

.mock-float-2 {
  position: absolute;
  bottom: 60px;
  left: -50px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 11px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: float-card 5s ease-in-out infinite 1s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.float2-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--emerald);
  flex-shrink: 0;
}

.float2-text { color: var(--text2); font-weight: 600; }

/* ─── SIDELINE UI MOCK — reproduction fidèle ─── */
.sideline-shell-header {
  background: #0A1524;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shell-score-block {
  display: flex;
  align-items: center;
  gap: 6px;
}

.shell-team-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.shell-score {
  font-size: 20px;
  font-weight: 900;
  color: var(--text2);
  letter-spacing: -0.02em;
  line-height: 1;
}

.shell-score.em { color: var(--emerald); }
.shell-score-sep { font-size: 14px; color: var(--muted); font-weight: 700; }

.shell-quarter-badge {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald);
}

/* dashboard grid */
.sideline-dashboard {
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sideline-btn {
  background: linear-gradient(135deg, #1a2c40, #0f1e30);
  border-radius: 16px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-bottom: 3px solid rgba(0,0,0,0.3);
  cursor: pointer;
  min-height: 90px;
}

.sideline-btn.col2 { grid-column: span 2; min-height: 80px; }

.sideline-btn.offense {
  background: linear-gradient(135deg, #16a34a, #15803d);
  border-bottom-color: rgba(0,0,0,0.25);
  box-shadow: 0 4px 16px rgba(22,163,74,0.3);
}

.sideline-btn.score {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  border-bottom-color: rgba(0,0,0,0.25);
  box-shadow: 0 4px 16px rgba(234,88,12,0.3);
}

.sideline-btn.flag {
  background: linear-gradient(135deg, #ca8a04, #a16207);
  border-bottom-color: rgba(0,0,0,0.25);
}

.sideline-btn.st {
  background: linear-gradient(135deg, #d97706, #b45309);
  border-bottom-color: rgba(0,0,0,0.25);
}

.sideline-btn-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sideline-btn-label {
  font-size: 12px;
  font-weight: 900;
  color: white;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sideline-btn-sub {
  font-size: 8px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* context bar */
.sideline-context-bar {
  background: rgba(15,25,40,0.8);
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
}

.ctx-down, .ctx-dist { color: var(--text); font-size: 15px; font-weight: 900; }
.ctx-amp, .ctx-sep { color: var(--muted); font-weight: 400; }
.ctx-spot { font-weight: 800; }

/* ─── FIELD LINES SVG — texture terrain commune ─── */
.field-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.field-bg svg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.025;
}

/* ─── SECTION BASE ─── */
section { padding: 140px 2rem 120px; position: relative; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
}

h2 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.section-lead {
  font-size: 18px;
  color: var(--text2);
  max-width: 580px;
  margin-bottom: 5rem;
  line-height: 1.75;
}

/* ─── PROBLÈME ─── */
#probleme {
  background: var(--bg2);
}

#probleme .section-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('pexels-yuraforrat-13345833 (1).webp');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.12;
  filter: grayscale(100%);
  pointer-events: none;
  z-index: 0;
}

#probleme::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(239,68,68,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(239,68,68,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.pain-card {
  background: var(--bg2);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.pain-card:hover { background: #0f1a2a; }

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pain-card:hover::before { opacity: 1; }

.pain-number {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(239,68,68,0.12);
  margin-bottom: 1.25rem;
  font-variant-numeric: tabular-nums;
}

.pain-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.pain-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.pain-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: var(--red-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── SOLUTION ─── */
#solution {
  background: var(--bg);
}

#solution .section-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('pexels-wendywei-4428565 (1).webp');
  background-size: cover;
  background-position: center center;
  opacity: 0.12;
  filter: grayscale(100%);
  pointer-events: none;
  z-index: 0;
}

#solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 100% 50%, rgba(15,188,134,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(15,188,134,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feat-item {
  background: var(--surface);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.25rem;
  cursor: pointer;
  transition: background 0.2s;
  border-left: 3px solid transparent;
}

.feat-item:hover, .feat-item.active {
  background: var(--surface2);
  border-left-color: var(--emerald);
}

.feat-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
  min-width: 24px;
  padding-top: 2px;
}

.feat-item:hover .feat-num,
.feat-item.active .feat-num { color: var(--emerald); }

.feat-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.feat-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* solution visual mockup */
.solution-visual {
  position: sticky;
  top: 100px;
}

.solution-screen {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(15,188,134,0.05),
    0 32px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.screen-bar {
  background: var(--bg2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}

.screen-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.sd-red { background: #EF4444; opacity: 0.7; }
.sd-yellow { background: #EAB308; opacity: 0.7; }
.sd-green { background: var(--emerald); opacity: 0.7; }

.screen-url {
  margin-left: 8px;
  font-size: 11px;
  color: var(--muted);
  background: var(--bg);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.screen-body {
  padding: 20px;
}

/* ─── COACH VIEW MOCK ─── */
.cv-mock {
  background: #06080E;
  border-radius: 16px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  color: #EAF0F8;
}

/* header */
.cv-topbar {
  background: rgba(6,8,14,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 14px 0;
}
.cv-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.cv-eyebrow {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #10B981;
  margin-bottom: 2px;
}
.cv-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.3px;
}
/* toggle switch */
.cv-switch {
  width: 110px;
  height: 26px;
  border-radius: 13px;
  background: rgba(16,185,129,0.2);
  border: 1px solid rgba(16,185,129,0.3);
  position: relative;
  display: flex;
  align-items: center;
}
.cv-thumb {
  position: absolute;
  left: 2px;
  width: 56px;
  height: 20px;
  border-radius: 10px;
  background: rgba(16,185,129,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cv-thumb span {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
}
.cv-switch-lbl {
  position: absolute;
  right: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
/* scope row */
.cv-scope-row {
  display: flex;
  gap: 4px;
  padding: 7px 14px 9px;
  align-items: center;
}
.cv-sc {
  height: 24px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.04);
  color: #4A5E70;
}
.cv-sc.active {
  background: rgba(16,185,129,0.15);
  color: #34D399;
  border-color: rgba(16,185,129,0.28);
}
.cv-funnel {
  margin-left: auto;
  width: 30px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* body */
.cv-body {
  padding: 12px 12px 14px;
}

/* strip grid */
.cv-sgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}
.cv-si {
  padding: 7px 8px;
  border-radius: 10px;
  background: rgba(16,24,38,0.9);
  border: 1px solid rgba(255,255,255,0.07);
}
.cv-si.good {
  background: rgba(16,185,129,0.08);
  border-color: rgba(16,185,129,0.2);
}
.cv-si.warn {
  background: rgba(245,158,11,0.06);
  border-color: rgba(245,158,11,0.18);
}
.cv-sv {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.3px;
  line-height: 1;
}
.cv-sv.good { color: #86EFAC; }
.cv-sv.warn { color: #FCD34D; }
.cv-sv.bad  { color: #F87171; }
.cv-sv.neu  { color: #EAF0F8; }
.cv-sl {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 3px;
  color: #415468;
  line-height: 1.3;
}

/* section divider */
.cv-sec-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 8px;
}
.cv-sec-ln { flex: 1; height: 1px; background: rgba(255,255,255,0.06); }
.cv-sec-lb {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #354A5E;
  white-space: nowrap;
}

/* down card */
.cv-dcard {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,15,24,0.93);
  overflow: hidden;
  margin-bottom: 8px;
}
.cv-dcard-hd {
  padding: 9px 11px 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cv-dnum {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.5px;
}
.cv-dnum.d1 { color: #34D399; }
.cv-dnum.d2 { color: #FDE047; }
.cv-dnum.d3 { color: #FB923C; }
.cv-dlbl {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #415468;
  margin-top: 1px;
}
.cv-dmeta {
  font-size: 8px;
  font-weight: 600;
  color: #415468;
  margin-top: 2px;
}
.cv-dmeta strong { color: #8CA0B4; font-weight: 800; }
.cv-nc {
  font-size: 8px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  background: rgba(255,255,255,0.05);
  color: #4A5E70;
}
.cv-split-row {
  font-size: 8px;
  font-weight: 900;
  margin-top: 4px;
  text-align: right;
}
.cv-split-row .r { color: #F87171; }
.cv-split-row .sep { color: #415468; font-weight: 600; }
.cv-split-row .p { color: #60A5FA; }
.cv-dcard-body { padding: 9px 11px 10px; }
/* split bar */
.cv-sbar-wrap { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 9px; padding: 8px 10px; margin-bottom: 8px; }
.cv-sbar-lbl { font-size: 7px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: #415468; margin-bottom: 6px; }
.cv-sbar { display: flex; height: 7px; border-radius: 4px; overflow: hidden; gap: 2px; }
.cv-sr { background: rgba(239,68,68,0.75); border-radius: 3px; min-width: 3px; }
.cv-sp { background: rgba(59,130,246,0.75); border-radius: 3px; min-width: 3px; }
.cv-spcts { display: flex; justify-content: space-between; margin-top: 3px; }
.cv-spct { font-size: 9px; font-weight: 900; }
/* kpi row */
.cv-krow { display: flex; gap: 6px; }
.cv-kbox {
  flex: 1;
  padding: 7px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.cv-kv {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: 1;
}
.cv-kl {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #415468;
  margin-top: 3px;
  line-height: 1.25;
}

/* ─── POUR QUI ─── */
#pour-qui {
  background: var(--bg2);
}

.pourqui-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.pourqui-sticky {
  position: sticky;
  top: 100px;
}

/* ─── QUOTE SLIDER ─── */
.quote-slider {
  margin-top: 2rem;
  position: relative;
}

.quote-slides {
  overflow: hidden;
  border-radius: 14px;
}

.quote-slide {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--emerald);
  border-radius: 14px;
  padding: 1.5rem;
  font-size: 14px;
  font-style: italic;
  color: var(--text2);
  line-height: 1.8;
  animation: quote-fade 0.35s ease;
}

.quote-slide.active {
  display: block;
}

@keyframes quote-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quote-slide cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.quote-dots {
  display: flex;
  gap: 6px;
  margin-top: 1rem;
  align-items: center;
}

.quote-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border2);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  padding: 10px;
  background-clip: content-box;
}

.quote-dot.active {
  background: var(--emerald);
  width: 18px;
  border-radius: 3px;
  background-clip: content-box;
}

.profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.profile-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(15,188,134,0.04), transparent);
  pointer-events: none;
}

.profile-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.profile-role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--emerald-dim);
  color: var(--emerald);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.profile-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.profile-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.profile-emoji {
  font-size: 28px;
  margin-bottom: 1rem;
  display: block;
}

/* ─── COMMENT ─── */
#comment {
  background: var(--bg);
}

#comment::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(15,188,134,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 1rem;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 56px;
  right: 56px;
  height: 1px;
  background: linear-gradient(90deg, rgba(15,188,134,0.5), rgba(15,188,134,0.2), rgba(15,188,134,0.5));
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem 2rem;
}

.timeline-step:first-child { padding-left: 0; }
.timeline-step:last-child { padding-right: 0; }

.step-bubble {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--emerald);
  margin-bottom: 1.5rem;
  position: relative;
}

.step-bubble::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  border: 1px solid rgba(15,188,134,0.15);
}

.timeline-step h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.timeline-step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.timeline-step .step-detail {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 13px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-detail-icon { color: var(--emerald); }

/* ─── CTA FINAL ─── */
#cta {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(15,188,134,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(249,115,22,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* field lines decoration */
#cta::after {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  border: 1px solid rgba(15,188,134,0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cta-left h2 { margin-bottom: 1rem; }
.cta-left .section-lead { margin-bottom: 2rem; }

.cta-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.cta-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.5;
}

.cta-check {
  width: 20px;
  height: 20px;
  background: var(--emerald-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cta-check svg { width: 10px; height: 10px; }

/* form */
.cta-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}

.form-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full { grid-column: 1 / -1; }

label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input, select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  transition: all 0.2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

input:focus, select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-dim);
}

input::placeholder { color: var(--muted); opacity: 0.6; }
select option { background: var(--surface2); }

.btn-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  letter-spacing: -0.01em;
  transition: all 0.25s;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background: #fb8a38;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(249,115,22,0.3);
}

.form-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.form-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}

.meta-dot {
  width: 6px;
  height: 6px;
  background: var(--emerald);
  border-radius: 50%;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

footer p {
  font-size: 13px;
  color: var(--muted);
}

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

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ─── FOCUS VISIBLE — navigation clavier ─── */
:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── ANIMATIONS ─── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fade-up 0.6s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

.hero-visual {
  animation: fade-up 0.8s ease 0.4s both;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  .mock-float-1 { right: -10px; }
  .mock-float-2 { left: -10px; }
  .solution-layout { grid-template-columns: 1fr; }
  .solution-visual { position: relative; top: 0; }
  .pourqui-layout { grid-template-columns: 1fr; }
  .pourqui-sticky { position: relative; top: 0; }
  .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  section { padding: 80px 1.5rem 72px; }
  .pain-grid { grid-template-columns: 1fr; gap: 1px; }
  .profiles-grid { grid-template-columns: 1fr; }
  .steps-timeline { grid-template-columns: 1fr; gap: 2rem; }
  .steps-timeline::before { display: none; }
  .timeline-step { padding: 0; }
  .form-row { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .stat-editorial { flex-direction: column; gap: 1rem; padding: 1.75rem; }
  .stat-big { font-size: 72px; }
  .pourqui-layout { grid-template-columns: 1fr; }
  .field-bg { display: none; }

  /* Hero mobile */
  #hero { padding: 48px 1.5rem 56px; }
  .badge { font-size: 10px; padding: 4px 12px; white-space: nowrap; }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
  }
  .trust-sep { display: none; }
  .trust-item { font-size: 12px; }

  /* Section lead — réduire l'espace vide sur mobile */
  .section-lead { margin-bottom: 2.5rem; font-size: 16px; }

  /* Footer mobile */
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.5rem;
    gap: 0.75rem;
  }
  .footer-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }
}
