/* ═══════════════════════════════════════════════════════════
   Orkestro HR — style.css
   Charte identique au site live (orkestro-hr.com)
   ─────────────────────────────────────────────────────────
   1. Tokens & reset
   2. Typographie
   3. Layout & boutons
   4. Nav
   5. Hero
   6. Stats bar
   7. Sections communes
   8. Pain / Problem
   9. Solution (steps)
   10. Differentiateur
   11. Cibles (personas)
   12. FAQ
   13. Waitlist form
   14. Alertes
   15. Footer
   16. Mock UI (aperçu rapport)
   17. Animations
   18. Responsive
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Tokens ───────────────────────────────────────────── */
:root {
  --ivory:        #F7F5F0;
  --ivory-dark:   #EEEAE2;
  --ivory-border: rgba(26, 26, 46, 0.08);
  --violet:       #7C3AED;
  --violet-light: #EDE9FF;
  --violet-mid:   #A78BFA;
  --violet-dark:  #5B21B6;
  --slate:        #1A1A2E;
  --slate-mid:    #2D2D4E;
  --text:         #1A1A2E;
  --text-muted:   #6B6B8A;
  --white:        #FFFFFF;
  --warn:         #D97706;
  --green:        #16A34A;
  --green-light:  #DCFCE7;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 2px 8px rgba(124,58,237,0.08);
  --shadow-md:  0 8px 32px rgba(124,58,237,0.12);
  --shadow-lg:  0 20px 56px rgba(124,58,237,0.16);

  --transition: 0.2s ease;
}

/* ── 2. Reset & base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Clash Display', 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

a { color: var(--violet); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--violet-dark); }

/* Label monospace au-dessus des sections */
.label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  display: block;
  margin-bottom: 0.9rem;
}

/* ── 3. Layout & boutons ─────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--violet);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  box-shadow: 0 4px 20px rgba(124,58,237,0.3);
}
.btn-primary:hover {
  background: var(--violet-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.4);
  color: var(--white);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--violet);
  padding: 0.75rem 1.25rem;
  border: 1.5px solid rgba(124,58,237,0.25);
}
.btn-ghost:hover {
  background: var(--violet-light);
  border-color: var(--violet);
  color: var(--violet);
}

.btn-outline {
  background: var(--white);
  color: var(--text-muted);
  padding: 0.75rem 1.25rem;
  border: 1.5px solid var(--ivory-border);
}
.btn-outline:hover {
  background: var(--ivory-dark);
  color: var(--text);
}

.btn-sm  { padding: 0.55rem 1.1rem; font-size: 0.82rem; }
.btn-lg  { font-size: 1.05rem; padding: 1rem 2rem; box-shadow: 0 6px 28px rgba(124,58,237,0.38); }
.btn-lg:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(124,58,237,0.48); }
.btn-full { width: 100%; justify-content: center; }

/* ── 4. NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(247,245,240,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-color: var(--ivory-border);
  box-shadow: 0 2px 16px rgba(26,26,46,0.06);
}

.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 32px; width: auto; display: block; }

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

.nav-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.63rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--violet); background: var(--violet-light);
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid rgba(124,58,237,0.18);
}

.nav-lang {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 5px 10px;
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-lang:hover { color: var(--violet); border-color: rgba(124,58,237,0.3); background: var(--violet-light); }

/* ── 5. HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 9rem 2rem 5rem;
  position: relative; overflow: hidden;
}

/* Grid background */
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* Blobs — circular, blurred, animated */
.blob-1, .blob-2, .blob-3 {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.18;
  will-change: transform;
}
.blob-1 {
  width: 640px; height: 640px; background: var(--violet);
  top: -200px; right: -160px;
  animation: float1 16s ease-in-out infinite;
}
.blob-2 {
  width: 440px; height: 440px; background: var(--violet-mid);
  bottom: -100px; left: -140px;
  animation: float2 20s ease-in-out infinite;
}
.blob-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--violet-mid), var(--violet));
  top: 40%; left: 38%; opacity: 0.08;
  animation: float1 24s 4s ease-in-out infinite;
}

/* Two-column layout */
.hero-inner {
  position: relative; z-index: 1; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left: text content */
.hero-content { max-width: 560px; }

/* Pill eyebrow badge */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--violet);
  background: var(--violet-light);
  border: 1px solid rgba(124,58,237,0.22);
  border-radius: 20px; padding: 5px 14px;
  margin-bottom: 1.75rem;
  opacity: 0; animation: fadeUp 0.6s 0.1s forwards;
}
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet); flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

/* H1 */
.hero-content h1 {
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  color: var(--slate); margin-bottom: 1.5rem; line-height: 1.1;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}
.hero-content h1 em {
  font-style: normal; color: var(--violet); position: relative;
}
.hero-content h1 em::after {
  content: '';
  position: absolute; bottom: 3px; left: 0; right: 0;
  height: 3px; border-radius: 2px;
  background: var(--violet); opacity: 0.22;
}
.hero-sub-head {
  display: block;
  color: var(--text-muted); font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  letter-spacing: -0.02em;
}

/* Description */
.hero-desc {
  font-size: 1rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.78; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.7s 0.32s forwards;
}

/* CTA group */
.hero-cta-group {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.44s forwards;
}
.hero-cta-note {
  font-size: 0.78rem; color: var(--text-muted); font-weight: 300;
}

/* Right: mock card visual */
.hero-visual {
  position: relative;
  opacity: 0; animation: fadeUp 0.9s 0.35s forwards;
}
.hero-visual .mock-card { max-width: 100%; }
.hero-visual .mock-badge { right: -0.5rem; bottom: 1.25rem; }

/* ── 6. Stats bar ────────────────────────────────────────── */
.stats-bar {
  background: var(--slate);
  padding: 2.5rem 0;
}
.stats-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 0.75rem 3rem;
}
.stat-item strong {
  font-family: 'Clash Display', 'DM Sans', sans-serif;
  font-size: 2rem; font-weight: 700; letter-spacing: -0.03em;
  color: var(--violet-mid);
}
.stat-item span {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  font-weight: 300; text-align: center;
}
.stat-sep {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ── 7. Section header ───────────────────────────────────── */
.section-header { max-width: 580px; margin-bottom: 3.5rem; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--slate); margin-bottom: 1rem;
}
.section-header p {
  font-size: 1rem; color: var(--text-muted);
  font-weight: 300; line-height: 1.7;
}
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Eyebrow label above section titles */
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--violet); display: block; margin-bottom: 0.85rem;
}
.section-eyebrow.light { color: var(--violet-mid); }

/* Section h2 default */
section h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--slate); margin-bottom: 1rem; line-height: 1.12;
}
section > .container > p,
.pain > .container > p,
.solution > .container > p {
  font-size: 1rem; color: var(--text-muted); font-weight: 300; line-height: 1.7;
}

/* FAQ layout */
.faq-inner { max-width: 720px; margin: 0 auto; }

/* ── 8. Pain / Problem ───────────────────────────────────── */
.pain { background: var(--white); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pain-card {
  background: var(--ivory);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pain-icon {
  width: 48px; height: 48px;
  background: var(--violet-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.pain-card h3 { font-size: 1rem; font-weight: 600; color: var(--slate); margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.pain-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ── 9. Solution (steps) ─────────────────────────────────── */
.solution { background: var(--ivory); }

.steps-list { display: flex; flex-direction: column; gap: 4rem; }

.step {
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.step-reverse { direction: rtl; }
.step-reverse > * { direction: ltr; }

.step-number {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--violet);
  background: var(--violet-light);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-sm);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-content h3 { font-size: 1.25rem; color: var(--slate); margin-bottom: 0.75rem; }
.step-content p { font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.75; }

/* Mini mock dans les steps */
.step-mock {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.step-mock-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1rem;
}
.step-mock-field {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--ivory-border);
  font-size: 0.82rem;
}
.step-mock-field:last-child { border-bottom: none; }
.step-mock-field span { color: var(--text-muted); font-weight: 300; }
.step-mock-field strong { color: var(--slate); font-weight: 500; }
.mock-status {
  font-size: 0.75rem; color: var(--green);
  font-weight: 500;
}

.step-mock-q {
  font-size: 0.82rem; font-weight: 500; color: var(--slate);
  margin-bottom: 0.75rem;
}
.step-mock-answer-bar {
  height: 6px; background: var(--violet-light);
  border-radius: 3px; width: 100%; margin-bottom: 6px;
}
.step-mock-tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.step-mock-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem; padding: 3px 10px;
  background: var(--violet-light);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 20px; color: var(--violet);
}

.step-mock-section-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.6rem;
}
.step-mock-bar-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.step-mock-bar { height: 6px; border-radius: 3px; }
.step-mock-bar-row span { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--text-muted); }

/* ── 10. Différenciateur ─────────────────────────────────── */
.diff {
  background: linear-gradient(140deg, var(--slate) 0%, var(--slate-mid) 100%);
}
.diff .label { color: var(--violet-mid); }

.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.diff-text h2 { color: var(--white); }
.diff-text > p { color: rgba(255,255,255,0.55); font-size: 0.95rem; font-weight: 300; line-height: 1.75; margin-bottom: 1.5rem; }

.diff-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.diff-list li {
  display: flex; align-items: flex-start; gap: 0.9rem;
  font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 300; line-height: 1.6;
}
.diff-check {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  border-radius: 6px;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.35);
  display: flex; align-items: center; justify-content: center;
}

/* Carte prospect dans le diff */
.diff-card-wrap { position: relative; }
.diff-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}
.diff-card-shadow {
  position: absolute; inset: 16px; bottom: -16px; left: 16px; right: 16px;
  background: rgba(124,58,237,0.2);
  border-radius: var(--radius-xl);
  filter: blur(20px); z-index: -1;
}
.diff-card-top {
  display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.25rem;
}
.diff-card-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-mid), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: white; flex-shrink: 0;
}
.diff-card-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.diff-card-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 300; }
.diff-card-badge {
  margin-left: auto;
  font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(124,58,237,0.3); color: var(--violet-mid);
  border: 1px solid rgba(124,58,237,0.3);
  padding: 3px 10px; border-radius: 20px;
}
.diff-card-rows { display: flex; flex-direction: column; gap: 0.75rem; }
.diff-row { display: flex; justify-content: space-between; align-items: center; }
.diff-row-label { font-size: 0.78rem; color: rgba(255,255,255,0.38); font-weight: 300; }
.diff-row-val { font-size: 0.82rem; color: rgba(255,255,255,0.72); font-weight: 400; }
.diff-row-val.highlight,
.highlight-val { color: var(--violet-mid); font-weight: 500; }
.diff-card-footer {
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem; color: var(--violet-mid);
}

/* ── 11. Cibles (personas) ───────────────────────────────── */
.targets { background: var(--white); }

.targets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.target-card {
  background: var(--ivory);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  text-decoration: none; color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.target-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: rgba(124,58,237,0.2);
  color: var(--text); text-decoration: none;
}
.target-icon {
  width: 48px; height: 48px;
  background: var(--violet-light); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.target-card h3 { font-size: 1rem; font-weight: 600; color: var(--slate); }
.target-card p { font-size: 0.875rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; flex: 1; }
.target-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--violet);
}

/* ── 12. FAQ ─────────────────────────────────────────────── */
.faq { background: var(--ivory); }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600; font-size: 0.95rem; color: var(--slate);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
  transition: background var(--transition);
}
.faq-item summary:hover { background: var(--ivory); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.2rem; color: var(--violet);
  transition: transform var(--transition); flex-shrink: 0;
  font-family: 'DM Sans', sans-serif; font-weight: 300;
}
.faq-item[open] summary::after { content: '−'; }

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.75; font-weight: 300;
}

/* ── 13. Waitlist form ───────────────────────────────────── */
.waitlist {
  background: linear-gradient(140deg, var(--slate) 0%, var(--slate-mid) 100%);
  text-align: center;
}
.waitlist .label { color: var(--violet-mid); }

.waitlist-inner { max-width: 520px; margin: 0 auto; }

.waitlist h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); margin-bottom: 1rem;
}
.waitlist-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.48);
  font-weight: 300; line-height: 1.7; margin-bottom: 2.5rem;
}

.waitlist-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: left;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.6);
  letter-spacing: 0.01em;
}
.form-group label span { color: rgba(255,255,255,0.3); }

.form-group input,
.form-group select {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input::placeholder { color: rgba(255,255,255,0.25); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--slate); color: var(--white); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--violet-mid);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.18);
}

.form-submit { margin-top: 1.5rem; }
.form-submit .btn-lg { font-size: 1rem; }

.form-note {
  text-align: center; margin-top: 1rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
}

/* ── 14. Alertes ─────────────────────────────────────────── */
.alert {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem; line-height: 1.6;
  margin-bottom: 1.5rem;
}
.alert-success {
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.25);
  color: #86EFAC;
}
.alert-error {
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.25);
  color: #FCA5A5;
}
.alert a { color: inherit; text-decoration: underline; }

/* ── 15. Footer ──────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--ivory-border);
  padding: 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.25rem;
  background: var(--ivory);
}
.footer-logo { text-decoration: none; display: flex; align-items: center; }
.footer-logo img { height: 26px; width: auto; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--violet); }
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

/* ── 16. Mock card (aperçu rapport héro) ─────────────────── */
.mock-card {
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 380px; margin: 0 auto;
}
.mock-card-header {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: var(--ivory-dark);
  border-bottom: 1px solid var(--ivory-border);
}
.mock-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mock-dot.red    { background: #FF5F57; }
.mock-dot.amber  { background: #FEBC2E; }
.mock-dot.green  { background: #28C840; }
.mock-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; color: var(--text-muted); margin-left: 4px;
}
.mock-card-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.mock-section { display: flex; flex-direction: column; gap: 6px; }
.mock-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}
.mock-text-line {
  height: 8px; border-radius: 4px;
  background: var(--ivory-dark);
}
.mock-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mock-tag {
  font-family: 'DM Mono', monospace; font-size: 0.65rem;
  padding: 3px 8px; border-radius: 20px; font-weight: 500;
}
.mock-tag.green  { background: var(--green-light); color: #166534; }
.mock-tag.amber  { background: #FEF3C7; color: #92400E; }
.mock-tag        { background: var(--ivory-dark); color: var(--text-muted); }

.mock-referee {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--ivory-border);
}
.mock-referee:last-of-type { border-bottom: none; }
.mock-avatar {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 600; color: white;
}
.mock-ref-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mock-ref-name, .mock-ref-sub {
  height: 7px; border-radius: 4px; background: var(--ivory-dark);
}
.mock-ref-name { width: 80%; }
.mock-ref-sub  { width: 50%; }
.mock-check { font-size: 0.72rem; color: var(--green); font-weight: 600; flex-shrink: 0; }

.mock-btn {
  width: 100%; padding: 0.6rem;
  background: var(--violet-light);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500;
  color: var(--violet); cursor: pointer;
  transition: background var(--transition);
}
.mock-btn:hover { background: rgba(124,58,237,0.15); }

.mock-badge {
  position: absolute;
  bottom: 1.5rem; right: -1rem;
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--ivory-border);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
  box-shadow: var(--shadow-md);
}
.mock-badge strong { font-size: 0.8rem; display: block; color: var(--slate); }
.mock-badge span   { font-size: 0.72rem; color: var(--text-muted); font-weight: 300; }

.hero-visual-wrap {
  position: relative; display: inline-block;
}

/* ── 17. Animations ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-28px,28px) scale(1.06); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(22px,-22px) scale(0.94); }
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.75); }
}

.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── 18. Responsive ──────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner     { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-content   { max-width: 100%; }
  .hero-content h1 { text-align: center; }
  .hero-desc      { text-align: center; }
  .hero-cta-group { justify-content: center; }
  .hero-visual    { display: none; }
  .pain-grid      { grid-template-columns: 1fr 1fr; }
  .targets-grid   { grid-template-columns: 1fr 1fr; }
  .diff-inner     { grid-template-columns: 1fr; gap: 3rem; }
  .diff-card-wrap { display: none; }
  .step           { grid-template-columns: 36px 1fr; }
  .step-reverse   { direction: ltr; }
  .step .step-visual  { display: none; }
}

@media (max-width: 768px) {
  .nav { padding: 0.9rem 1.25rem; }
  .nav-tag { display: none; }
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .hero { padding: 8rem 1.25rem 5rem; }
  .stats-bar-inner { flex-direction: column; gap: 0; }
  .stat-sep { width: 80px; height: 1px; }
  .stat-item { padding: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .waitlist-form { padding: 1.75rem 1.25rem; }
}

@media (max-width: 540px) {
  h1 { font-size: 2.4rem; }
  .pain-grid    { grid-template-columns: 1fr; }
  .targets-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.25rem; }
  .footer-links { justify-content: center; }
}

/* Utilitaires */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
