/* ════════════════════════════════════════════════════════════
   NextStage V3 — CSS Complet
   Designer : Refonte stratégique & premium
════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --ink:      #1F2937;
  --ink-2:    #1E3A8A;
  --sand:     #F9FAFB;
  --sand-2:   #E5E7EB;
  --white:    #FFFFFF;
  --copper:   #2563EB;
  --copper-2: #1E40AF;
  --amber:    #FACC15;
  --muted:    #6B7280;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --ease: cubic-bezier(.16,1,.3,1);

  /* Dérivés */
  --bg:        #09090b;
  --bg-card:   #111318;
  --bg-card-2: #0d0f14;
  --bg-subtle: #16191f;

  --text:      var(--sand);
  --text-2:    var(--muted);
  --text-dim:  #4B5563;

  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.13);
  --border-blue: rgba(37,99,235,0.3);

  --blue-glow: rgba(37,99,235,0.12);
  --amber-glow: rgba(250,204,21,0.10);
  --red-dim:   rgba(239,68,68,0.08);
  --red-border: rgba(239,68,68,0.25);

  --font-d: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-b: 'Inter', system-ui, sans-serif;
  --nav-h: 64px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
select { font-family: inherit; color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2d3748; border-radius: 10px; }


/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(9,9,11,0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(9,9,11,0.96);
  border-color: var(--border-2);
}

.nav-logo {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.nav-logo em { color: var(--copper); font-style: normal; }

.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
  font-size: 0.875rem; font-weight: 500;
}
.nav-links a { color: var(--text-2); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 0.45rem 1.1rem;
  background: var(--copper);
  color: var(--white) !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--copper-2); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 0.4rem;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 150;
  background: var(--bg);
  flex-direction: column;
  padding: calc(var(--nav-h) + 1.5rem) 1.75rem 2rem;
  gap: 0.25rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mob-link {
  font-family: var(--font-d);
  font-size: 1.65rem; font-weight: 700;
  color: var(--text-2);
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.mob-link:hover { color: var(--text); }
.mob-cta { color: var(--copper) !important; margin-top: 1rem; }


/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-d);
  font-size: 0.9rem; font-weight: 700;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,99,235,0.35);
}
.btn-primary:hover { background: var(--copper-2); box-shadow: 0 6px 32px rgba(37,99,235,0.5); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--text);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--text);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

.btn-premium {
  background: linear-gradient(135deg, var(--amber) 0%, #f59e0b 100%);
  color: #1a1200;
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(250,204,21,0.3);
}
.btn-premium:hover { box-shadow: 0 6px 36px rgba(250,204,21,0.45); }

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-wide { width: 100%; }


/* ─── UTILS ─── */
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.section-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }

.section-h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 0.875rem;
}
.section-h2 em { color: var(--copper); font-style: normal; }

.section-p { font-size: 1rem; color: var(--text-2); line-height: 1.7; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px); pointer-events: none;
}
.hero-orb--1 {
  width: 700px; height: 700px;
  background: var(--copper);
  opacity: 0.1;
  top: -20%; right: -15%;
  animation: orbFloat1 12s ease-in-out infinite alternate;
}
.hero-orb--2 {
  width: 550px; height: 550px;
  background: var(--ink-2);
  opacity: 0.18;
  bottom: -15%; left: -20%;
  animation: orbFloat2 14s ease-in-out infinite alternate;
}
@keyframes orbFloat1 { from { transform: translate(0,0); } to { transform: translate(-30px, 20px); } }
@keyframes orbFloat2 { from { transform: translate(0,0); } to { transform: translate(20px, -25px); } }

.hero-grid {
  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: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}

/* HERO INNER — Content + Visual */
.hero-inner {
  position: relative; z-index: 1;
  flex: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 3rem;
  align-items: center;
}

/* Journey Strip */
.journey-strip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-2);
  margin-bottom: 1.75rem;
  max-width: fit-content;
}
.journey-node {
  padding: 0.2rem 0.5rem;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  color: var(--text-2);
  display: flex; align-items: center; gap: 0.3rem;
}
.journey-node--start, .journey-node--end {
  background: var(--bg-subtle);
  color: var(--text);
  font-weight: 700;
}
.journey-node--success {
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.2);
}
.journey-node--alert {
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.2);
}
.journey-arrow { color: var(--text-dim); font-size: 0.7rem; }
.journey-flag { font-size: 1rem; }

/* Hero Title */
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-title em { color: var(--copper); font-style: normal; }
.hero-title-dz {
  background: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Proof Chips */
.hero-chips {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-md);
  font-size: 0.82rem; font-weight: 500;
  max-width: fit-content;
}
.chip-icon{
  width:18px;
  height:18px;
  stroke-width:2;
  flex-shrink:0;
}
.chip--blue { background: var(--blue-glow); border: 1px solid var(--border-blue); color: #93c5fd; }
.chip--green { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); color: #86efac; }
.chip--amber { background: var(--amber-glow); border: 1px solid rgba(250,204,21,0.2); color: #fde68a; }

/* Hero Visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.photo-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.photo-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.photo-frame {
  width: clamp(260px, 30vw, 360px);
  aspect-ratio: 3/4;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-2);
  position: relative; z-index: 1;
  background: var(--bg-card);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--bg-subtle) 0%, var(--bg-card) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
}
.photo-initials {
  font-family: var(--font-d);
  font-size: 4rem; font-weight: 800;
  color: rgba(255,255,255,0.15);
}
.photo-hint { font-size: 0.75rem; color: var(--text-dim); }

.photo-badge {
  position: absolute;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.35rem;
  z-index: 2;
  backdrop-filter: blur(12px);
}
.photo-badge--dz {
  top: 1.25rem; left: -0.75rem;
  background: rgba(15,18,22,0.9);
  border: 1px solid var(--border-2);
  color: var(--text);
}
.photo-badge--fr {
  bottom: 4rem; right: -1rem;
  background: var(--copper);
  color: var(--white);
}
.photo-badge--stat {
  bottom: 1.25rem; left: -0.75rem;
  background: rgba(250,204,21,0.1);
  border: 1px solid rgba(250,204,21,0.25);
  color: var(--amber);
  flex-direction: column; gap: 0;
  padding: 0.5rem 0.9rem;
}
.badge-num {
  font-family: var(--font-d);
  font-size: 1.1rem; font-weight: 800;
  line-height: 1;
}
.badge-txt { font-size: 0.65rem; font-weight: 500; opacity: 0.7; }

/* Hero Ticker (social proof footer) */
.hero-ticker {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-2);
  flex-wrap: wrap;
}
.ticker-label { font-weight: 600; color: var(--text); }
.ticker-avatars { display: flex; align-items: center; }
.ticker-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-glow);
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700;
  color: var(--copper);
  margin-left: -6px;
}
.ticker-avatar:first-child { margin-left: 0; }
.ticker-avatar--more { background: var(--bg-card); color: var(--text-2); font-size: 0.65rem; }
.ticker-sub { color: var(--text-2); }


/* ════════════════════════════════════
   TRUST BAR
═══════════════════════════════════ */
.trust-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  max-width: 900px; margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-stat {
  flex: 1; min-width: 130px;
  text-align: center; padding: 0.5rem 1rem;
}
.trust-num {
  display: block;
  font-family: var(--font-d);
  font-size: 1.5rem; font-weight: 800;
  color: var(--copper);
  letter-spacing: -0.03em;
}
.trust-label { font-size: 0.75rem; color: var(--text-2); }
.trust-div { width: 1px; height: 36px; background: var(--border-2); flex-shrink: 0; }


/* ════════════════════════════════════
   DIAGNOSTIC FORM
═══════════════════════════════════ */
.diagnostic-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.diagnostic-inner {
  max-width: 1000px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.diagnostic-left { padding-top: 0.5rem; }
.diagnostic-left .section-h2 { text-align: left; }
.diagnostic-left .section-p { text-align: left; margin-bottom: 1.5rem; }

/* ─── Diagnostic conditional cases ─── */
.diag-what-you-get { margin-bottom: 1.5rem; }
.diag-case {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  animation: stepIn 0.3s var(--ease);
}
.diag-case.active { display: block; }
.diag-case--default { display: block; }
.diag-case--default.hidden { display: none; }
.diag-case-hint {
  font-size: 0.875rem; color: var(--text-dim);
  font-style: italic; text-align: center; padding: 0.5rem 0;
}
.diag-case-header { margin-bottom: 0.875rem; }
.diag-case-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  background: var(--blue-glow); border: 1px solid var(--border-blue);
  color: #93c5fd; border-radius: 999px;
}
.diag-case-tag--alert { background: var(--red-dim); border-color: var(--red-border); color: #fca5a5; }
.diag-case-list { display: flex; flex-direction: column; gap: 0.6rem; }
.diag-case-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color: var(--text-2);
}

.diag-case-list li svg{
  width:18px;
  height:18px;
  flex-shrink:0;
  margin-top:2px;
}

.guarantee-ico svg{
  width:18px;
  height:18px;
}

.diag-guarantees { display: flex; gap: 1rem; flex-wrap: wrap; }
.diag-guarantee { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--text-2); font-weight: 500; }
.guarantee-ico { font-size: 0.9rem; }
.promise-icon { font-size: 1rem; flex-shrink: 0; }

/* Form card */
.diag-form {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-progress-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; margin-bottom: 1.75rem;
}
.form-progress-bar {
  flex: 1; height: 4px;
  background: var(--bg-card-2);
  border-radius: 2px; overflow: hidden;
}
.progress-fill {
  height: 100%; width: 33.33%;
  background: var(--copper);
  border-radius: 2px;
  transition: width 0.4s var(--ease);
}
.form-step-label {
  font-size: 0.72rem; font-weight: 600; color: var(--text-2);
  white-space: nowrap; letter-spacing: 0.02em;
}

.form-step { display: none; flex-direction: column; gap: 1.25rem; }
.form-step.active {
  display: flex;
  animation: stepIn 0.3s var(--ease);
}
@keyframes stepIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: none; }
}

.form-q {
  font-family: var(--font-d);
  font-size: 1rem; font-weight: 700;
  color: var(--text); line-height: 1.4;
}

/* Radio options */
.form-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.opt-label { cursor: pointer; }
.opt-label input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.opt-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  padding: 0.9rem 0.75rem;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  transition: all 0.2s var(--ease);
  text-align: center;
}
.opt-card:hover { border-color: var(--border-2); background: var(--bg-card-2); }
.opt-label input:checked + .opt-card {
  border-color: var(--copper);
  background: var(--blue-glow);
}
.opt-card--alert:hover { border-color: rgba(239,68,68,0.4); }
.opt-label input:checked + .opt-card--alert {
  border-color: rgba(239,68,68,0.5);
  background: var(--red-dim);
}
.opt-ico {
  display: flex;
  align-items: center;
  justify-content: center;
}

.opt-ico svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
}

.privacy-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.opt-txt { font-size: 0.78rem; font-weight: 600; color: var(--text); }

.tl-icon svg,
.etape-ico svg,
.feat-check svg,
.lesson-dot svg,
.inline-icon{
  width:20px;
  height:20px;
  stroke-width:2;
}

.inline-icon{
  vertical-align:middle;
  margin-right:4px;
}

/* Text fields */
.form-fields { display: flex; flex-direction: column; gap: 0.9rem; }
.field-wrap { display: flex; flex-direction: column; gap: 0.35rem; }
.field-label { font-size: 0.78rem; font-weight: 600; color: var(--text-2); }
.field-wrap input,
.field-wrap select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font-b);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.field-wrap select option {
  background: #111318;
  color: #fff;
}
.field-wrap input::placeholder { color: var(--text-dim); }
.field-wrap input:focus,
.field-wrap select:focus { border-color: var(--copper); background: rgba(37,99,235,0.05); }
.field-wrap select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; }

.form-nav { display: flex; gap: 0.6rem; }
.form-nav .btn-ghost { flex-shrink: 0; }
.form-nav .btn-primary { flex: 1; }

.btn-submit { width: 100%; }

.form-privacy { font-size: 0.72rem; color: var(--text-dim); text-align: center; }

/* Success state */
.form-success {
  display: none; flex-direction: column;
  align-items: center; text-align: center; gap: 1rem;
  padding: 1rem 0;
  animation: stepIn 0.4s var(--ease);
}
.form-success.active { display: flex; }
.success-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 2px solid rgba(34,197,94,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #4ade80;
}
.form-success h3 { font-family: var(--font-d); font-size: 1.4rem; font-weight: 800; }
.form-success p { color: var(--text-2); font-size: 0.9rem; }
.success-what {
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 0.875rem 1rem;
  width: 100%; text-align: left;
}
.success-what ul { display: flex; flex-direction: column; gap: 0.4rem; }
.success-what li { font-size: 0.82rem; color: var(--text-2); }
.success-note { font-size: 0.72rem; color: var(--text-dim); }
.opt-sub { font-size: 0.7rem; color: var(--text-dim); line-height: 1.3; text-align: center; }
.opt-label input:checked + .opt-card .opt-sub { color: rgba(147,197,253,0.7); }
.form-q-sub { font-size: 0.82rem; color: var(--text-dim); margin-top: -0.75rem; }
.form-recap {
  background: var(--blue-glow); border: 1px solid var(--border-blue);
  border-radius: var(--r-md); padding: 0.875rem 1rem;
}
.recap-title { font-size: 0.72rem; font-weight: 700; color: #93c5fd; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.recap-content { font-size: 0.85rem; color: var(--text-2); line-height: 1.5; }



/* ════════════════════════════════════
   TIMELINE — MON PARCOURS
═══════════════════════════════════ */
.parcours-section {
  padding: clamp(5rem, 9vw, 7rem) 0;
  background: var(--bg);
}
.parcours-section .section-wrap { display: flex; flex-direction: column; align-items: center; }

.timeline {
  position: relative;
  max-width: 680px; width: 100%;
  margin: 0 auto;
  padding-left: 2.5rem;
}

.timeline-track {
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, var(--border-2) 10%, var(--border-2) 90%, transparent 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.25rem;
  display: grid;
  grid-template-columns: 80px 1px 1fr;
  gap: 0 1rem;
  align-items: start;
}
.timeline-item:last-child { padding-bottom: 0; }

.tl-side { display: flex; flex-direction: column; align-items: flex-end; padding-top: 0.2rem; }
.tl-date {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-dim);
  text-align: right;
}

.tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--copper);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--copper);
  flex-shrink: 0;
  margin-top: 0.3rem;
  position: relative;
}
.tl-dot::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: var(--copper);
  opacity: 0.15;
  animation: dotPulse 2.5s ease infinite;
}
@keyframes dotPulse { 0%,100%{transform:scale(1);opacity:0.15} 50%{transform:scale(1.4);opacity:0} }
.tl-dot--success { background: #22c55e; box-shadow: 0 0 0 2px #22c55e; }
.tl-dot--success::before { background: #22c55e; animation: none; }
.tl-dot--alert { background: #ef4444; box-shadow: 0 0 0 2px #ef4444; }
.tl-dot--alert::before { background: #ef4444; animation: none; }
.tl-dot--current { background: var(--amber); box-shadow: 0 0 0 2px var(--amber); }
.tl-dot--current::before { background: var(--amber); }

.tl-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin-top: 0.1rem;
}
.tl-card--success {
  border-color: rgba(34,197,94,0.25);
  background: rgba(34,197,94,0.05);
}
.tl-card--alert {
  border-color: var(--red-border);
  background: var(--red-dim);
}
.tl-card--current {
  border-color: rgba(250,204,21,0.25);
  background: var(--amber-glow);
}

.tl-icon { font-size: 1.5rem; margin-bottom: 0.4rem; }
.tl-card h3 {
  font-family: var(--font-d);
  font-size: 1.05rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.4rem;
}
.tl-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }

.tl-badges {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem;
}
.tl-badges span {
  font-size: 0.68rem; font-weight: 600; padding: 0.2rem 0.55rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  color: #86efac;
  border-radius: 999px;
}

.tl-lesson {
  display: flex; gap: 0.5rem; align-items: flex-start;
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-sm);
  font-size: 0.825rem; color: var(--text-2); line-height: 1.55;
}
.lesson-dot { flex-shrink: 0; margin-top: 0.1rem; }


/* ════════════════════════════════════
   ÉTAPES
═══════════════════════════════════ */
.etapes-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.etapes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}
.etape-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.3s var(--ease);
  position: relative;
}
.etape-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.etape-num {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.68rem; font-weight: 800;
  color: var(--text-dim); letter-spacing: 0.08em;
}
.etape-ico { font-size: 2rem; margin-bottom: 0.75rem; }
.etape-card h3 {
  font-family: var(--font-d); font-size: 0.95rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.4rem;
}
.etape-card p { font-size: 0.82rem; color: var(--text-2); line-height: 1.55; }


/* ════════════════════════════════════
   RÉSULTATS
═══════════════════════════════════ */
.resultats-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg);
}
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.temo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
}
.temo-card--highlight {
  border-color: rgba(250,204,21,0.2);
  background: linear-gradient(160deg, var(--bg-card) 60%, rgba(250,204,21,0.04));
}
.temo-highlight-tag {
  position: absolute; top: -10px; left: 1.25rem;
  padding: 0.22rem 0.7rem;
  background: var(--amber);
  color: #1a1200; font-size: 0.65rem; font-weight: 800;
  border-radius: 999px; text-transform: uppercase; letter-spacing: 0.06em;
}
.temo-stars { color: var(--amber); letter-spacing: 2px; font-size: 0.85rem; }
.temo-text { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; flex: 1; font-style: italic; }
.temo-footer { display: flex; align-items: center; gap: 0.75rem; }
.temo-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue-glow);
  border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800;
  color: var(--copper);
  flex-shrink: 0;
}
.temo-avatar--gold {
  background: var(--amber-glow);
  border-color: rgba(250,204,21,0.25);
  color: var(--amber);
}
.temo-info strong { display: block; font-size: 0.875rem; color: var(--text); }
.temo-info span { font-size: 0.75rem; color: var(--text-2); }

.proof-bar {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden; flex-wrap: wrap;
}
.proof-block { flex: 1; min-width: 160px; padding: 1.5rem; text-align: center; }
.proof-sep { width: 1px; height: 40px; background: var(--border-2); flex-shrink: 0; }
.proof-num {
  display: block;
  font-family: var(--font-d); font-size: 1.85rem; font-weight: 800;
  color: var(--copper); letter-spacing: -0.03em;
}
.proof-desc { font-size: 0.78rem; color: var(--text-2); }


/* ════════════════════════════════════
   OFFRES
═══════════════════════════════════ */
.offres-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.offres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 2rem;
}
.offre-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  position: relative;
  transition: box-shadow 0.3s;
}
.offre-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.25); }

.offre-card--premium {
  background: linear-gradient(160deg, #0a0e1a 0%, #0c1220 100%);
  border-color: rgba(250,204,21,0.2);
}
.offre-card--premium:hover {
  border-color: rgba(250,204,21,0.35);
  box-shadow: 0 16px 48px rgba(250,204,21,0.08);
}

.offre-badge-popular {
  position: absolute; top: -11px; right: 1.5rem;
  padding: 0.25rem 0.75rem;
  background: var(--copper);
  color: var(--white);
  font-size: 0.65rem; font-weight: 800;
  border-radius: 999px; text-transform: uppercase; letter-spacing: 0.06em;
}
.offre-badge-premium {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: var(--amber-glow);
  border: 1px solid rgba(250,204,21,0.2);
  color: var(--amber);
  font-size: 0.72rem; font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.06em;
  max-width: fit-content;
}

.offre-top { display: flex; flex-direction: column; gap: 0.4rem; }
.offre-plan {
  font-family: var(--font-d); font-size: 1rem; font-weight: 700; color: var(--text);
}
.offre-price {
  font-family: var(--font-d); font-size: 2rem; font-weight: 800;
  color: var(--text); line-height: 1; letter-spacing: -0.04em;
}
.offre-price em { font-size: 0.45em; color: var(--text-2); font-style: normal; }
.offre-card--premium .offre-price { color: var(--amber); }
.offre-pitch { font-size: 0.85rem; color: var(--text-2); }

.offre-feats { display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.offre-feats li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.85rem; color: var(--text-2); line-height: 1.4;
}
.feat-check { color: #22c55e; flex-shrink: 0; margin-top: 0.05rem; font-weight: 700; }
.feat-check--gold { color: var(--amber); }
.offre-feats li strong { color: var(--text); font-weight: 600; }

.premium-note {
  text-align: center; font-size: 0.75rem; color: var(--text-dim);
}

.payment-row {
  display: flex; justify-content: center; align-items: center;
  gap: 0.6rem; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--text-2);
}
.payment-label { font-weight: 600; }
.pay-badge {
  padding: 0.28rem 0.7rem;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; color: var(--text);
}


/* ════════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-blue); }
.faq-trigger {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-d); font-size: 0.95rem; font-weight: 600;
  color: var(--text); text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--copper); }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1.5px solid var(--border-2);
  border-radius: 50%;
  position: relative; transition: border-color 0.2s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-2);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.faq-icon::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .faq-icon { border-color: var(--copper); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-body p { padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: var(--text-2); line-height: 1.7; }


/* ════════════════════════════════════
   CTA FINAL
═══════════════════════════════════ */
.cta-final {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: linear-gradient(160deg, #060810 0%, var(--bg) 40%, #060d1a 100%);
  text-align: center;
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

.cta-journey {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.cta-arrow { font-size: 1.5rem; color: var(--copper); }

.cta-h2 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.08; letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.cta-h2 em { color: var(--copper); font-style: normal; }
.cta-p { font-size: 1.1rem; color: var(--text-2); margin-bottom: 2.5rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }


/* ════════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.footer-top {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-d); font-size: 1.5rem; font-weight: 800;
  color: var(--text); letter-spacing: -0.03em;
}
.footer-logo em { color: var(--copper); font-style: normal; }
.footer-tagline { font-size: 0.875rem; color: var(--text-2); }

.footer-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-title {
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 0.25rem;
}
.footer-col a { font-size: 0.875rem; color: var(--text-2); transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-dim); }


/* ════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .offres-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
    gap: 2.5rem;
  }
  .journey-strip { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-chips { align-items: center; }
  .hero-visual { order: -1; }
  .photo-wrap { padding: 1rem; }

  .diagnostic-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .diagnostic-left .section-h2,
  .diagnostic-left .section-p { text-align: center; }
  .diag-promises { align-items: center; }

  .timeline {
    padding-left: 0;
    max-width: 560px;
  }
  .timeline-item { grid-template-columns: 60px 14px 1fr; gap: 0 0.75rem; }
  .tl-date { font-size: 0.65rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .trust-bar-inner { gap: 0; }
  .trust-div { display: none; }
  .trust-stat { min-width: 50%; padding: 1rem; }

  .form-options { grid-template-columns: 1fr 1fr; }
  .etapes-grid { grid-template-columns: 1fr 1fr; }

  .proof-bar { flex-direction: column; }
  .proof-sep { width: 80%; height: 1px; }
}

@media (max-width: 540px) {
  .journey-strip { font-size: 0.7rem; gap: 0.3rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .form-nav { flex-direction: column; }
  .form-nav .btn { width: 100%; }
  .etapes-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 50px 12px 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}