:root {
  --blue: #0e2cb8;
  --blue-deep: #0a1f8c;
  --blue-soft: #eef1ff;
  --ink: #11131a;
  --ink-2: #2a2d38;
  --grey: #5c606e;
  --grey-light: #8a8e9c;
  --line: #e9e8e4;
  --paper: #ffffff;
  --paper-warm: #f7f5f0;
  --paper-warm-2: #f0ede5;
  --ease: cubic-bezier(0.4, 0, 0.1, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }
/* Lenis smooth scroll (Framer-like buttery feel) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: clip;
}
.display { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif; }
::selection { background: var(--blue); color: #fff; }

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

/* ───── NAV (blanche fixe) ───── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo img { height: 30px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-2); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--blue); }
.nav-btn {
  color: var(--blue) !important;
  font-weight: 600 !important; font-size: 14px;
  transition: all 0.3s var(--ease) !important;
}
@media (max-width: 800px) { .nav-links a:not(.nav-btn) { display: none; } nav { padding: 14px 20px; } }

/* ───── HERO ───── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #0a1f8c 0%, #0e2cb8 55%, #1a3dd0 100%);
  color: #fff;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.12), transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 920px; margin: 0 auto; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 20px; border-radius: 100px;
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  opacity: 0; animation: fade 0.8s var(--ease) 0.1s forwards;
}
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: #5effb0; box-shadow: 0 0 10px #5effb0; }
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  opacity: 0; animation: fade 0.8s var(--ease) 0.25s forwards;
}
.hero h1 .hl { color: #b9c8ff; }
/* 100K€ barré : visible mais clairement "filtré" */
.hero h1 .hl-strike {
  color: #8da2e6; font-weight: 700;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.55);
  text-decoration-thickness: 4px;
  opacity: 0.85;
}
/* 1M€ par mois : le vrai point d'évidence */
.hero h1 .hl-strong {
  color: #4d9fff; font-weight: 800;
}
.hero p {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  max-width: 620px; margin: 0 auto 40px;
  line-height: 1.55;
  opacity: 0; animation: fade 0.8s var(--ease) 0.4s forwards;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--blue);
  font-size: 16px; font-weight: 700;
  padding: 19px 38px; border-radius: 100px;
  text-decoration: none;
  opacity: 0; animation: fade 0.8s var(--ease) 0.55s forwards;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.hero-cta svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-note {
  margin-top: 22px; font-size: 14px; color: rgba(255,255,255,0.6);
  opacity: 0; animation: fade 0.8s var(--ease) 0.7s forwards;
}
@keyframes fade { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ───── STATS BAND ───── */
.stats {
  background: var(--ink);
  color: #fff;
  padding: 64px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-num { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.stat-num .plus { color: #6b8aff; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 12px; font-weight: 400; line-height: 1.4; }
@media (max-width: 800px) { .stats-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ───── SECTION ───── */
.sec { padding: 110px 0; }
.sec.warm { background: var(--paper-warm); }
.sec.white { background: #fff; }
.sec-tag {
  display: inline-block;
  font-size: 14px; font-weight: 700; color: var(--blue);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.sec-head { max-width: 720px; margin-bottom: 64px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.sec-lead { font-size: 1.2rem; color: var(--grey); line-height: 1.6; }

/* ── Section cible (filtre d'accroche landing page) ── */
.cible-grid {
  display: flex; flex-direction: column;
  gap: 0; max-width: 760px; margin: 0 auto;
}
.cible-card {
  display: flex; align-items: center; gap: 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(14,44,184,0.10);
  border-radius: 0; padding: 26px 8px;
  transition: padding-left 0.3s var(--ease);
}
.cible-card:last-of-type { border-bottom: none; }
.cible-card:hover { padding-left: 18px; }
.cible-ico {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.cible-ico svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.cible-card p { font-size: 1.12rem; line-height: 1.5; color: var(--ink); margin: 0; }
.cible-card strong { color: var(--blue); font-weight: 700; }
.cible-close {
  text-align: center; max-width: 720px; margin: 48px auto 0;
  font-size: 1.12rem; font-weight: 600; color: var(--ink); line-height: 1.6;
}
/* Phrases de transition entre sections (le "fil rouge" du copy) */
.sec-transition {
  text-align: center; max-width: 680px; margin: 56px auto 0;
  font-size: 1.15rem; font-weight: 600; line-height: 1.6;
  color: var(--ink);
}
.sec.dark-blue .sec-transition,
.sec.role-dark .sec-transition { color: rgba(255,255,255,0.92); }

/* ── Parallèle "Ce que nous faisons / Ce que vous faites" ── */
.split {
  display: grid; grid-template-columns: 1.25fr 0.75fr;
  gap: 24px; align-items: start; max-width: 1000px; margin: 0 auto;
}
.split-col { border-radius: 22px; padding: 36px 32px; }
.split-us {
  background: linear-gradient(165deg, #0e2cb8, #0a1f8c);
  color: #fff;
  box-shadow: 0 24px 60px rgba(14,44,184,0.28);
}
.split-you {
  background: var(--paper-warm);
  border: 1px solid rgba(14,44,184,0.10);
  margin-top: 28px;
}
.split-head { margin-bottom: 24px; }
.split-label {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px;
}
.split-us .split-label { color: #9db8ff; }
.split-you .split-label { color: var(--blue); }
.split-head h3 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.split-you .split-head h3 { color: var(--ink); }
.split-list { list-style: none; padding: 0; margin: 0; }
.split-list li {
  position: relative; padding-left: 30px; margin-bottom: 14px;
  font-size: 1rem; line-height: 1.5;
}
.split-us .split-list li { color: rgba(255,255,255,0.92); }
.split-you .split-list li { color: var(--ink); font-weight: 600; }
.split-list li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background-repeat: no-repeat; background-position: center;
}
.split-us .split-list li::before {
  background: rgba(255,255,255,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
}
.split-you .split-list li::before {
  background: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
}
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
  .split-you { margin-top: 0; }
}
.split-you-note {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid rgba(14,44,184,0.12);
  font-size: 1.15rem; font-weight: 800; color: var(--blue);
  line-height: 1.35; letter-spacing: -0.01em;
}

/* ── Étude de cas ── */
.cas-card {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 0; max-width: 1040px; margin: 0 auto;
  background: #fff; border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(14,44,184,0.08);
  box-shadow: 0 30px 80px rgba(14,44,184,0.12);
}
.cas-profile {
  background: linear-gradient(165deg, #0e2cb8, #0a1f8c);
  color: #fff; padding: 40px 34px; position: relative;
  display: flex; flex-direction: column;
}
.cas-photo {
  width: 110px; height: 110px; border-radius: 50%; overflow: hidden;
  border: 3px solid rgba(255,255,255,0.25); margin-bottom: 22px;
}
.cas-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cas-name { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.cas-niche { font-size: 0.92rem; color: rgba(255,255,255,0.7); margin-top: 6px; line-height: 1.4; }
.cas-stats { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.cas-stat-num { font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.cas-stat-lbl { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: 2px; }
.cas-badge {
  margin-top: auto; align-self: flex-start;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #cdd9ff; font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 100px;
}
.cas-body { padding: 40px 40px 44px; }
.cas-body-title { font-size: 1.35rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 28px; line-height: 1.25; }
.cas-timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.cas-timeline::before {
  content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(180deg, rgba(14,44,184,0.15), rgba(14,44,184,0.05));
}
.cas-step { position: relative; padding-left: 32px; padding-bottom: 22px; }
.cas-step:last-child { padding-bottom: 0; }
.cas-step::before {
  content: ''; position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue);
}
.cas-step-hl::before { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 5px rgba(255,155,106,0.18); }
.cas-step-tag { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--blue); margin-bottom: 5px; }
.cas-step-hl .cas-step-tag { color: var(--accent); }
.cas-step p { font-size: 0.98rem; color: var(--grey); line-height: 1.5; margin: 0; }

.cas-progress { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(14,44,184,0.1); }
.cas-progress-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.cas-progress-title { font-size: 1rem; font-weight: 700; color: var(--ink); }
.cas-progress-now { font-size: 0.9rem; font-weight: 700; color: var(--accent); }
.cas-progress-bar { position: relative; height: 8px; background: var(--blue-soft); border-radius: 100px; margin: 0 0 46px; }
.cas-progress-fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 50%;
  background: linear-gradient(90deg, var(--blue), #4d7eff);
  border-radius: 100px;
}
.cas-progress-marker { position: absolute; top: -3px; transform: translateX(-50%); }
.cas-progress-marker::before { content: ''; display: block; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); margin: 0 auto; }
.cas-progress-marker span { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-size: 0.78rem; font-weight: 600; color: var(--grey); }
.cas-progress-marker.mid::before { background: var(--accent); border-color: var(--accent); width: 18px; height: 18px; margin-top: -2px; }
.cas-progress-marker.mid span { color: var(--accent); font-weight: 700; }
.cas-progress-marker.end::before { border-color: var(--blue); }
.cas-progress-marker.end span { left: auto; right: 0; transform: none; }
.cas-progress-marker:first-of-type span { left: 0; transform: none; }
.cas-progress-note { font-size: 0.92rem; color: var(--grey); line-height: 1.55; margin: 0; }

@media (max-width: 820px) {
  .cas-card { grid-template-columns: 1fr; }
  .cas-profile { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 18px; }
  .cas-photo { margin-bottom: 0; }
  .cas-stats { flex-direction: row; width: 100%; margin-top: 18px; gap: 32px; }
  .cas-badge { margin-top: 18px; }
  .cas-body { padding: 32px 26px 36px; }
}
@media (max-width: 720px) {
  .cible-grid { grid-template-columns: 1fr; }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; } .reveal.d3 { transition-delay: 0.24s; }

/* ───── PROBLÈME (cards douces) ───── */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(17,19,26,0.07); }
.card-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card-ico svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 2; }
.card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { color: var(--grey); font-size: 1rem; line-height: 1.55; }
@media (max-width: 800px) { .cards { grid-template-columns: 1fr; } }

/* ───── SOLUTION (2 blocs larges photo+texte) ───── */
.duo { display: grid; gap: 28px; }
.duo-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: 24px; overflow: hidden;
}
.duo-block.flip .duo-text { order: 2; }
.duo-text { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.duo-kicker { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 14px; }
.duo-text h3 { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 22px; line-height: 1.1; }
.duo-list { list-style: none; }
.duo-list li { padding: 12px 0 12px 30px; position: relative; color: var(--ink-2); font-size: 1.02rem; border-bottom: 1px solid var(--line); }
.duo-list li:last-child { border-bottom: none; }
.duo-list li::before {
  content: ''; position: absolute; left: 0; top: 19px;
  width: 16px; height: 16px;
  background: var(--blue-soft);
  border-radius: 50%;
}
.duo-list li::after {
  content: ''; position: absolute; left: 5px; top: 23px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}
.duo-visual {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue));
  position: relative;
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.duo-visual-icon { width: 90px; height: 90px; opacity: 0.95; }
.duo-visual-icon svg { width: 100%; height: 100%; stroke: #fff; fill: none; stroke-width: 1.5; }
.duo-visual::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.15), transparent 60%);
}
@media (max-width: 800px) {
  .duo-block, .duo-block.flip .duo-text { grid-template-columns: 1fr; order: 0; }
  .duo-visual { min-height: 200px; order: -1; }
  .duo-text { padding: 40px 32px; }
}

/* ───── MÉTHODE (4 étapes simples) ───── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 36px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(17,19,26,0.06); }
.step-badge {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  margin-bottom: 22px;
}
.step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.step p { color: var(--grey); font-size: 0.96rem; line-height: 1.5; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ───── ÉQUIPE ───── */
.founders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 28px; }
.founder {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--paper-warm-2);
}
.founder img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.founder:hover img { transform: scale(1.04); }
.founder-info {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,60,0.92) 0%, rgba(10,20,60,0.3) 45%, transparent 70%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
}
.founder-role { font-size: 13px; font-weight: 600; color: #b9c8ff; margin-bottom: 8px; }
.founder-name { font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.heads { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.head {
  text-align: left;
}
.head-img {
  border-radius: 18px; overflow: hidden; aspect-ratio: 1/1; margin-bottom: 16px;
  background: var(--paper-warm-2);
}
.head-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.head:hover .head-img img { transform: scale(1.05); }
.head-name { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }
.head-role { font-size: 0.9rem; color: var(--grey); margin-top: 3px; }
@media (max-width: 800px) {
  .founders { grid-template-columns: 1fr; }
  .heads { grid-template-columns: repeat(2, 1fr); }
}

/* ───── POUR QUI (liste à coches) ───── */
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 48px; }
.check {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.check-mark {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
}
.check-mark svg { width: 15px; height: 15px; stroke: #fff; stroke-width: 3; fill: none; }
.check-txt { font-size: 1.08rem; font-weight: 500; }
@media (max-width: 800px) { .checks { grid-template-columns: 1fr; gap: 0; } }

/* ───── CTA FINAL ───── */
.final {
  background: linear-gradient(160deg, #0a1f8c 0%, #0e2cb8 60%, #1a3dd0 100%);
  color: #fff; text-align: center;
  padding: 130px 0;
  position: relative; overflow: hidden;
}
.final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,255,255,0.12), transparent 65%);
}
.final-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.final h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 22px; }
.final p { font-size: 1.2rem; color: rgba(255,255,255,0.78); margin-bottom: 40px; line-height: 1.55; }
.final-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--blue);
  font-size: 16px; font-weight: 700;
  padding: 20px 42px; border-radius: 100px; text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.final-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(0,0,0,0.25); }
.final-cta svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.final-cta:hover svg { transform: translateX(4px); }

/* ───── FOOTER ───── */
footer { background: #fff; color: var(--ink); padding: 64px 0 40px; border-top: 1px solid var(--line); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-logo img { height: 36px; margin-bottom: 18px; }
.footer-tag { color: var(--grey); max-width: 340px; font-size: 1rem; line-height: 1.5; }
.footer-nav { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { font-size: 13px; color: var(--grey-light); margin-bottom: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col a { display: block; color: var(--ink-2); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--grey-light); }
@media (max-width: 800px) { .footer-top { flex-direction: column; } }

/* ───── DIFFÉRENCIATION (piliers) ───── */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar {
  background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 40px;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pillar:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(17,19,26,0.08); }
.pillar-big { font-size: 2.6rem; font-weight: 800; color: var(--blue); letter-spacing: -0.03em; line-height: 1; margin-bottom: 18px; }
.pillar h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.pillar p { color: var(--grey); font-size: 1.02rem; line-height: 1.6; }
.pillar.feature {
  grid-column: 1 / -1;
  background: linear-gradient(150deg, #0a1f8c, #0e2cb8);
  color: #fff; border: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.pillar.feature h3 { font-size: 1.9rem; color: #fff; }
.pillar.feature p { color: rgba(255,255,255,0.82); font-size: 1.1rem; }
.pillar.feature .pillar-big { color: #fff; font-size: 3.2rem; }
@media (max-width: 800px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar.feature { grid-template-columns: 1fr; gap: 20px; padding: 36px; }
  .pillar { padding: 32px; }
}

/* objection band */
.objection {
  background: var(--ink); color: #fff;
  border-radius: 24px; padding: 56px 48px;
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
  margin-top: 28px;
}
.objection-q { font-size: 3rem; }
.objection h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.objection p { color: rgba(255,255,255,0.72); font-size: 1.08rem; line-height: 1.6; }
.objection p strong { color: #fff; font-weight: 600; }
@media (max-width: 800px) { .objection { grid-template-columns: 1fr; gap: 20px; padding: 40px 32px; text-align: center; } }

/* Logo inline dans le titre hero */
.hero-logo-inline {
  height: 0.78em;
  width: auto;
  display: inline-block;
  vertical-align: baseline;
  transform: translateY(0.16em) rotate(-3deg);
  margin-left: 0.12em;
}

/* Garder "La Cadence" + logo sur la même ligne */
.cadence-wrap { white-space: nowrap; }
.cadence-wrap .hero-logo-inline { white-space: normal; }

/* ═══════════════ PIMPAGE — ÂME & VIE ═══════════════ */

/* Accent secondaire chaud */
:root {
  --accent: #ff9b6a;
  --accent-soft: #ffd9c7;
  --glow-blue: #4d7eff;
  --glow-green: #4dffaa;
}

/* HERO — fond enrichi + vague animée + grain doux */
.hero {
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(77,159,255,0.18), transparent 60%),
    radial-gradient(900px 500px at 85% 30%, rgba(255,155,106,0.10), transparent 55%),
    linear-gradient(155deg, #050d2e 0%, #081640 30%, #0a1f8c 62%, #0e2cb8 100%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 18%, rgba(77,126,255,0.35), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(77,255,170,0.12), transparent 55%);
  pointer-events: none;
  animation: heroGlow 10s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.08); }
}

.hero-inner { position: relative; z-index: 4; }

/* halo derrière le titre */
.hero h1 { position: relative; text-shadow: 0 2px 40px rgba(0,0,0,0.15); }

/* CTA hero plus vivant */
.hero-cta { position: relative; overflow: hidden; }
.hero-cta::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14,44,184,0.12), transparent);
  transition: left 0.6s var(--ease);
}
.hero-cta:hover::after { left: 100%; }

/* logo hero : flottement doux */
.hero-logo-inline { animation: floaty 4s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0.16em) rotate(-3deg); }
  50% { transform: translateY(0.02em) rotate(-1.5deg); }
}

/* STATS — chiffres avec glow + ligne accent */
.stats { position: relative; overflow: hidden; }

.stat-num { transition: transform 0.4s var(--ease-spring); display: inline-block; }
.stat-num:hover { transform: scale(1.06); }
.stat-num .plus { color: var(--accent); }

/* CARDS — profondeur + accent au survol + icône animée */
.card { position: relative; overflow: hidden; }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover::before { transform: scaleX(1); }
.card:hover { box-shadow: 0 24px 60px rgba(14,44,184,0.12); }
.card-ico { transition: transform 0.5s var(--ease-spring), background 0.4s; }
.card:hover .card-ico { transform: rotate(-8deg) scale(1.1); background: linear-gradient(135deg, var(--blue-soft), var(--accent-soft)); }

/* PILLARS — relief + chiffre géant en watermark */
.pillar { position: relative; overflow: hidden; }
.pillar:hover { box-shadow: 0 26px 65px rgba(14,44,184,0.14); }
.pillar-big { transition: transform 0.5s var(--ease-spring); transform-origin: left; }
.pillar:hover .pillar-big { transform: scale(1.08); }
.pillar.feature { position: relative; overflow: hidden; }
.pillar.feature::after {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(77,255,170,0.15), transparent 65%);
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite alternate;
}
@keyframes floatGlow {
  0% { transform: translate(0,0); }
  100% { transform: translate(-40px, 30px); }
}

/* objection : pulse subtil sur le point d'interro */
.objection-q { animation: pulseQ 3s ease-in-out infinite; }
@keyframes pulseQ {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.94); }
}

/* STEPS — badge avec glow au survol + ligne de progression */
.step { position: relative; overflow: hidden; }
.step::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.step:hover::after { transform: scaleX(1); }
.step-badge { transition: transform 0.5s var(--ease-spring), box-shadow 0.4s; }
.step:hover .step-badge { transform: translateY(-4px) scale(1.08); box-shadow: 0 12px 28px rgba(14,44,184,0.35); }

/* FOUNDERS — overlay dégradé plus riche + accent ligne */
.founder::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease);
  z-index: 3;
}
.founder:hover::after { transform: scaleX(1); }

/* HEADS — anneau accent au survol */
.head-img { position: relative; }
.head-img::after {
  content: ''; position: absolute; inset: 0; border-radius: 18px;
  box-shadow: inset 0 0 0 0 var(--blue);
  transition: box-shadow 0.4s var(--ease);
}
.head:hover .head-img::after { box-shadow: inset 0 0 0 3px var(--blue); }

/* CHECKS — coche qui rebondit au survol + ligne accent */
.check { transition: padding-left 0.3s var(--ease); }
.check:hover { padding-left: 8px; }
.check-mark { transition: transform 0.4s var(--ease-spring), background 0.3s; }
.check:hover .check-mark { transform: scale(1.15) rotate(8deg); background: var(--accent); }

/* FINAL — fond enrichi + vague top */
.final {
  background: linear-gradient(150deg, #081640 0%, #0a1f8c 40%, #0e2cb8 75%, #1a3dd0 100%);
}
.final::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 25% 20%, rgba(77,126,255,0.3), transparent 60%),
    radial-gradient(ellipse 45% 40% at 80% 80%, rgba(255,155,106,0.12), transparent 55%);
  pointer-events: none;
  animation: heroGlow 9s ease-in-out infinite alternate;
}
.final-inner { position: relative; z-index: 2; }
.final-cta { position: relative; overflow: hidden; }
.final-cta::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14,44,184,0.12), transparent);
  transition: left 0.6s var(--ease);
}
.final-cta:hover::after { left: 100%; }

/* section tags : petit point accent */
.sec-tag { position: relative; padding-left: 0; }
.sec-tag::before {
  content: '◆'; color: var(--accent); margin-right: 8px; font-size: 0.8em;
}

/* reveal : ajout d'un léger scale pour plus de vie */
.reveal { transform: translateY(40px) scale(0.98); }
.reveal.vis { transform: translateY(0) scale(1); }

/* ═══════════════ VISUEL HERO — Dashboard Cadence ═══════════════ */
.hero { padding-bottom: 80px; }
.hero-inner { max-width: 1000px; }

/* ── Hero premium : mots animés + compteurs ── */
.hero h1 .hw {
  display: inline-block;
  opacity: 0; transform: translateY(18px);
  filter: blur(6px);
  animation: heroWord 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes heroWord {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero .cadence-wrap { display: inline-flex; align-items: center; }
.hero-stat-num { font-variant-numeric: tabular-nums; }

.hero-viz {
  position: relative;
  margin: 56px auto 0;
  max-width: 560px;
  opacity: 0;
  animation: fade 1s var(--ease) 0.9s forwards;
}
.viz-card-main {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 24px 26px 18px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.3);
}
.viz-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.viz-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--glow-green); box-shadow: 0 0 12px var(--glow-green); animation: pulse 2.2s infinite; }
.viz-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }
.viz-chart { width: 100%; height: 130px; display: block; }
.viz-area { opacity: 0; animation: fade 1.2s var(--ease) 1.3s forwards; }
.viz-stroke {
  stroke-dasharray: 1000; stroke-dashoffset: 1000;
  animation: drawLine 2.2s var(--ease) 1.1s forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.viz-months { display: flex; justify-content: space-between; margin-top: 8px; padding: 0 2px; }
.viz-months span { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.45); }

/* cartes flottantes */
.viz-float {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  animation: floatCard 5s ease-in-out infinite;
}
.viz-float-num { font-size: 1.3rem; font-weight: 800; color: var(--blue); letter-spacing: -0.02em; line-height: 1; }
.viz-float-lbl { font-size: 11px; color: var(--grey); margin-top: 3px; font-weight: 500; }
.viz-float-1 { top: -24px; right: -36px; animation-delay: 0s; }
.viz-float-1 .viz-float-num { background: linear-gradient(90deg, var(--blue), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.viz-float-2 { bottom: 20px; left: -48px; animation-delay: 1.5s; }
.viz-float-3 { display: flex; align-items: center; gap: 9px; top: 40px; right: -54px; animation-delay: 0.8s; }
.viz-float-3 .viz-float-lbl { margin-top: 0; }
.viz-float-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--glow-green); box-shadow: 0 0 8px var(--glow-green); animation: pulse 2s infinite; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 700px) {
  .hero-viz { max-width: 100%; margin-top: 44px; }
  .viz-float-1 { right: -8px; top: -18px; }
  .viz-float-2 { left: -8px; bottom: 10px; }
  .viz-float-3 { display: none; }
}

/* ═══════════════════════════════════════════════════
   REFONTE INFOGRAPHIQUE — ADN Dolphin
   ═══════════════════════════════════════════════════ */

/* Sections foncées (glassmorphism ressort) */
.sec.dark-blue {
  background: linear-gradient(160deg, #081640 0%, #0a1f8c 45%, #0e2cb8 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sec.dark-blue::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 15% 20%, rgba(77,126,255,0.28), transparent 60%),
    radial-gradient(ellipse 45% 40% at 88% 80%, rgba(255,155,106,0.14), transparent 55%);
  animation: heroGlow 11s ease-in-out infinite alternate;
}
.sec.dark-blue .S-inner, .sec.dark-blue .wrap { position: relative; z-index: 2; }
.sec.dark-blue .sec-tag { color: #8ea8ff; }
.sec.dark-blue h2 { color: #fff; }
.sec.dark-blue .sec-lead { color: rgba(255,255,255,0.72); }

/* Carte glassmorphism générique */
.glass {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.25);
}
.glass-light {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(17,19,26,0.06);
}

/* flottement réutilisable */
.floaty-1 { animation: floatCard 5s ease-in-out infinite; }
.floaty-2 { animation: floatCard 6s ease-in-out infinite 1s; }
.floaty-3 { animation: floatCard 5.5s ease-in-out infinite 0.5s; }

/* ───── STATS en cartes glassmorphism flottantes ───── */
.stats { background: var(--ink); padding: 80px 0; position: relative; overflow: hidden; }
.stats::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 40% 50% at 80% 30%, rgba(77,126,255,0.12), transparent 60%),
    radial-gradient(ellipse 35% 45% at 12% 75%, rgba(255,155,106,0.08), transparent 55%);
}
.stats .wrap { position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 34px 30px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.stat-card:hover { transform: translateY(-8px); border-color: rgba(77,126,255,0.4); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.stat-card .stat-num { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.stat-card .stat-num .plus { color: var(--accent); }
.stat-card .stat-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 12px; line-height: 1.45; }
.stat-spark { margin-top: 22px; height: 40px; width: 100%; }
.stat-spark svg { width: 100%; height: 100%; display: block; overflow: visible; }
.stat-spark path.fill { opacity: 0; animation: fade 1s var(--ease) 0.6s forwards; }
.stat-spark path.line { stroke-dasharray: 400; stroke-dashoffset: 400; animation: drawLine 1.8s var(--ease) 0.4s forwards; }
.stat-ring { position: absolute; top: 24px; right: 24px; width: 46px; height: 46px; }
.stat-ring svg { transform: rotate(-90deg); }
.stat-ring circle.bg { stroke: rgba(255,255,255,0.1); }
.stat-ring circle.fg { stroke: var(--accent); stroke-dasharray: 126; stroke-dashoffset: 126; animation: ring 1.6s var(--ease) 0.7s forwards; }
@keyframes ring { to { stroke-dashoffset: 30; } }
@media (max-width: 800px) { .stats-grid { grid-template-columns: 1fr; } }

/* ───── CONSTAT : cards avec mini-jauge ───── */
.card-gauge { margin-top: 20px; height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; position: relative; }
.card-gauge span { position: absolute; left: 0; top: 0; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--accent)); width: 0; }
.card.vis .card-gauge span { animation: fillGauge 1.4s var(--ease) 0.3s forwards; }
@keyframes fillGauge { to { width: var(--g, 70%); } }
.card-gauge-label { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; color: var(--grey-light); font-weight: 500; }

/* ───── CADENCE : dashboard riche ───── */
.cadence-viz {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
}
.cadence-board { padding: 32px; position: relative; }
.cadence-board-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.cadence-board-title { font-size: 15px; font-weight: 700; color: #fff; }
.cadence-board-badge { font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 100px; background: rgba(77,255,170,0.15); color: var(--glow-green); display: flex; align-items: center; gap: 7px; }
.cadence-board-badge .d { width: 7px; height: 7px; border-radius: 50%; background: var(--glow-green); box-shadow: 0 0 8px var(--glow-green); animation: pulse 2s infinite; }
/* calendrier 12 mois */
.cadence-cal { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.cal-cell {
  aspect-ratio: 1/1; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5);
  position: relative;
  transition: all 0.4s var(--ease);
}
.cal-cell.active {
  background: linear-gradient(135deg, var(--blue-3), var(--blue-neon));
  border-color: transparent; color: #fff;
  box-shadow: 0 8px 20px rgba(59,109,255,0.4);
}
.cal-cell.active::after {
  content: ''; position: absolute; top: 6px; right: 6px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--glow-green);
  box-shadow: 0 0 6px var(--glow-green);
}
.cadence-side { display: flex; flex-direction: column; gap: 20px; }
.cadence-metric { padding: 24px; }
.cadence-metric-num { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(90deg, #fff, #8ea8ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cadence-metric-lbl { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 8px; }
.cadence-metric-bar { margin-top: 16px; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.1); overflow: hidden; position: relative; }
.cadence-metric-bar span { position: absolute; left:0; top:0; height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--blue-neon), var(--accent)); width: 0; }
.cadence-viz.vis .cadence-metric-bar span { animation: fillGauge 1.6s var(--ease) 0.5s forwards; }
@media (max-width: 800px) { .cadence-viz { grid-template-columns: 1fr; } .cadence-cal { grid-template-columns: repeat(6, 1fr); } }

/* ───── PILIERS gardés mais avec mini-graph ───── */
.pillar-spark { margin-top: 20px; height: 44px; }
.pillar-spark svg { width: 100%; height: 100%; overflow: visible; }
.pillar-spark path.line { stroke-dasharray: 300; stroke-dashoffset: 300; }
.pillar.vis .pillar-spark path.line { animation: drawLine 1.8s var(--ease) 0.4s forwards; }

/* ───── NOTRE RÔLE : pipeline visuel ───── */
.role-pipeline {
  margin-top: 24px;
  display: flex; align-items: center; gap: 12px;
  padding: 20px; border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.pipe-node {
  flex: 1; text-align: center;
  padding: 14px 8px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85);
  position: relative;
}
.pipe-arrow { color: var(--accent); font-size: 18px; flex-shrink: 0; }
.pipe-node .pipe-pct { display: block; font-size: 1.1rem; font-weight: 800; color: #fff; margin-top: 4px; }

/* ───── COLLABORATION : timeline avec ligne progressive ───── */
.steps { position: relative; }
.steps::before {
  content: ''; position: absolute; top: 27px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  opacity: 0.25; z-index: 0;
}
@media (max-width: 800px) { .steps::before { display: none; } }
.step { position: relative; z-index: 1; }


/* ───── CTA intermédiaire (bandeau) ───── */
.cta-mid {
  margin-top: 56px;
  text-align: center;
}
.cta-mid-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--blue);
  font-size: 15px; font-weight: 700;
  padding: 18px 36px; border-radius: 100px; text-decoration: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.cta-mid-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(0,0,0,0.25); }
.cta-mid-btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.cta-mid-btn:hover svg { transform: translateX(4px); }
.cta-mid-note { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,0.6); }

/* ───── SÉLECTION : rareté (places) ───── */
.scarcity {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-bottom: 48px;
}
.scarcity-slot {
  border-radius: 16px; padding: 28px 24px; text-align: center;
  border: 1px solid var(--line); background: #fff;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.scarcity-slot.taken { background: var(--paper-warm); }
.scarcity-slot.open {
  background: linear-gradient(150deg, #0a1f8c, #0e2cb8);
  border-color: transparent; color: #fff;
  box-shadow: 0 20px 50px rgba(14,44,184,0.25);
}
.scarcity-slot.open::after {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,155,106,0.25), transparent 65%);
  animation: floatGlow 7s ease-in-out infinite alternate;
}
.scarcity-status { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.scarcity-slot.taken .scarcity-status { color: var(--grey-light); }
.scarcity-slot.open .scarcity-status { color: var(--accent-soft); }
.scarcity-icon { width: 44px; height: 44px; margin: 0 auto 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.scarcity-slot.taken .scarcity-icon { background: var(--line); }
.scarcity-slot.open .scarcity-icon { background: rgba(255,255,255,0.15); }
.scarcity-icon svg { width: 22px; height: 22px; }
.scarcity-slot.taken .scarcity-icon svg { stroke: var(--grey-light); }
.scarcity-slot.open .scarcity-icon svg { stroke: #fff; }
.scarcity-label { font-size: 1.05rem; font-weight: 700; }
.scarcity-slot.open .scarcity-label { position: relative; z-index: 2; }
@media (max-width: 700px) { .scarcity { grid-template-columns: 1fr; } }

/* ───── FAQ ───── */
.faq-list { max-width: 820px; margin: 56px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px;
  font-size: 1.2rem; font-weight: 600; color: var(--ink);
  transition: color 0.3s;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue-soft); display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--blue); stroke-width: 2.5; transition: transform 0.4s var(--ease); }
.faq-item.open .faq-icon { background: var(--blue); }
.faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
}
.faq-a-inner { padding: 0 4px 4px; color: var(--grey); font-size: 1.05rem; line-height: 1.6; max-width: 720px; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 26px; }

/* harmonie : transition douce entre sections foncées */
.sec.dark-blue + .final { margin-top: 0; }
.final { background: linear-gradient(180deg, #0e2cb8 0%, #0a1f8c 50%, #081640 100%); }

/* ───── HERO : barre de stats intégrée ───── */
.hero-stats {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  margin-top: 44px;
  opacity: 0; animation: fade 1s var(--ease) 0.7s forwards;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.hero-stat-num .plus { color: var(--accent); }
.hero-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 6px; font-weight: 500; }
.hero-stat-sep { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }
@media (max-width: 700px) { .hero-stats { gap: 28px; } .hero-stat-sep { display: none; } }

/* ───── CADENCE réagencée : plus aérée ───── */
.cadence-clean { margin-top: 56px; display: flex; flex-direction: column; gap: 24px; }
.cadence-hero-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: stretch; }
.cadence-pillars-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 800px) { .cadence-hero-row, .cadence-pillars-row { grid-template-columns: 1fr; } }

/* ───── Notre rôle en foncé glassmorphism ───── */
.sec.role-dark { background: linear-gradient(200deg, #081640 0%, #0a1f8c 50%, #0e2cb8 100%); color:#fff; position:relative; overflow:hidden; }
.sec.role-dark::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse 50% 45% at 85% 15%, rgba(77,126,255,0.25), transparent 60%), radial-gradient(ellipse 40% 40% at 10% 85%, rgba(255,155,106,0.12), transparent 55%);
  animation: heroGlow 11s ease-in-out infinite alternate;
}
.sec.role-dark .wrap { position: relative; z-index: 2; }
.sec.role-dark .sec-tag { color:#8ea8ff; }
.sec.role-dark h2 { color:#fff; }
.sec.role-dark .sec-lead { color: rgba(255,255,255,0.72); }
.duo-block.glass-dark { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(20px); }
.duo-block.glass-dark .duo-text h3 { color: #fff; }
.duo-block.glass-dark .duo-kicker { color: var(--accent); }
.duo-block.glass-dark .duo-list li { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.1); }
.duo-block.glass-dark .duo-list li::before { background: rgba(77,126,255,0.25); }
.duo-block.glass-dark .duo-list li::after { background: var(--blue-neon); }

/* ───── Cartes partenaires avec photo ───── */
.scarcity-slot.has-photo { padding: 0; overflow: hidden; }
.partner-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.partner-info { padding: 20px; }
.scarcity-slot.taken .partner-photo { filter: none; }
.partner-badge {
  position: absolute; top: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); color: #fff;
}
.partner-badge.engaged { background: rgba(10,20,60,0.7); color: rgba(255,255,255,0.8); }
.partner-name { font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.partner-role { font-size: 13px; color: var(--grey); margin-top: 3px; }
.scarcity-slot.open-slot {
  background: linear-gradient(150deg, #0a1f8c, #0e2cb8);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 100%; padding: 40px 24px; color: #fff; position: relative; overflow: hidden;
}
.scarcity-slot.open-slot::after {
  content:''; position:absolute; top:-40%; right:-20%; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,155,106,0.3), transparent 65%); animation: floatGlow 7s ease-in-out infinite alternate;
}
.open-slot-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; position: relative; z-index: 2; }
.open-slot-icon svg { width: 28px; height: 28px; stroke: #fff; stroke-width: 2; }
.open-slot-status { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-soft); position: relative; z-index: 2; }
.open-slot-label { font-size: 1.15rem; font-weight: 700; margin-top: 6px; position: relative; z-index: 2; }

/* ───── POUR QUI réinventée : cartes flottantes ───── */
.qui-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 56px;
}
.qui-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 28px 22px;
  backdrop-filter: blur(16px);
  position: relative;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.qui-card:hover { transform: translateY(-8px); border-color: rgba(77,126,255,0.4); box-shadow: 0 24px 55px rgba(0,0,0,0.3); }
.qui-card.float-a { animation: floatCard 6s ease-in-out infinite; }
.qui-card.float-b { animation: floatCard 6s ease-in-out infinite 1.2s; }
.qui-card.float-c { animation: floatCard 6s ease-in-out infinite 0.6s; }
.qui-card.float-d { animation: floatCard 6s ease-in-out infinite 1.8s; }
.qui-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(77,126,255,0.25), rgba(255,155,106,0.2));
  display: flex; align-items: center; justify-content: center;
}
.qui-icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.8; }
.qui-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 8px; letter-spacing: -0.01em; }
.qui-card p { font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.5; }
.qui-check {
  position: absolute; top: 20px; right: 20px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--glow-green); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.5);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease-spring);
}
.qui-card.vis .qui-check { opacity: 1; transform: scale(1); }
.qui-check svg { width: 12px; height: 12px; stroke: #07260f; stroke-width: 3.5; fill: none; }
@media (max-width: 900px) { .qui-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .qui-grid { grid-template-columns: 1fr; } }

/* ───── Cadence : pictogrammes de comparaison (au lieu de barres) ───── */
.cadence-pictos { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 16px; }
.picto-dot {
  width: 22px; height: 22px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.picto-dot.on { background: linear-gradient(135deg, var(--blue-neon), var(--accent)); }
.picto-dot.on svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 2.5; fill: none; }
.picto-dot.off { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }

/* ───── POUR QUI version claire (icônes flottent, pas la carte) ───── */
.sec.warm .qui-card, .sec.white .qui-card {
  background: #fff;
  border: 1px solid var(--line);
  backdrop-filter: none;
  animation: none;
}
.sec.warm .qui-card:hover, .sec.white .qui-card:hover {
  border-color: rgba(14,44,184,0.25);
  box-shadow: 0 24px 55px rgba(17,19,26,0.08);
}
.sec.warm .qui-card h3, .sec.white .qui-card h3 { color: var(--ink); }
.sec.warm .qui-card p, .sec.white .qui-card p { color: var(--grey); }
.sec.warm .qui-icon, .sec.white .qui-icon {
  background: linear-gradient(135deg, var(--blue-soft), var(--accent-soft));
}
.sec.warm .qui-icon svg, .sec.white .qui-icon svg { stroke: var(--blue); }
/* Seule l'icône flotte */
.qui-icon { animation: floatCard 4.5s ease-in-out infinite; }
.qui-card.float-b .qui-icon { animation-delay: 1s; }
.qui-card.float-c .qui-icon { animation-delay: 0.5s; }
.qui-card.float-d .qui-icon { animation-delay: 1.5s; }

/* ───── Comparatif Avec / Sans nous ───── */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vs-card { border-radius: 18px; padding: 32px; position: relative; }
.vs-card.without {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.vs-card.with {
  background: linear-gradient(150deg, rgba(77,126,255,0.18), rgba(255,155,106,0.12));
  border: 1px solid rgba(77,126,255,0.4);
}
.vs-label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.vs-card.without .vs-label { color: rgba(255,255,255,0.5); }
.vs-card.with .vs-label { color: var(--accent); }
.vs-big { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; color: #fff; }
.vs-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.vs-pictos { display: flex; flex-wrap: wrap; gap: 6px; }
.vs-pictos .picto-dot { width: 26px; height: 26px; }
.vs-list { list-style: none; margin-top: 20px; }
.vs-list li { padding: 9px 0 9px 26px; position: relative; font-size: 0.92rem; color: rgba(255,255,255,0.78); }
.vs-list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 14px; height: 2px; }
.vs-card.without .vs-list li::before { background: rgba(255,255,255,0.3); }
.vs-card.with .vs-list li { padding-left: 28px; }
.vs-card.with .vs-list li::before { content: '✓'; top: 8px; left: 2px; width: auto; height: auto; color: var(--glow-green); font-weight: 700; background: none; }
@media (max-width: 700px) { .versus { grid-template-columns: 1fr; } }

/* ───── Élément flottant signature (discret, 1 par section) ───── */
.float-accent {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.float-accent svg { display: block; }
.float-accent.fa-1 { top: 12%; right: 6%; animation: floatCard 7s ease-in-out infinite; }
.float-accent.fa-2 { bottom: 14%; left: 5%; animation: floatCard 8s ease-in-out infinite 1s; }
.sec { position: relative; }
.sec .wrap { position: relative; z-index: 1; }

/* ── Transitions discrètes (lien narratif léger) ── */
.transition-band {
  background: transparent;
  padding: 30px 0; text-align: center;
}
.transition-band.tb-alt { background: transparent; }
.transition-band .wrap { display: flex; flex-direction: column; align-items: center; gap: 0; }
.tb-kicker { display: none; }
.tb-text {
  font-size: 1.15rem; font-weight: 500;
  letter-spacing: -0.01em; line-height: 1.5; color: var(--grey);
  max-width: 600px; margin: 0;
}
.tb-text br { display: none; }
.tb-text strong { color: var(--ink); font-weight: 700; }
.tb-arrow {
  margin-top: 16px; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.4;
}
.tb-arrow svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.qui-radial {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 30px; align-items: center;
  max-width: 1100px; margin: 56px auto 0;
}
.qui-side { display: flex; flex-direction: column; gap: 22px; }
.qui-item {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid rgba(14,44,184,0.08);
  border-radius: 16px; padding: 18px 20px;
  box-shadow: 0 8px 30px rgba(14,44,184,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.qui-item:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(14,44,184,0.12); }
.qui-left .qui-item { text-align: left; }
.qui-left .qui-item .qui-item-ico { order: -1; }
.qui-item-ico {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-soft), var(--accent-soft));
  display: flex; align-items: center; justify-content: center;
}
.qui-item-ico svg { width: 23px; height: 23px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.qui-item-txt h3 { font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; letter-spacing: -0.01em; }
.qui-item-txt p { font-size: 0.88rem; color: var(--grey); line-height: 1.45; }

/* personnage central */
.qui-figure {
  position: relative; display: flex; flex-direction: column; align-items: center;
  align-self: stretch; justify-content: center; min-width: 280px;
}
.qui-rings {
  position: absolute; top: 44%; left: 50%; transform: translate(-50%,-50%);
  width: 300px; height: 300px; z-index: 0; pointer-events: none;
}
.qui-rings .ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  border-radius: 50%; border: 1.5px solid rgba(14,44,184,0.16);
}
.qui-rings .r1 { width: 180px; height: 180px; animation: ringPulse 4s ease-in-out infinite; }
.qui-rings .r2 { width: 240px; height: 240px; border-color: rgba(14,44,184,0.11); animation: ringPulse 4s ease-in-out infinite 0.6s; }
.qui-rings .r3 { width: 300px; height: 300px; border-color: rgba(255,155,106,0.18); border-style: dashed; animation: ringSpin 30s linear infinite; }
@keyframes ringPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes ringSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.qui-medallion {
  position: relative; z-index: 1; width: 168px; height: 168px; border-radius: 50%;
  box-shadow: 0 22px 50px rgba(14,44,184,0.32), 0 0 0 8px rgba(255,255,255,0.7);
}
.qui-person { width: 100%; height: 100%; border-radius: 50%; display: block; }
.qui-medallion-ping {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  width: 20px; height: 20px; border-radius: 50%;
  background: #2bd96b; border: 3px solid #fff;
  box-shadow: 0 0 0 0 rgba(43,217,107,0.6); animation: ping 2.2s ease-out infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(43,217,107,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(43,217,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,217,107,0); }
}
.qui-figure-label {
  position: relative; z-index: 1; margin-top: 26px; text-align: center;
  font-size: 1.05rem; color: var(--grey); line-height: 1.35;
}
.qui-figure-label strong { color: var(--blue); font-weight: 800; font-size: 1.3rem; display: inline-block; margin-top: 2px; }

@media (max-width: 860px) {
  .qui-radial { grid-template-columns: 1fr; gap: 18px; }
  .qui-figure { order: -1; margin-bottom: 16px; }
  .qui-left .qui-item { text-align: left; flex-direction: row; }
  .qui-left .qui-item .qui-item-ico { order: -1; }
}

/* ───── CADENCE : mécanisme expliqué ───── */
.mecano-viz {
  margin-top: 48px;
  border-radius: 24px; padding: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
}
.mecano-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.mecano-title { font-size: 15px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; }
.mecano-title .d { width: 9px; height: 9px; border-radius: 50%; background: var(--glow-green); box-shadow: 0 0 12px var(--glow-green); animation: pulse 2.2s infinite; }
.mecano-badge { font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 100px; background: linear-gradient(90deg, rgba(77,126,255,0.25), rgba(255,155,106,0.2)); color: #fff; }
.mecano-chart { width: 100%; height: 260px; display: block; position: relative; }
.mecano-chart svg { width: 100%; height: 100%; overflow: visible; }
.mecano-area2 { opacity: 0; animation: fade 1.2s var(--ease) 0.4s forwards; }
.mecano-line2 { stroke-dasharray: 1400; stroke-dashoffset: 1400; }
.cadence-viz.vis .mecano-line2, .mecano-viz.vis .mecano-line2 { animation: drawLine 2.4s var(--ease) 0.3s forwards; }
.mecano-months { display: flex; justify-content: space-between; margin-top: 12px; }
.mecano-months span { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 500; }
.mecano-point { opacity: 0; animation: fade 0.5s var(--ease) forwards; }
.mecano-tag {
  position: absolute; padding: 7px 13px; border-radius: 10px;
  background: rgba(255,255,255,0.95); box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  font-size: 12px; font-weight: 700; color: var(--ink); white-space: nowrap;
}
.mecano-tag .sub { font-size: 10px; color: var(--grey); font-weight: 500; display: block; }
.mecano-tag.start { bottom: 38px; left: 2%; }
.mecano-tag.end { top: 10px; right: 2%; }
.mecano-tag.end .big { background: linear-gradient(90deg, var(--blue), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* 3 raisons pourquoi ça marche */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 30px 26px; backdrop-filter: blur(16px);
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(77,126,255,0.4); }
.why-num { font-size: 13px; font-weight: 800; color: var(--accent); margin-bottom: 14px; letter-spacing: 0.05em; }
.why-card h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -0.01em; }
.why-card p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.55; }
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } }

/* ───── Kicker "Objectif" au-dessus du titre hero ───── */
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 20px 9px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; margin-bottom: 28px;
  backdrop-filter: blur(10px);
  opacity: 0; animation: fade 0.8s var(--ease) 0.05s forwards;
}
.hero-kicker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}

/* ───── Hero "sans" tags (Prop 1) ───── */
.hero-sans { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 0 0 28px; }
.sans-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  padding: 9px 18px; border-radius: 100px;
  font-size: 14px; font-weight: 600; color: #fff;
  backdrop-filter: blur(10px);
  opacity: 0; animation: fade 0.7s var(--ease) forwards;
}
.sans-tag:nth-child(1) { animation-delay: 0.4s; }
.sans-tag:nth-child(2) { animation-delay: 0.55s; }
.sans-tag:nth-child(3) { animation-delay: 0.7s; }
.sans-tag svg { width: 16px; height: 16px; stroke: var(--accent); stroke-width: 3; }

/* ───── Badge progression 100K → 1M ───── */
.hk-progress {
  gap: 12px; padding: 9px 20px;
}
.hk-from { color: rgba(255,255,255,0.7); font-weight: 700; letter-spacing: 0; text-transform: none; font-size: 15px; }
.hk-arrow { color: var(--accent); font-weight: 700; font-size: 16px; }
.hk-to {
  font-weight: 800; font-size: 15px; letter-spacing: 0; text-transform: none;
  background: linear-gradient(90deg, #fff, var(--accent-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ───── Overline "Notre objectif" éditorial audacieux ───── */
.hero-overline {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-bottom: 30px;
  opacity: 0; animation: fade 0.8s var(--ease) 0.05s forwards;
}
.overline-text {
  font-size: 14px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.overline-line {
  height: 1px; width: 64px;
  background: linear-gradient(90deg, transparent, rgba(255,155,106,0.6));
}
.overline-line:last-child { background: linear-gradient(90deg, rgba(255,155,106,0.6), transparent); }
@media (max-width: 600px) { .overline-line { width: 32px; } .overline-text { letter-spacing: 0.2em; font-size: 12px; } }

/* ───── "Notre objectif" avec cible (proposition B) ───── */
.hero-target {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 30px;
  opacity: 0; animation: fade 0.8s var(--ease) 0.05s forwards;
}
.target-ico {
  display: inline-flex; width: 30px; height: 30px;
}
.target-ico svg { width: 100%; height: 100%; stroke: var(--accent); stroke-width: 1.6; color: var(--accent); animation: targetPulse 3s ease-in-out infinite; }
@keyframes targetPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.85; }
}
.target-label {
  font-size: 16px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; display: inline-flex; align-items: baseline; gap: 7px;
}
.target-small {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
}

/* ───── Overline avec logo + ancrage promesse x10 ───── */
.overline-text { display: inline-flex; align-items: center; gap: 7px; }
.overline-logo { height: 0.95em; width: auto; transform: translateY(1px); }
.hero-anchor {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 4px 0 30px;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 800; letter-spacing: -0.02em;
  opacity: 0; animation: fade 0.8s var(--ease) 0.35s forwards;
}
.anchor-from { color: rgba(255,255,255,0.65); }
.anchor-arrow { color: var(--accent); }
.anchor-to {
  background: linear-gradient(90deg, #fff, #b9c8ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ═══════════════ CTA simple — pilule + cercle blanc avec logo D ═══════════════ */
.dpx-btn {
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  background: #fff; color: var(--blue);
  height: 60px; padding: 0 30px 0 8px; border-radius: 100px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.dpx-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(0,0,0,0.28); }
/* cercle blanc contenant le logo D */
.dpx-cap {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: #fff; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(14,44,184,0.18);
  transition: transform 0.4s var(--ease-spring);
}
.dpx-btn:hover .dpx-cap { transform: rotate(-8deg) scale(1.08); }
.dpx-cap img { width: 30px; height: 30px; object-fit: contain; display: block; }
.dpx-txt { white-space: nowrap; }

/* Variante nav : plus compacte */
.nav-btn.dpx-btn { height: 48px; font-size: 14px; padding: 0 20px 0 6px; gap: 10px; }
.nav-btn .dpx-cap { width: 36px; height: 36px; }
.nav-btn .dpx-cap img { width: 24px; height: 24px; }

/* responsive : textes longs */
@media (max-width: 560px) {
  .dpx-txt { white-space: normal; }
  .dpx-btn { height: auto; min-height: 56px; padding-top: 8px; padding-bottom: 8px; }
}

/* ═══════════════════════════════════════════════════
   REFONTE UX — INSPIRATION MARKETING.MBA
   (Univers Dolphin conservé · sections enrichies)
   ═══════════════════════════════════════════════════ */

/* ── 1. CLIENT PORTFOLIO (social proof grille type MBA) ── */
.portfolio {
  background: var(--paper-warm);
  padding: 96px 0;
  border-top: 1px solid rgba(14,44,184,0.06);
  border-bottom: 1px solid rgba(14,44,184,0.06);
}
.portfolio-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.portfolio-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.12;
  max-width: 620px;
}
.portfolio-head h2 em { font-style: normal; color: var(--blue); }
.portfolio-meta {
  font-size: 14px; color: var(--grey); font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.portfolio-meta .dot { width: 8px; height: 8px; border-radius: 50%; background: #2bd96b; box-shadow: 0 0 10px rgba(43,217,107,0.5); animation: pulse 2.4s infinite; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.pf-card {
  background: #fff;
  border: 1px solid rgba(14,44,184,0.08);
  border-radius: 22px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.4s;
  position: relative;
}
.pf-card:hover { transform: translateY(-6px); box-shadow: 0 28px 65px rgba(14,44,184,0.14); border-color: rgba(14,44,184,0.18); }
.pf-media {
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #0a1f8c, #0e2cb8);
  position: relative; overflow: hidden;
}
.pf-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.pf-card:hover .pf-media img { transform: scale(1.04); }
.pf-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,60,0.55) 0%, rgba(10,20,60,0) 55%);
}
.pf-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.95); color: var(--blue);
  backdrop-filter: blur(8px);
}
.pf-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.pf-name { font-size: 1.15rem; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.pf-niche { font-size: 13px; color: var(--grey); margin-top: -8px; }
.pf-metric {
  margin-top: auto;
  display: flex; align-items: baseline; gap: 8px;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.pf-metric-num {
  font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(90deg, var(--blue), #4d7eff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.pf-metric-lbl { font-size: 12px; color: var(--grey); font-weight: 500; }
.pf-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px;
  font-size: 13px; font-weight: 700; color: var(--blue);
  text-decoration: none;
  transition: gap 0.3s var(--ease);
}
.pf-link:hover { gap: 10px; }
.pf-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* card "agrégée" plus solide */
.pf-card.pf-agg {
  background: linear-gradient(160deg, #0a1f8c, #0e2cb8);
  color: #fff; border: none;
  justify-content: center; padding: 36px 30px;
  position: relative; overflow: hidden;
}
.pf-card.pf-agg::after {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,155,106,0.22), transparent 65%);
  pointer-events: none;
}
.pf-agg-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; position: relative; z-index: 2; }
.pf-agg-num {
  font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(90deg, #fff, #b9c8ff);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  position: relative; z-index: 2;
}
.pf-agg-lbl { font-size: 14px; color: rgba(255,255,255,0.78); line-height: 1.5; max-width: 220px; position: relative; z-index: 2; }
.pf-agg-foot {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em;
  position: relative; z-index: 2;
}
@media (max-width: 960px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .portfolio-grid { grid-template-columns: 1fr; } .portfolio { padding: 72px 0; } }

/* ── 2. VISION + QUOTE FONDATEUR (type Engineered Realities) ── */
.vision {
  background: linear-gradient(180deg, #fff 0%, var(--paper-warm) 100%);
  padding: 130px 0;
  position: relative; overflow: hidden;
}
.vision::before {
  content: ''; position: absolute; top: 10%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,44,184,0.04), transparent 65%);
  pointer-events: none;
}
.vision-inner {
  max-width: 920px; margin: 0 auto;
  text-align: center; position: relative; z-index: 2;
}
.vision-kicker {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 28px;
}
.vision-head {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.035em;
  color: var(--ink); margin-bottom: 24px;
}
.vision-head em { font-style: normal; color: var(--blue); }
.vision-sub {
  font-size: 1.2rem; color: var(--grey);
  max-width: 680px; margin: 0 auto 56px;
  line-height: 1.55;
}
.vision-quote {
  display: grid; grid-template-columns: 88px 1fr; gap: 28px;
  align-items: center; text-align: left;
  max-width: 720px; margin: 0 auto;
  padding: 32px 36px; border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(14,44,184,0.10);
  box-shadow: 0 30px 70px rgba(14,44,184,0.10);
}
.vision-quote-photo {
  width: 88px; height: 88px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--paper-warm);
  box-shadow: 0 10px 24px rgba(14,44,184,0.18);
}
.vision-quote-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vision-quote-body p {
  font-size: 1.05rem; color: var(--ink-2); line-height: 1.55;
  font-style: italic;
}
.vision-quote-body p::before { content: '« '; color: var(--blue); font-weight: 800; font-style: normal; }
.vision-quote-body p::after { content: ' »'; color: var(--blue); font-weight: 800; font-style: normal; }
.vision-quote-author {
  margin-top: 12px;
  font-size: 13px; font-weight: 700; color: var(--blue);
  letter-spacing: -0.01em;
}
.vision-quote-author span { color: var(--grey); font-weight: 500; }
@media (max-width: 620px) {
  .vision-quote { grid-template-columns: 1fr; text-align: center; padding: 28px 24px; }
  .vision-quote-photo { margin: 0 auto; }
  .vision { padding: 90px 0; }
}

/* ── 3. CALLOUT IMPACT (statement XL bandeau, type "category domination") ── */
.callout {
  background: #050d2e;
  color: #fff;
  padding: 130px 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.callout::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 20% 30%, rgba(77,126,255,0.22), transparent 60%),
    radial-gradient(ellipse 45% 40% at 85% 70%, rgba(255,155,106,0.16), transparent 55%);
  animation: heroGlow 12s ease-in-out infinite alternate;
  pointer-events: none;
}
.callout-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; padding: 0 32px; }
.callout-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 36px;
  backdrop-filter: blur(10px);
}
.callout-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.callout h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.callout h2 .gradient {
  background: linear-gradient(90deg, #4d9fff 0%, #b9c8ff 50%, #ff9b6a 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.callout-sub {
  font-size: 1.2rem; color: rgba(255,255,255,0.72);
  max-width: 640px; margin: 0 auto;
  line-height: 1.55;
}
@media (max-width: 700px) { .callout { padding: 90px 0; } }

/* ── 4. OBJECTION DEEP (copy long-form type MBA "manipulative BS") ── */
.obj-deep {
  background: var(--ink);
  color: #fff;
  padding: 130px 0;
  position: relative; overflow: hidden;
}
.obj-deep::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 45% at 80% 15%, rgba(77,126,255,0.16), transparent 60%),
    radial-gradient(ellipse 35% 40% at 12% 85%, rgba(255,155,106,0.10), transparent 55%);
  pointer-events: none;
}
.obj-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.obj-q {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: #fff;
}
.obj-q .icon {
  display: inline-block; vertical-align: middle;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #ff7a47);
  margin-right: 14px; line-height: 44px; text-align: center;
  font-size: 1.4rem;
}
.obj-lead {
  font-size: 1.2rem; color: rgba(255,255,255,0.88);
  margin-bottom: 28px; line-height: 1.55;
}
.obj-lead strong { color: var(--accent); font-weight: 700; }
.obj-body { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.75; }
.obj-body p { margin-bottom: 22px; }
.obj-body p strong { color: #fff; font-weight: 600; }
.obj-body .highlight {
  display: block; padding: 22px 26px; margin: 28px 0;
  border-left: 3px solid var(--accent);
  background: rgba(255,255,255,0.04);
  border-radius: 0 12px 12px 0;
  font-size: 1.08rem; color: #fff; font-weight: 500; font-style: italic;
}
.obj-sign {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; gap: 16px;
}
.obj-sign-photo { width: 54px; height: 54px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,0.18); }
.obj-sign-photo img { width: 100%; height: 100%; object-fit: cover; }
.obj-sign-txt { font-size: 14px; color: rgba(255,255,255,0.65); }
.obj-sign-txt strong { display: block; color: #fff; font-weight: 700; margin-bottom: 2px; font-size: 15px; }
@media (max-width: 700px) { .obj-deep { padding: 90px 0; } .obj-inner { padding: 0 24px; } }

/* ── 5. POETIC STATEMENT (type MBA "We build marketing that feels true") ── */
.poetic {
  background: #fff;
  padding: 130px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.poetic::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,44,184,0.05), transparent 65%);
  pointer-events: none;
}
.poetic-inner { max-width: 960px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.poetic h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.18; letter-spacing: -0.04em;
  color: var(--ink);
}
.poetic h2 .l {
  display: block;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.poetic h2 .l.vis { opacity: 1; transform: translateY(0); }
.poetic h2 .l1 { transition-delay: 0.05s; }
.poetic h2 .l2 { color: var(--blue); transition-delay: 0.25s; }
.poetic h2 .l3 {
  background: linear-gradient(90deg, var(--blue), var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  transition-delay: 0.45s;
}
@media (max-width: 700px) { .poetic { padding: 90px 0; } }

/* ── 6. EXCLUSION LIST (Who We Don't Work With) ── */
.exclude {
  background: var(--paper-warm);
  padding: 110px 0;
  border-top: 1px solid rgba(14,44,184,0.06);
}
.exclude .sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.exclude .sec-head h2 { margin-bottom: 18px; }
.exclude .sec-head h2 em { font-style: normal; color: #c44343; }
.exclude-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 920px; margin: 0 auto;
}
.exclude-card {
  background: #fff;
  border: 1px solid rgba(196,67,67,0.12);
  border-left: 3px solid #c44343;
  border-radius: 12px;
  padding: 22px 26px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.exclude-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(196,67,67,0.10); }
.exclude-ico {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px;
  background: rgba(196,67,67,0.10);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.exclude-ico svg { width: 16px; height: 16px; stroke: #c44343; stroke-width: 2.4; fill: none; }
.exclude-card p { font-size: 1rem; color: var(--ink-2); line-height: 1.5; margin: 0; }
.exclude-card p strong { color: #c44343; font-weight: 700; }
.exclude-close {
  text-align: center; max-width: 680px; margin: 48px auto 0;
  font-size: 1.05rem; color: var(--grey); line-height: 1.6;
  font-style: italic;
}
@media (max-width: 720px) { .exclude-grid { grid-template-columns: 1fr; } }

/* ── 7. FOOTER PRO (multi-colonnes complet) ── */
.footer-pro {
  background: #050d2e;
  color: #fff;
  padding: 90px 0 32px;
  position: relative; overflow: hidden;
}
.footer-pro::before {
  content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(14,44,184,0.25), transparent 65%);
  pointer-events: none;
}
.footer-pro .wrap { position: relative; z-index: 2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand-col img.footer-logo-img { height: 36px; margin-bottom: 22px; display: block; }
.footer-brand-col p { color: rgba(255,255,255,0.65); font-size: 0.96rem; line-height: 1.6; max-width: 320px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.footer-social:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
.footer-social svg { width: 16px; height: 16px; fill: #fff; }
.footer-col-pro h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.footer-col-pro a {
  display: block; color: rgba(255,255,255,0.72);
  text-decoration: none; font-size: 14px; padding: 6px 0;
  transition: color 0.3s, padding-left 0.3s var(--ease);
}
.footer-col-pro a:hover { color: #fff; padding-left: 4px; }
.footer-foot-pro {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-foot-pro a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.footer-foot-pro a:hover { color: #fff; }
.footer-legal { display: flex; gap: 24px; }
/* Le footer responsive est défini plus bas, après l'override "Footer light"
   (qui utilise !important), sinon ces règles n'auraient aucun effet. */

/* ── 8. Hero badge "trusted by" pour annoncer le portfolio sous le hero ── */
.hero-trusted {
  margin-top: 56px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
  opacity: 0; animation: fade 0.8s var(--ease) 0.9s forwards;
}

/* ── 9. Section-tag harmonisé sur sections sombres ── */
.callout .sec-tag, .obj-deep .sec-tag { color: var(--accent); }
.callout .sec-tag::before, .obj-deep .sec-tag::before { color: var(--accent); }

/* ── 10. Patch transitions plus discrètes (alléger entre sections) ── */
.transition-band { padding: 24px 0; }

/* ── DIAGNOSTIC : section avec pattern dotted (overflow NON hidden pour sticky) ── */
.sec-diagnostic { position: relative; }
.sec-diagnostic::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(14,44,184,0.10) 1.2px, transparent 0);
  background-size: 28px 28px;
  -webkit-mask: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 75%);
          mask: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 75%);
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}
.sec-diagnostic .wrap { position: relative; z-index: 1; }
/* ── Grille 2×2 allégée (design plus aéré, moins de hauteur) ── */
.pain-stack {
  max-width: 1040px; margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pain-pin { margin: 0; display: flex; }
.pain-stack .pain-card {
  background: #fff;
  border: 1px solid rgba(14,44,184,0.07);
  border-radius: 18px;
  padding: 26px 28px 24px;
  box-shadow: 0 6px 22px rgba(14,44,184,0.05), 0 1px 3px rgba(14,44,184,0.04);
  transition: box-shadow 0.4s var(--smooth), transform 0.4s var(--smooth), border-color 0.4s;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.pain-stack .pain-card:hover {
  box-shadow: 0 14px 36px rgba(14,44,184,0.10), 0 2px 6px rgba(14,44,184,0.06);
  border-color: rgba(14,44,184,0.12);
  transform: translateY(-2px);
}
/* Liseré dégradé discret au hover */
.pain-stack .pain-card::before {
  content: '';
  position: absolute; left: 20px; right: 20px; top: 0;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  opacity: 0; transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity 0.4s var(--smooth), transform 0.4s var(--smooth);
}
.pain-stack .pain-card:hover::before { opacity: 1; transform: scaleX(1); }

.pain-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.pain-num {
  font-size: 12px; font-weight: 800; letter-spacing: 0.04em;
  color: var(--blue); display: inline-flex; align-items: center; gap: 9px;
}
.pain-num-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; font-variant-numeric: tabular-nums;
}

@media (max-width: 880px) {
  .pain-stack { grid-template-columns: 1fr; gap: 14px; }
  .pain-stack .pain-card { padding: 22px 22px 20px; }
}

/* ── HEADLINE FLUIDE : slide scroll-driven de la gauche vers le centre ── */
.diag-h2 {
  display: block;
  position: relative;
  will-change: transform, opacity;
  /* opacity et transform pilotés par JS au scroll */
}
.diag-h2 strong {
  font-weight: 800; font-variant-numeric: tabular-nums;
  background: linear-gradient(90deg, var(--blue), #4d9fff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0.05em;
}
.diag-dash {
  color: var(--grey-light);
  margin: 0 0.18em;
  font-weight: 400;
}
.diag-orange { color: var(--accent); }
/* Chaque mot animé indépendamment (slide gauche + fade, scroll-driven) */
.diag-word {
  display: inline-block;
  will-change: transform, opacity;
}
.pain-ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-soft), var(--accent-soft));
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease-spring, var(--smooth)), background 0.4s;
  flex-shrink: 0;
}
.pain-card:hover .pain-ico {
  transform: rotate(-6deg) scale(1.08);
  background: linear-gradient(135deg, var(--accent-soft), var(--blue-soft));
}
.pain-ico svg {
  width: 18px; height: 18px; stroke: var(--blue);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.pain-title {
  font-size: 1.04rem; font-weight: 800; color: var(--ink);
  letter-spacing: -0.012em; line-height: 1.3;
  margin-bottom: 8px;
}
.pain-body {
  font-size: 0.9rem; color: var(--grey); line-height: 1.55;
  margin: 0;
}
.pain-body strong { color: var(--ink); font-weight: 600; }

/* ── Section de transition plein écran : statement sombre, mots révélés au scroll ── */
.sec-statement {
  position: relative;
  background: #050810;
  color: #fff;
  padding: 26vh 32px;
  overflow: hidden;
  isolation: isolate;
}
.sec-statement .stmt-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(720px circle at 18% 38%, rgba(14,44,184,0.42), transparent 58%),
    radial-gradient(640px circle at 82% 62%, rgba(255,155,106,0.18), transparent 60%),
    radial-gradient(1100px circle at 50% 50%, rgba(77,159,255,0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.sec-statement::before {
  /* grille très subtile en fond pour ancrer la profondeur */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 80%);
          mask: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}
.sec-statement .stmt-wrap {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
}
.stmt-text {
  font-size: clamp(1.8rem, 4.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.022em;
  text-align: center;
  margin: 0;
}
.stmt-line {
  display: block;
}
.stmt-line-2 { margin-top: 0.45em; }
.stmt-accent {
  font-style: normal;
  font-weight: 800;
}
/* Chaque mot, splitté par JS */
.stmt-word {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.14));
  -webkit-background-clip: text; background-clip: text;
  transition: background 0.55s var(--smooth);
  will-change: background;
}
.stmt-word.is-lit {
  background: linear-gradient(90deg, #ffffff, #e9f0ff);
  -webkit-background-clip: text; background-clip: text;
}
.stmt-word.is-accent.is-lit {
  background: linear-gradient(90deg, var(--accent) 0%, #ffb98a 60%, #ffd9b8 100%);
  -webkit-background-clip: text; background-clip: text;
}
@media (max-width: 880px) {
  .sec-statement { padding: 18vh 24px; }
  .stmt-text { line-height: 1.25; }
}
@media (prefers-reduced-motion: reduce) {
  .stmt-word {
    background: linear-gradient(90deg, #ffffff, #e9f0ff);
    -webkit-background-clip: text; background-clip: text;
  }
  .stmt-word.is-accent {
    background: linear-gradient(90deg, var(--accent) 0%, #ffb98a 60%, #ffd9b8 100%);
    -webkit-background-clip: text; background-clip: text;
  }
}

/* ── 11. Hero qualifier badge (filtre d'audience premium) ── */
.hero-qualifier {
  display: inline-flex; align-items: center; gap: 12px;
  max-width: 100%;
  padding: 10px 22px 10px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.005em;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
  margin-bottom: 30px;
  position: relative;
  opacity: 0; animation: fade 0.9s var(--smooth) 0.05s forwards;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.hero-qualifier::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255,255,255,0.25), transparent 40%, transparent 60%, rgba(255,155,106,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.hero-qualifier-dot {
  flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: #4d9fff;
  box-shadow: 0 0 0 4px rgba(77,159,255,0.14), 0 0 12px rgba(77,159,255,0.7);
  animation: pulse 2.4s ease-in-out infinite;
}
.hero-qualifier-txt strong {
  font-weight: 700;
  color: #fff;
}
.hero-qualifier-txt em {
  font-style: normal; font-weight: 600;
  background: linear-gradient(90deg, #fff, var(--accent-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
@media (max-width: 720px) {
  .hero-qualifier { font-size: 12px; padding: 9px 16px 9px 14px; gap: 9px; }
  .hero-qualifier-dot { width: 7px; height: 7px; }
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS SCROLL — Inspiration Framer Motion
   (Lenis-feel, spring, blur-clear, stagger, parallax)
   ═══════════════════════════════════════════════════ */

:root {
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --emph:   cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reveal Framer : fade + slide up (plus soft, plus rapide, déclenché TÔT) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--smooth),
    transform 0.85s var(--smooth);
  will-change: opacity, transform;
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.10s; }
.reveal.d2 { transition-delay: 0.20s; }
.reveal.d3 { transition-delay: 0.30s; }
.reveal.d4 { transition-delay: 0.40s; }
.reveal.d5 { transition-delay: 0.50s; }

/* Reveal-left / right */
.reveal-x-l { transform: translateX(-60px) scale(0.97); filter: blur(8px); opacity: 0; transition: opacity 1.1s var(--smooth), transform 1.1s var(--smooth), filter 1.1s var(--smooth); }
.reveal-x-l.vis { transform: translateX(0) scale(1); filter: blur(0); opacity: 1; }
.reveal-x-r { transform: translateX(60px) scale(0.97); filter: blur(8px); opacity: 0; transition: opacity 1.1s var(--smooth), transform 1.1s var(--smooth), filter 1.1s var(--smooth); }
.reveal-x-r.vis { transform: translateX(0) scale(1); filter: blur(0); opacity: 1; }

/* Stagger automatique sur grilles via classe .vis du parent (plus subtle) */
.portfolio-grid .pf-card,
.cards .card,
.exclude-grid .exclude-card,
.why-grid .why-card,
.qui-grid .qui-card,
.heads .head,
.founders .founder,
.stats-grid .stat-card {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--smooth),
    transform 0.85s var(--smooth);
}
.portfolio-grid.vis .pf-card,
.cards.vis .card,
.exclude-grid.vis .exclude-card,
.why-grid.vis .why-card,
.qui-grid.vis .qui-card,
.heads.vis .head,
.founders.vis .founder,
.stats-grid.vis .stat-card {
  opacity: 1; transform: translateY(0);
}
.portfolio-grid.vis > :nth-child(1),
.cards.vis > :nth-child(1),
.exclude-grid.vis > :nth-child(1),
.why-grid.vis > :nth-child(1),
.qui-grid.vis > :nth-child(1),
.heads.vis > :nth-child(1),
.founders.vis > :nth-child(1),
.stats-grid.vis > :nth-child(1) { transition-delay: 0s; }
.portfolio-grid.vis > :nth-child(2),
.cards.vis > :nth-child(2),
.exclude-grid.vis > :nth-child(2),
.why-grid.vis > :nth-child(2),
.qui-grid.vis > :nth-child(2),
.heads.vis > :nth-child(2),
.founders.vis > :nth-child(2),
.stats-grid.vis > :nth-child(2) { transition-delay: 0.10s; }
.portfolio-grid.vis > :nth-child(3),
.cards.vis > :nth-child(3),
.exclude-grid.vis > :nth-child(3),
.why-grid.vis > :nth-child(3),
.qui-grid.vis > :nth-child(3),
.heads.vis > :nth-child(3),
.stats-grid.vis > :nth-child(3) { transition-delay: 0.20s; }
.cards.vis > :nth-child(4),
.exclude-grid.vis > :nth-child(4),
.qui-grid.vis > :nth-child(4),
.heads.vis > :nth-child(4) { transition-delay: 0.30s; }

/* Split-text mot par mot (Framer style) */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  filter: blur(6px);
  transition: opacity 0.95s var(--smooth), transform 0.95s var(--smooth), filter 0.95s var(--smooth);
  will-change: opacity, transform, filter;
}
.split-word.vis {
  opacity: 1; transform: translateY(0); filter: blur(0);
}
.split-mask { display: inline-block; overflow: hidden; line-height: 1.08; vertical-align: bottom; }

/* Scroll progress bar (Framer signature) */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 999;
  background: rgba(14,44,184,0.06);
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue) 0%, #4d7eff 50%, var(--accent) 100%);
  transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(14,44,184,0.4);
}

/* Nav qui se compacte au scroll */
nav { transition: padding 0.4s var(--smooth), background 0.4s, box-shadow 0.4s; }
nav.scrolled {
  padding-top: 10px; padding-bottom: 10px;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(17,19,26,0.08);
}
nav .nav-logo img { transition: height 0.4s var(--smooth); }
nav.scrolled .nav-logo img { height: 24px; }

/* Magnetic CTA — preparation (le mouvement vient du JS) */
.dpx-btn { transition: transform 0.5s var(--smooth), box-shadow 0.4s var(--ease); }

/* Parallax images : transform contrôlé par JS via --p */
[data-parallax] {
  will-change: transform;
  transform: translate3d(0, var(--p, 0px), 0);
  transition: transform 0.1s linear;
}

/* Headline gradient qui s'éclaire au scroll */
.callout h2 .gradient {
  background-size: 200% auto;
  animation: gradMove 6s linear infinite;
}
@keyframes gradMove {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Float-up sur la scarcity / final */
.final h2, .final p, .scarcity, .final .dpx-btn {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition: opacity 1.1s var(--smooth), transform 1.1s var(--smooth), filter 1.1s var(--smooth);
}
.final.vis h2 { opacity: 1; transform: translateY(0); filter: blur(0); transition-delay: 0s; }
.final.vis p { opacity: 1; transform: translateY(0); filter: blur(0); transition-delay: 0.15s; }
.final.vis .scarcity { opacity: 1; transform: translateY(0); filter: blur(0); transition-delay: 0.3s; }
.final.vis .dpx-btn { opacity: 1; transform: translateY(0); filter: blur(0); transition-delay: 0.45s; }

/* ═══ PONTS DE COULEUR ENTRE SECTIONS (no more sharp borders) ═══ */
/* Chaque section sombre fond doucement dans/depuis le clair via pseudos */
.sec.dark-blue,
.obj-deep,
.callout,
.final,
.footer-pro {
  position: relative;
}
.sec.dark-blue::after,
.obj-deep::after,
.callout::after,
.final::after,
.footer-pro::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 80px;
  pointer-events: none;
  z-index: 5;
}

/* Section suivante (claire) : on lui ajoute un fade-in du haut */
.sec.white,
.sec.warm,
.portfolio,
.exclude,
.vision,
.poetic {
  position: relative;
}
.sec.white::before,
.sec.warm::before,
.portfolio::before,
.exclude::before,
.poetic::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 100px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(247,245,240,0) 0%, rgba(247,245,240,0) 100%);
}

/* Harmonisation finale : retirer les borders franches partout */
.portfolio { border-top: none; border-bottom: none; }
.exclude { border-top: none; }

/* ═══ TRANSITION-BANDS adoucies (presque invisibles, juste un fil narratif) ═══ */
.transition-band {
  padding: 32px 0 36px;
  position: relative;
  background: transparent;
}
.transition-band .wrap {
  opacity: 1;
  text-align: center;
  max-width: 780px;
}
.transition-band .tb-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.55;
}
.transition-band .tb-text strong { color: var(--blue); font-weight: 700; }
.transition-band .tb-arrow { display: none; }
.transition-band .tb-kicker { display: none; }

/* ═══ PADDING HARMONISÉS pour rythme constant ═══ */
.sec { padding: 100px 0; }
.portfolio { padding: 100px 0; }
.vision { padding: 110px 0; }
.callout { padding: 120px 0; }
.obj-deep { padding: 110px 0; }
.poetic { padding: 120px 0; }
.exclude { padding: 100px 0; }
@media (max-width: 760px) {
  .sec, .portfolio, .vision, .callout, .obj-deep, .poetic, .exclude { padding: 72px 0; }
}

/* ═══ SECTIONS QUI SE "TOUCHENT" (sans border franche entre claires consécutives) ═══ */
.sec.white + .sec.warm,
.sec.warm + .sec.white,
.portfolio + .sec.white,
.sec.white + .portfolio,
.poetic + .exclude {
  margin-top: -1px;
}

/* ═══ NOUVELLES SECTIONS : vision-proof grid + 4 PILIERS + COMPARATIF + OBJECTIONS ═══ */

/* Vision proof grid (les 3 chiffres clés du challenge) */
.vision-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 56px 0 8px;
}
.vp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: left;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.vp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14,44,184,0.30);
  box-shadow: 0 12px 36px rgba(14,44,184,0.10);
}
.vp-num {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 14px;
}
.vp-lbl {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--grey);
}
.vp-lbl strong { color: var(--ink); font-weight: 600; }
@media (max-width: 880px) {
  .vision-proof-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* 4 PILIERS INIMITABLES */
.sec.piliers { background: var(--paper-warm); padding: 110px 0; }
.piliers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.pilier-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.pilier-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), #4d9fff);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.pilier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(14,44,184,0.12);
  border-color: rgba(14,44,184,0.20);
}
.pilier-card:hover::before { opacity: 1; }
.pilier-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.pilier-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.pilier-card p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.55;
}
@media (max-width: 1000px) {
  .piliers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .piliers-grid { grid-template-columns: 1fr; }
}

/* TABLEAU COMPARATIF */
.sec.compare { background: #fff; padding: 110px 0; }
.cmp-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(10,31,140,0.05);
  margin-top: 24px;
}
.cmp-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr) 1.15fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row.cmp-head {
  background: var(--paper-warm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.cmp-row.cmp-head .cmp-cell { padding: 18px 14px; }
.cmp-row.cmp-head .cmp-self {
  background: var(--blue);
  color: #fff;
}
.cmp-cell {
  padding: 20px 14px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-2);
  border-right: 1px solid var(--line);
}
.cmp-cell:last-child { border-right: none; }
.cmp-cell.cmp-crit {
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  padding-left: 26px;
}
.cmp-cell.cmp-self {
  background: rgba(14,44,184,0.04);
  font-weight: 700;
}
.cmp-row:hover .cmp-cell.cmp-self { background: rgba(14,44,184,0.07); }
.cmp-ok {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #d4f7e3; color: #058644;
  font-weight: 800;
}
.cmp-cell.cmp-self .cmp-ok { background: var(--blue); color: #fff; }
.cmp-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fbe2e2; color: #c44;
  font-weight: 800;
}
.cmp-mid {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fff2d1; color: #b27d00;
  font-weight: 800;
}
.cmp-conclusion {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  max-width: 780px;
  margin: 44px auto 0;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .cmp-table { overflow-x: auto; border-radius: 14px; }
  .cmp-row { grid-template-columns: 220px repeat(4, 130px) 160px; }
  .cmp-cell.cmp-crit { padding-left: 18px; }
}

/* OBJECTIONS ACCORDION */
.sec.objections { background: var(--paper-warm); padding: 110px 0; }
.obj-list {
  max-width: 880px;
  margin: 16px auto 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.obj-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.obj-item[open] {
  border-color: rgba(14,44,184,0.25);
  box-shadow: 0 8px 28px rgba(14,44,184,0.08);
}
.obj-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 60px 22px 28px;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  user-select: none;
  transition: background 0.25s var(--ease);
}
.obj-item summary::-webkit-details-marker { display: none; }
.obj-item summary:hover { background: rgba(14,44,184,0.025); }
.obj-item summary::after {
  content: '+';
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.obj-item[open] summary::after {
  content: '−';
  background: var(--blue);
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}
.obj-ans {
  padding: 0 28px 26px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--grey);
  border-top: 1px solid rgba(14,44,184,0.08);
  padding-top: 18px;
}
@media (max-width: 600px) {
  .obj-item summary { padding: 20px 56px 20px 22px; font-size: 1rem; }
  .obj-item summary::after { right: 18px; }
  .obj-ans { padding: 16px 22px 22px; }
}

/* ═══ LEAN — overrides spécifiques version courte ═══ */
/* Cacher les petits carrés orange "sec-tag" pour épurer */
.sec-tag { display: none !important; }
/* Réduire l'espace entre sec-head et contenu */
.sec-head { margin-bottom: 48px; }
/* Utilité : mettre un mot clé en bleu marque dans une headline */
.hl-blue { color: var(--blue); }
.hl-orange { color: var(--accent); }
/* Fix : espace excessif entre sec-head et infographie mécanisme */
#mecanisme .cadence-clean { margin-top: 0 !important; }
#mecanisme .mecano-viz { margin-top: 0 !important; }

/* CTA section : pill avec gradient bleu → orange (couleurs de la marque) + logo Dolphin en silhouette blanche, sans pastille blanche */
.lean-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.dpx-btn--orange {
  background: linear-gradient(95deg, var(--blue-deep) 0%, var(--blue) 42%, #ff7a3d 100%) !important;
  color: #fff !important;
  box-shadow: 0 14px 40px rgba(14,44,184,0.30), 0 4px 14px rgba(255,122,61,0.20) !important;
  padding: 0 32px 0 14px !important;
  height: 62px !important;
}
.dpx-btn--orange:hover {
  box-shadow: 0 22px 56px rgba(14,44,184,0.30), 0 10px 30px rgba(255,122,61,0.40) !important;
  background: linear-gradient(95deg, var(--blue-deep) 0%, var(--blue) 35%, #ff6620 100%) !important;
}
/* Plus de pastille blanche : container transparent + logo en silhouette blanche */
.dpx-btn--orange .dpx-cap {
  background: transparent !important;
  box-shadow: none !important;
  width: 36px !important;
  height: 36px !important;
}
.dpx-btn--orange .dpx-cap img {
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,0.20));
  width: 30px !important;
  height: 30px !important;
}
.dpx-btn--orange:hover .dpx-cap { transform: rotate(-8deg) scale(1.10); }

/* Scarcity 2 cards centrées (Lean = 2 partenaires/an) */
.scarcity {
  grid-template-columns: repeat(2, minmax(0, 280px)) !important;
  justify-content: center !important;
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Footer light (fond blanc, texte noir) */
.footer-pro {
  background: #fff !important;
  color: var(--ink) !important;
  border-top: 1px solid var(--line);
}
.footer-pro::before,
.footer-pro::after { display: none !important; }
.footer-brand-col p { color: var(--grey) !important; }
.footer-grid {
  grid-template-columns: 1.8fr 1fr 1fr !important;
  border-bottom-color: var(--line) !important;
}
.footer-col-pro h4 {
  color: var(--ink) !important;
}
.footer-col-pro a {
  color: var(--ink-2) !important;
}
.footer-col-pro a:hover { color: var(--blue) !important; }
.footer-social {
  background: var(--paper-warm) !important;
  border-color: var(--line) !important;
}
.footer-social:hover { background: var(--blue-soft) !important; border-color: rgba(14,44,184,0.2) !important; }
.footer-social svg { fill: var(--ink-2) !important; }
.footer-foot-pro {
  color: var(--grey) !important;
}
.footer-legal a { color: var(--grey) !important; }
.footer-legal a:hover { color: var(--blue) !important; }

/* Footer responsive — placé après l'override "light" pour battre le !important */
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px 32px !important;
  }
  /* Logo + slogan + réseaux occupent toute la largeur, le reste s'empile dessous */
  .footer-brand-col { grid-column: 1 / -1 !important; }
}
@media (max-width: 560px) {
  .footer-pro { padding: 56px 0 28px !important; }
  .footer-grid {
    gap: 28px 22px !important;
    padding-bottom: 36px !important;
  }
  .footer-brand-col p { max-width: none !important; margin-bottom: 20px !important; }
  /* L'e-mail long se coupe proprement au lieu de déborder */
  .footer-col-pro a { overflow-wrap: anywhere !important; }
  .footer-foot-pro {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }
  .footer-legal { gap: 18px !important; flex-wrap: wrap !important; }
}

/* ═══ LEAN — Section "Présentation Dolphin" (2 colonnes : texte + mockup visuel) ═══ */
.sec.presentation {
  background: var(--paper-warm);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.sec.presentation::before {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(14,44,184,0.10), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.presentation-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.presentation-text-col { text-align: left; }
.presentation-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: var(--blue-soft);
  border-radius: 100px;
}
.presentation-kicker::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.presentation-headline {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.13;
  color: var(--ink);
  margin-bottom: 26px;
}
.presentation-headline em {
  color: var(--blue);
  font-style: italic;
  font-weight: 800;
}
.presentation-text {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.presentation-text:last-of-type { margin-bottom: 0; }
.presentation-text strong { color: var(--ink); font-weight: 700; }

/* Mockup visuel : 4 cards empilées en mosaïque légèrement décalée */
.presentation-mockup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
}
.pm-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px 22px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(14,44,184,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.pm-card-1 { transform: rotate(-1.5deg); }
.pm-card-2 { transform: rotate(1.2deg); margin-top: 28px; }
.pm-card-3 { transform: rotate(0.8deg); margin-top: -18px; }
.pm-card-4 { transform: rotate(-1deg); }
.pm-card:hover {
  transform: translateY(-4px) rotate(0);
  box-shadow: 0 22px 52px rgba(14,44,184,0.14);
  z-index: 2;
}
.pm-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue-soft), #dde6ff);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pm-icon svg {
  width: 22px; height: 22px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pm-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.pm-sub {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.45;
}

@media (max-width: 960px) {
  .presentation-grid { grid-template-columns: 1fr; gap: 48px; }
  .presentation-text-col { text-align: center; }
  .presentation-text-col .presentation-kicker { align-self: center; }
  .presentation-mockup { max-width: 460px; margin: 0 auto; }
  .pm-card-2, .pm-card-3 { margin-top: 0; }
}
@media (max-width: 500px) {
  .presentation-mockup { grid-template-columns: 1fr; max-width: 360px; }
  .pm-card { transform: none !important; }
}

/* ═══ LEAN — Section "Ce qu'on fait" (3 services) ═══ */
.sec.lean-what { background: var(--paper-warm); padding: 110px 0; }
.lean-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.lean-service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 28px 30px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.lean-service-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), #4d9fff);
  border-radius: 20px 0 0 20px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.lean-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(14,44,184,0.10);
  border-color: rgba(14,44,184,0.2);
}
.lean-service-card:hover::before { opacity: 1; }
.lean-service-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.lean-service-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.lean-service-card p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.6;
}
@media (max-width: 1000px) {
  .lean-services { grid-template-columns: 1fr; }
}

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-x-l, .reveal-x-r,
  .split-word, .portfolio-grid .pf-card, .cards .card,
  .exclude-grid .exclude-card, .why-grid .why-card,
  .pilier-card, .vp-card, .obj-item, .lean-service-card,
  [data-parallax], .scroll-progress-bar {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}
