/* ============================================================
   apk-shared.css - CSS partage APK Capital
   = chrome (nav/footer/base) + design system V3 (.v3-*)
   Reconstitue depuis le CSS de la homepage (le apk-shared.css
   de Claude design n'a pas ete fourni).
   ============================================================ */


/* ---- module: _variables ---- */

/* ============================================
   APK CAPITAL — PROJET DAF CLAUDE WEBSITE 1
   Full Blueprint Implementation
   Clean, conversion-first, liquid glass
   ============================================ */

:root {
  --font-primary: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  --font-data: 'JetBrains Mono', monospace;
  --font-editorial: 'Playfair Display', serif;

  --bg-dark: #FAFAF8;
  --surface-base: #FFFFFF;
  --bg-card: #F4F5F7;

  --border-subtle: rgba(42, 46, 75, 0.08);
  --border-hover: rgba(42, 46, 75, 0.25);

  --text-pure: #1A1F2E;
  --text-primary: #2A2E4B;
  --text-secondary: #4A5366;
  --text-tertiary: #8B91A1;

  --accent-gold: #D4AF37;
  --accent-blue: #6B7FA3;
  --metric-positive: #22A06B;
  --metric-negative: #E5484D;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-xxl: 8rem;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(42, 46, 75, 0.2); border-radius: 10px; }



/* ---- module: _typography ---- */

/* ============ Typography ============ */
.font-primary { font-family: var(--font-primary); }
.font-data { font-family: var(--font-data); }
.font-editorial { font-family: var(--font-editorial); }
.text-white { color: var(--text-pure); }
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-tertiary { color: var(--text-tertiary); }
.text-bold { font-weight: 700; }
.text-italic { font-style: italic; }
.font-light { font-weight: 300; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-xxl { font-size: 2.25rem; }
.text-xxxl { font-size: 3rem; }
@media (min-width: 768px) { .text-xxl { font-size: 3rem; } .text-xxxl { font-size: 4.5rem; } }
@media (min-width: 1024px) { .text-xxxl { font-size: 6rem; } }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.leading-relaxed { line-height: 1.75; }
.leading-tight { line-height: 1.15; }



/* ---- module: _layout ---- */

/* ============ Layout ============ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.container-narrow { width: 100%; max-width: 800px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 640px; }
.max-w-md { max-width: 480px; }
.max-w-xs { max-width: 320px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.block { display: block; }
.inline-block { display: inline-block; }
.w-full { width: 100%; }
.flex-grow { flex: 1; }

/* Spacing */
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-xxl { margin-top: var(--space-xxl); }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-xxl { margin-bottom: var(--space-xxl); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }
.px-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.py-xs { padding-top: var(--space-xs); padding-bottom: var(--space-xs); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-xxl { padding-top: var(--space-xxl); padding-bottom: var(--space-xxl); }
.pt-lg { padding-top: var(--space-lg); }

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-align { display: flex; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-xl { gap: var(--space-xl); }
.justify-center { justify-content: center; }

/* Grid */
.grid-2-col { display: grid; grid-template-columns: repeat(2, 1fr); }
.grid-3-col { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid-4-col { display: grid; grid-template-columns: repeat(4, 1fr); }
.grid-1-to-4 { display: grid; grid-template-columns: repeat(4, 1fr); }

/* Background */
.bg-dark { background: var(--bg-dark); }
.bg-surface {
  background: linear-gradient(175deg, #0f1114 0%, #141418 30%, #12131a 60%, #111114 100%);
  position: relative;
}
.bg-surface::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(246,197,71,0.04) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 20%, rgba(147,130,255,0.03) 0%, transparent 45%),
              radial-gradient(ellipse at 60% 90%, rgba(96,165,250,0.025) 0%, transparent 50%);
  pointer-events: none;
}
.bg-black { background: linear-gradient(180deg, #050507 0%, #000 40%, #020204 100%); }
.bg-white { background: white; }
.border-y { border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.border-subtle { border: 1px solid var(--border-subtle); }
.border-t-subtle { border-top: 1px solid var(--border-subtle); }

/* ============ Sections ============ */
.section-header { margin-bottom: var(--space-xl); }

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.scroll-reveal.d-1 { transition-delay: 0.15s; }
.scroll-reveal.d-2 { transition-delay: 0.3s; }
.scroll-reveal.d-3 { transition-delay: 0.45s; }
.scroll-reveal.d-4 { transition-delay: 0.6s; }

/* ============ Split Layout ============ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split-layout.reversed { direction: rtl; }
.split-layout.reversed > * { direction: ltr; }
@media (max-width: 1023px) {
  .split-layout { grid-template-columns: 1fr; }
  .split-layout.reversed { direction: ltr; }
}

/* ============ Image Background Sections ============ */
.section-with-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.92);
  z-index: 0;
}
.section-with-bg > * {
  position: relative;
  z-index: 1;
}
/* Suppress decorative orbs when background image is used */
.section-with-bg.page-hero::after { display: none; }
.section-with-bg.bg-surface::after { display: none; }



/* ---- module: _components ---- */

/* ============ Liquid Glass ============ */
.liquid-glass {
  background: rgba(0, 0, 0, 0.4);
  background-blend-mode: luminosity;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-panel:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
}
.btn-solid {
  background: white;
  color: black;
}
.btn-solid:hover { background: #e5e5e5; transform: translateY(-1px); }

.btn-outline {
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.05); }

.btn-glass-hero {
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}
.btn-glass-hero:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); }

.btn-primary {
  background: white;
  color: black;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  min-height: 44px;
}
.btn-primary:hover { background: #e5e5e5; }

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  font-weight: 500;
  min-height: 44px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

.btn-large { padding: 1rem 2rem; font-size: 0.9rem; }
.btn i, .btn svg { width: 16px; height: 16px; }
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xs { width: 14px; height: 14px; }

/* Double CTA Pattern (Bloc 5) */
.dual-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.dual-cta .btn-cta-primary {
  background: white;
  color: black;
  padding: 0.9rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dual-cta .btn-cta-primary:hover { background: #e5e5e5; transform: translateY(-1px); }
.dual-cta .btn-cta-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.9rem 1.75rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dual-cta .btn-cta-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

/* ============ Form Styles ============ */
.form-container { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--text-secondary); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface-base);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: rgba(255,255,255,0.4); }
.form-input.error, .form-textarea.error, .form-select.error { border-color: #ef4444; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a1a1aa' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; }
.step-dots { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.step-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); transition: all 0.3s; }
.step-dot.active { background: white; transform: scale(1.2); }
.step-line { width: 40px; height: 2px; background: rgba(255,255,255,0.1); transition: background 0.3s; }
.step-line.active { background: rgba(255,255,255,0.4); }
.form-nav { display: flex; gap: 1rem; margin-top: 2rem; }
.form-nav .btn { flex: 1; justify-content: center; }
.success-msg { display: none; text-align: center; padding: 3rem 2rem; }
.success-msg.show { display: block; }

/* ============ Form grid responsive (Axe 3 P0.1) ============ */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}

/* ============ Mobile Sticky CTA (Axe 3 P0.3) ============ */
/* Barre flottante en bas d'écran sur mobile : visible après le hero,
   masquée sur les pages où l'utilisateur est déjà en conversion (audit, contact, outils). */
.mobile-sticky-cta {
  display: none;
}
@media (max-width: 767px) {
  .mobile-sticky-cta {
    display: inline-flex;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 80;
    background: white;
    color: black;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.25);
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none;
    min-height: 52px;
  }
  .mobile-sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-sticky-cta i, .mobile-sticky-cta svg {
    width: 16px;
    height: 16px;
  }
  /* Quand le sticky est visible, on remonte le back-to-top pour qu'ils ne se superposent pas */
  .mobile-sticky-cta.visible ~ .back-to-top { bottom: 5.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-sticky-cta { transition: opacity 0.2s ease; transform: none; }
}

/* Trust grid */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 640px; margin: 3rem auto 0; }
.trust-item { text-align: center; padding: 1.5rem 1rem; }
.trust-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }

/* ============ Testimonials ============ */
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
}
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-text {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.05rem;
  color: white;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: white; }
.testimonial-role { font-family: var(--font-data); font-size: 0.7rem; color: var(--text-secondary); }
.testimonial-result {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-data);
  font-size: 0.75rem;
  color: var(--accent-blue);
}

/* ============ Alert Box ============ */
.alert-box {
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.alert-loss {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #FCA5A5;
}
.alert-success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--accent-blue);
}
.alert-info {
  background: rgba(246,197,71,0.08);
  border: 1px solid rgba(246,197,71,0.2);
  color: var(--accent-gold);
}

/* ============ ENHANCED VISUAL DESIGN ============ */

/* Page Hero — gradient backgrounds with decorative orbs */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(246,197,71,0.09) 0%, rgba(246,197,71,0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(96,165,250,0.07) 0%, rgba(96,165,250,0.02) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }

/* Sections — richer backgrounds */
.bg-surface::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 0%, rgba(147,130,255,0.04) 0%, transparent 55%),
              radial-gradient(ellipse at 0% 100%, rgba(246,197,71,0.02) 0%, transparent 50%);
  pointer-events: none;
}

.bg-dark {
  position: relative;
  overflow: hidden;
}
/* Subtle ambient glow on bg-dark sections */
.bg-dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 20%, rgba(96,165,250,0.025) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(246,197,71,0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.bg-dark > * { position: relative; z-index: 1; }

/* Enhanced CTA sections */
.bg-black {
  position: relative;
  overflow: hidden;
}
.bg-black::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(246,197,71,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.bg-black > * { position: relative; z-index: 1; }

/* Section dividers — gradient accent lines */
.border-y {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Enhanced glass panels — colored glow on hover */
.glass-panel {
  position: relative;
  overflow: hidden;
}
.glass-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}
.glass-panel:hover::before {
  opacity: 1;
}

/* Glass cards — subtle gradient border on hover */
.glass-card {
  position: relative;
  overflow: hidden;
}
.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent, rgba(255,255,255,0.06));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.glass-card:hover::after { opacity: 1; }

/* Feature metric cards — glow effect */
.feature-metric-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-metric-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}
.feature-metric-card:hover::before { opacity: 1; }

/* Integration cards — colored bottom accent */
.integration-card {
  position: relative;
  overflow: hidden;
}
.integration-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to right, transparent, rgba(96,165,250,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.integration-card:hover::after { opacity: 1; }

/* Pricing cards — enhanced visuals */
.pricing-card-dark {
  position: relative;
  overflow: hidden;
}
.pricing-card-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}
.pricing-card-highlight {
  position: relative;
}
.pricing-card-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 16px 16px 0 0;
}

/* Testimonial cards — accent border */
.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}

/* Tool input focus glow */
.tool-input:focus, .form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(246,197,71,0.4);
  box-shadow: 0 0 0 3px rgba(246,197,71,0.06);
}

/* Tool result boxes — accent glow */
.tool-result-box {
  position: relative;
  overflow: hidden;
}
.tool-result-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(96,165,250,0.3), transparent);
}

/* Quiz options — enhanced selection */
.quiz-option.selected {
  border-color: var(--accent-gold);
  background: rgba(246,197,71,0.06);
  box-shadow: 0 0 0 2px rgba(246,197,71,0.1);
}

/* Score gauge — gradient border */
.score-gauge {
  border-color: transparent;
  background: conic-gradient(from 180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.15), rgba(255,255,255,0.05), rgba(255,255,255,0.15)) padding-box,
              conic-gradient(from 180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3), rgba(255,255,255,0.1), rgba(255,255,255,0.3)) border-box;
}

/* Section headers — clean, no decorative underline */

/* Buttons — enhanced with subtle glow */
.btn-solid:hover {
  box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(255,255,255,0.12);
}

/* CTA sections — dramatic gradient */
.bg-black {
  position: relative;
  overflow: hidden;
}
.bg-black::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(246,197,71,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Footer — gradient top border */
.footer {
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(246,197,71,0.15), rgba(96,165,250,0.15), transparent);
}

/* Trust items — hover glow */
.trust-item {
  border-radius: 12px;
  transition: all 0.3s;
}
.trust-item:hover {
  background: rgba(255,255,255,0.03);
}
.trust-icon {
  transition: all 0.3s;
}
.trust-item:hover .trust-icon {
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 20px rgba(246,197,71,0.08);
}

/* Comparison table — highlight column glow */
.comparison-table thead th.highlight {
  position: relative;
}
.comparison-table thead th.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}
.comparison-table tbody td.highlight {
  background: rgba(246,197,71,0.03);
}

/* Persona pain points — enhanced */
.persona-pain {
  border-left-color: transparent;
  border-image: linear-gradient(to bottom, var(--metric-negative), transparent) 1;
  border-image-slice: 1;
  background: linear-gradient(to right, rgba(239,68,68,0.04), transparent);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

/* Alert boxes — enhanced with icon glow */
.alert-loss { box-shadow: inset 0 0 30px rgba(239,68,68,0.03); }
.alert-success { box-shadow: inset 0 0 30px rgba(34,197,94,0.03); }
.alert-info { box-shadow: inset 0 0 30px rgba(246,197,71,0.03); }

/* Legal content — better styling */
.legal-content h3 {
  position: relative;
  padding-left: 1rem;
}
.legal-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

/* Onboarding steps — better visual */
.onboarding-step-number {
  box-shadow: 0 8px 20px rgba(255,255,255,0.1);
}

/* Animated gradient line — reusable decorative */
.section-header .font-data {
  position: relative;
}

/* FAQ — enhanced */
.faq-question:hover {
  padding-left: 0.5rem;
}
.faq-item.open {
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  padding: 0 1rem;
  margin: 0 -1rem;
}

/* Hover lift for all interactive cards */
@media (hover: hover) {
  .glass-panel:hover,
  .glass-card:hover,
  .integration-card:hover,
  .testimonial-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(246,197,71,0.03);
  }
}

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

/* ============ Enhanced Hover Glow ============ */
.glass-panel:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 60px rgba(246,197,71,0.04);
  border-color: rgba(255,255,255,0.15);
}

/* ============ Dashboard Mockup Component ============ */
.dashboard-mockup {
  background: #0d0d12;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px -20px rgba(15,23,42,0.18);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.mockup-title {
  font-family: var(--font-data);
  font-size: 0.7rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: auto;
}
.mockup-body {
  padding: 20px;
}
.mockup-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-data);
  font-size: 0.75rem;
}
.mockup-table th {
  text-align: left;
  padding: 8px 12px;
  color: var(--text-tertiary);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.65rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-table td {
  padding: 10px 12px;
  color: #C8CAD2;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mockup-table tr:hover td {
  background: rgba(255,255,255,0.02);
}
.mockup-table .product-name {
  color: #F5F4F0;
  font-weight: 500;
}
.mockup-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  min-width: 60px;
}
.mockup-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s ease;
}
.bar-positive { background: var(--metric-positive); }
.bar-warning { background: var(--accent-gold); }
.bar-negative { background: var(--metric-negative); }

/* Cash Flow Chart Mockup */
.cash-chart-mockup {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 140px;
  padding: 0 8px;
}
.cash-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: height 0.4s ease;
  position: relative;
}
.cash-bar:hover::after {
  content: attr(data-label);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-data);
  font-size: 0.6rem;
  color: #F5F4F0;
  background: rgba(0,0,0,0.8);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.chart-legend {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 12px;
  font-family: var(--font-data);
  font-size: 0.65rem;
  color: var(--text-tertiary);
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}

/* Winners/Losers Mockup */
.ranking-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ranking-item:last-child { border-bottom: none; }
.ranking-rank {
  font-family: var(--font-data);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}
.ranking-info {
  flex: 1;
}
.ranking-name {
  font-size: 0.85rem;
  color: #F5F4F0;
  font-weight: 500;
}
.ranking-detail {
  font-family: var(--font-data);
  font-size: 0.7rem;
  color: var(--text-tertiary);
}
.ranking-value {
  font-family: var(--font-data);
  font-size: 0.85rem;
  font-weight: 700;
}
.ranking-bar-wrapper {
  width: 80px;
}

/* ============ Logo Marquee ============ */
.logo-marquee {
  overflow: hidden;
  padding: 2rem 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}
.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll 35s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.logo-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-family: var(--font-data);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  flex-shrink: 0;
}
.logo-item:hover {
  color: rgba(255,255,255,0.7);
}
.logo-item svg {
  width: 20px;
  height: 20px;
  opacity: 0.4;
  flex-shrink: 0;
}
.logo-item:hover svg {
  opacity: 0.7;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ Testimonial Avatars ============ */
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.avatar-gold { background: linear-gradient(135deg, #F6C547, #D4A030); }
.avatar-blue { background: linear-gradient(135deg, #60A5FA, #3B82F6); }
.avatar-blue { background: linear-gradient(135deg, #60A5FA, #3B82F6); }



/* ---- module: _navigation ---- */

/* ============ Navbar ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem clamp(1.5rem, 4vw, 2rem);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.navbar.scrolled .nav-container {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo {
  background: white;
  color: black;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}
.nav-brand-text { font-weight: 600; font-size: 1.1rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  position: relative;
}
.nav-link:hover { color: white; }

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
  z-index: 1000;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-trigger svg { width: 12px; height: 12px; transition: transform 0.3s; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 0.5rem;
  padding-top: calc(0.5rem + 12px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-item {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all 0.2s;
  font-family: var(--font-primary);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
}
.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.06);
  color: white;
}
.nav-dropdown-item small {
  display: block;
  font-size: 0.65rem;
  color: var(--text-tertiary);
  margin-top: 2px;
  font-family: var(--font-data);
}
.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  color: white;
  padding: 0.5rem;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 6.5rem 1.5rem 3rem;
}
.mobile-nav-link, .mobile-nav-sub { padding: 0.15rem 0; }
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-nav-link { font-size: 1.5rem; font-weight: 300; color: var(--text-secondary); transition: color 0.3s; }
.mobile-nav-link:hover { color: white; }
.mobile-nav-section { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-tertiary); margin-top: 1rem; }
.mobile-nav-sub { font-size: 1.1rem; font-weight: 300; color: var(--text-tertiary); transition: color 0.3s; }
.mobile-nav-sub:hover { color: white; }

/* ============ Back to Top ============ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  color: white;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: rgba(255,255,255,0.1); }
.back-to-top svg { width: 20px; height: 20px; }

/* ============ Footer ============ */
.footer {
  padding: var(--space-xl) 0;
  border-top: none;
  background: linear-gradient(180deg, #050507 0%, #000 100%);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; }
.footer-grid ul { display: flex; flex-direction: column; gap: 0.5rem; list-style: none; }
.footer-grid a { color: var(--text-secondary); font-size: 0.8rem; transition: color 0.3s; }
.footer-grid a:hover { color: white; }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding-top: var(--space-lg); }
.hover-text-white:hover { color: white; }



/* ---- module: _pages ---- */

/* ============ Hero Section ============ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 6rem);
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0a0a; /* fallback dark — pas d'image poster */
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
}
@media (min-width: 1024px) {
  .hero-content { grid-template-columns: 1fr auto; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.badge-text { font-size: 0.7rem; letter-spacing: 0.1em; }
.badge-line {
  height: 1px;
  width: 6rem;
  background: linear-gradient(to right, rgba(255,255,255,0.3), transparent);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 600;
}
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-title .char.visible { opacity: 1; transform: translateX(0); }
.hero-title .char-space { display: inline-block; width: 0.3em; }

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 540px;
  color: #d4d4d8;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-fade {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-fade.visible { opacity: 1; transform: translateY(0); }

.hero-tag-box {
  padding: 1.25rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 300;
  white-space: nowrap;
}

/* ============ Page Hero (for inner pages) ============ */
.page-hero {
  padding-top: 10rem;
  padding-bottom: var(--space-xl);
  background: linear-gradient(175deg, #0a0a0f 0%, #0e0e16 25%, #0d0d14 50%, #0b0b10 75%, #0a0a0a 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ============ Metrics Banner ============ */
.metrics-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.metric-item { text-align: center; }
.metric-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
}
.metric-label-text {
  font-family: var(--font-data);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}
.metric-divider-v {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
}

/* ============ Onboarding Steps (Bloc 9) ============ */
.onboarding-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.onboarding-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}
.onboarding-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 2;
}
.onboarding-step-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.5rem;
}
.onboarding-step-desc {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.onboarding-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
  z-index: 1;
}
.onboarding-step:last-child .onboarding-connector { display: none; }

/* Inline compact onboarding */
.onboarding-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}
.onboarding-inline-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.onboarding-inline-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.onboarding-inline-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.onboarding-inline-arrow {
  color: var(--text-tertiary);
  font-size: 0.8rem;
}

/* ============ Pricing Cards (Bloc 8) ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card-dark {
  background: rgba(20,20,20,0.8);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}
.pricing-card-dark:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}
.pricing-card-highlight {
  background: #FAFAFA;
  color: #111;
  transform: scale(1.03);
  z-index: 5;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
  border: 1px solid rgba(0,0,0,0.08);
}
.pricing-card-highlight:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.9);
}
.pricing-badge {
  display: inline-block;
  background: #111;
  color: #FAFAFA;
  font-family: var(--font-data);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.pricing-tier {
  font-family: var(--font-data);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.pricing-name {
  font-family: var(--font-editorial);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-family: var(--font-data);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}
.pricing-price small { font-size: 0.7rem; font-weight: 300; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-desc {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pricing-card-dark .pricing-features li { border-bottom-color: var(--border-subtle); }
.pricing-features li:last-child { border-bottom: none; }

/* ============ Comparison Table ============ */
.comparison-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  min-width: 700px;
}
.comparison-table thead th {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-data);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}
.comparison-table thead th.highlight { color: var(--accent-gold); }
.comparison-table tbody td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.comparison-table tbody td:first-child { color: white; font-weight: 500; }
.comparison-table tbody td.highlight { color: white; font-weight: 600; }
.comparison-table tbody tr:last-child td { border-bottom: none; }

/* ============ FAQ ============ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--accent-gold); }
.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-tertiary);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============ Feature Page Styles ============ */
.feature-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.feature-metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.feature-metric-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.feature-metric-value {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: white;
}
.feature-metric-label {
  font-family: var(--font-data);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* ============ Persona Pages ============ */
.persona-pain {
  border-left: 3px solid var(--metric-negative);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.persona-pain p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
}

/* ============ Integration Logos Grid ============ */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
}
.integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s;
  text-align: center;
  gap: 1rem;
}
.integration-card:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}
.integration-logo {
  font-family: var(--font-data);
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}
.integration-desc {
  font-size: 0.7rem;
  color: var(--text-tertiary);
}
.integration-badge {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.integration-badge-p0 { background: rgba(239,68,68,0.15); color: #FCA5A5; }
.integration-badge-p1 { background: rgba(246,197,71,0.15); color: var(--accent-gold); }
.integration-badge-p2 { background: rgba(96,165,250,0.15); color: var(--accent-blue); }

/* ============ Tools (Calculators, Quiz) ============ */
.tool-input-group {
  margin-bottom: 1.25rem;
}
.tool-label {
  display: block;
  font-family: var(--font-data);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.tool-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface-base);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-data);
  font-size: 0.9rem;
  transition: border-color 0.3s;
}
.tool-input:focus { outline: none; border-color: rgba(255,255,255,0.4); }
.tool-input::placeholder { color: var(--text-tertiary); }

.tool-result-box {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.03);
}
.tool-result-big {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}
.tool-result-label {
  font-family: var(--font-data);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* Quiz styles */
.quiz-option {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: #F5F4F0;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 0.5rem;
}
.quiz-option:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }
.quiz-option.selected { border-color: white; background: rgba(255,255,255,0.1); color: white; font-weight: 500; }

.quiz-progress {
  height: 3px;
  background: var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.quiz-progress-bar {
  height: 100%;
  background: white;
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Score gauge */
.score-gauge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 6px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 2rem;
  position: relative;
}
.score-gauge-value {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.score-gauge-label {
  font-family: var(--font-data);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9BAFCE;
}

/* ============ Blog / Resources ============ */
.article-card {
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.article-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }
.article-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-category {
  font-family: var(--font-data);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}
.article-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.article-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  flex: 1;
}
.article-meta {
  margin-top: 1rem;
  font-family: var(--font-data);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
}

/* ============ Mandat Cards (legacy compat) ============ */
.mandat-card {
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mandat-card:hover { transform: translateY(-4px); }
.mandat-list {
  list-style: none;
  padding: 0;
}
.mandat-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.8rem;
}
.mandat-list li.no-border { border-bottom: none; }



/* ---- module: _animations ---- */

/* ============================================================
   AUDIT PAGE — Split-pane checkout-style layout (LIGHT theme)
   ------------------------------------------------------------
   Page-specific. The site stays dark globally; this single
   conversion page breaks into a bright, calm canvas — same
   pattern as Stripe Checkout, Mercury sign-up, Linear pricing.

   All rules in this block are scoped under `.audit-page` so
   the rest of the site is unaffected. Nav (above) and footer
   (below) keep their dark styling — the contrast is the point.
   ============================================================ */
.audit-page-body { background: #F5F4F0; }

.audit-page {
  background:
    radial-gradient(circle at 18% 0%, rgba(24, 24, 27, 0.04) 0%, transparent 55%),
    radial-gradient(circle at 90% 90%, rgba(24, 24, 27, 0.035) 0%, transparent 50%),
    #F5F4F0;
  color: #18181B;
  min-height: calc(100vh - 80px);
  padding: 8rem 0 6rem;
  position: relative;
}
.audit-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 980px) {
  .audit-page__container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 5rem;
    align-items: start;
  }
  .audit-page__left {
    position: sticky;
    top: 7rem;
  }
}

/* ---- Document badge (replaces plain eyebrow) ---- */
.audit-page .audit-doc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
  padding: 0.4rem 0.75rem;
  background: rgba(24, 24, 27, 0.04);
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.audit-page .audit-doc-badge__code {
  color: #18181B;
  font-weight: 600;
}
.audit-page .audit-doc-badge__sep {
  color: #A1A1AA;
}
.audit-page .audit-doc-badge__label {
  color: #52525B;
}

/* Editorial accent in title */
.audit-page .audit-page__title em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Legacy eyebrow class (kept for fallback) */
.audit-page .audit-page__eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #71717A;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.audit-page .audit-page__title {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 600;
  color: #0A0A0A;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 1.5rem;
}
.audit-page .audit-page__subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: #52525B;
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

/* ---- LEFT — Deal terms (Bloomberg-style key/value, light) ---- */
.audit-page .audit-terms {
  margin: 0 0 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.audit-page .audit-terms__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.audit-page .audit-terms dt {
  font-family: var(--font-data);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #71717A;
  font-weight: 500;
}
.audit-page .audit-terms dd {
  font-family: var(--font-data);
  font-size: 0.95rem;
  color: #18181B;
  margin: 0;
  font-weight: 500;
  text-align: right;
}
.audit-page .audit-terms__price {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0A0A0A;
}

.audit-page .audit-page__rule {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 2.25rem 0;
}

.audit-page .audit-page__section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #71717A;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

/* ---- LEFT — Deliverables (numbered list) ---- */
.audit-page .audit-deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
}
.audit-page .audit-deliverables li {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem 0 1.4rem;
  align-items: flex-start;
}
.audit-page .audit-deliverables li:last-child { padding-bottom: 0.5rem; }
.audit-page .audit-deliverables__num {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #A1A1AA;
  min-width: 1.6rem;
  padding-top: 0.18rem;
}
.audit-page .audit-deliverables__title {
  font-size: 1rem;
  font-weight: 600;
  color: #18181B;
  margin: 0 0 0.35rem 0;
  letter-spacing: -0.005em;
}
.audit-page .audit-deliverables__desc {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #52525B;
  margin: 0;
}

/* ---- LEFT — Trust list ---- */
.audit-page .audit-trust {
  list-style: none;
  padding: 0;
  margin: 0;
}
.audit-page .audit-trust li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: #52525B;
  line-height: 1.5;
}
.audit-page .audit-trust__ico {
  width: 18px;
  height: 18px;
  color: #18181B;
  flex-shrink: 0;
  opacity: 0.65;
}

/* ---- LEFT — Process Timeline (J+0 → J+7 vertical visual) ---- */
.audit-page .audit-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.audit-page .audit-timeline::before {
  content: '';
  position: absolute;
  left: 1.05rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: linear-gradient(to bottom,
    rgba(24, 24, 27, 0.05) 0%,
    rgba(24, 24, 27, 0.18) 25%,
    rgba(24, 24, 27, 0.18) 75%,
    rgba(24, 24, 27, 0.05) 100%);
}
.audit-page .audit-timeline__step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.1rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.audit-page .audit-timeline__step--last { padding-bottom: 0; }
.audit-page .audit-timeline__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.1rem;
  position: relative;
  z-index: 1;
}
.audit-page .audit-timeline__day {
  background: #FFFFFF;
  border: 1.5px solid #18181B;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #18181B;
  white-space: nowrap;
  box-shadow: 0 0 0 4px #F5F4F0;
}
.audit-page .audit-timeline__content {
  padding-top: 0.18rem;
}
.audit-page .audit-timeline__title {
  font-size: 0.97rem;
  font-weight: 600;
  color: #18181B;
  margin: 0 0 0.3rem 0;
  letter-spacing: -0.005em;
}
.audit-page .audit-timeline__desc {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.55;
  color: #52525B;
  margin: 0;
}

/* ============================================================
   RIGHT — Form card (white card on cream bg, light shadow)
   ============================================================ */
.audit-page .audit-page__right {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: clamp(2rem, 3vw, 2.75rem);
  position: relative;
  box-shadow:
    0 1px 2px rgba(24, 24, 27, 0.04),
    0 12px 28px rgba(24, 24, 27, 0.06);
}

/* Form header — clean step indicator + meta hint */
.audit-page .audit-form-header {
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.audit-page .audit-form-header__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.audit-page .audit-form-header__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #71717A;
  font-weight: 600;
  margin: 0;
}
.audit-page .audit-form-header__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: #71717A;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
}
.audit-page .audit-form-header__meta-ico {
  width: 12px;
  height: 12px;
  color: #A1A1AA;
}
.audit-page .audit-form-header__meta-sep {
  color: #D4D4D8;
  margin: 0 0.15rem;
}
.audit-page .audit-progress {
  height: 3px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.audit-page .audit-progress__bar {
  display: block;
  height: 100%;
  width: 50%;
  background: #18181B;
  border-radius: inherit;
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.audit-page .audit-progress[data-step="2"] .audit-progress__bar { width: 100%; }
.audit-page .audit-progress[data-step="1"] .audit-progress__bar { width: 50%; }

/* ---- Form steps ---- */
.audit-page .form-step { display: none; }
.audit-page .form-step.active {
  display: block;
  animation: apk-rise 0.4s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.audit-page .audit-form__step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0A0A0A;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.audit-page .audit-form__step-desc {
  font-size: 0.92rem;
  font-weight: 400;
  color: #52525B;
  margin-bottom: 2rem;
  line-height: 1.55;
}

/* ---- Form fields ---- */
.audit-page .audit-field {
  margin-bottom: 1.5rem;
}
.audit-page .audit-field label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #18181B;
  margin-bottom: 0.55rem;
  letter-spacing: -0.005em;
}
.audit-page .audit-field label .req {
  color: #DC2626;
  font-weight: 500;
}
.audit-page .audit-field label .opt {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #A1A1AA;
}
.audit-page .audit-field .form-input,
.audit-page .audit-field .form-textarea,
.audit-page .audit-field .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  color: #18181B;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.audit-page .audit-field .form-input::placeholder,
.audit-page .audit-field .form-textarea::placeholder {
  color: #A1A1AA;
}
.audit-page .audit-field .form-input:focus,
.audit-page .audit-field .form-textarea:focus,
.audit-page .audit-field .form-select:focus {
  outline: none;
  border-color: #18181B;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.08);
}
.audit-page .audit-field .form-input.error,
.audit-page .audit-field .form-textarea.error,
.audit-page .audit-field .form-select.error {
  border-color: #DC2626;
  background: rgba(220, 38, 38, 0.03);
}
.audit-page .audit-field .form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}
.audit-page .audit-field .form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2371717A' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ---- Form nav buttons ---- */
.audit-page .audit-form__nav {
  display: flex;
  margin-top: 2rem;
  gap: 0.75rem;
}
.audit-page .audit-form__nav--double { justify-content: space-between; }
.audit-page .audit-form__nav .btn-audit { flex: 1; justify-content: center; }
.audit-page .audit-form__nav--double .btn-audit--ghost { flex: 0 0 auto; padding-left: 1.25rem; padding-right: 1.25rem; }

.audit-page .btn-audit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-data);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.audit-page .btn-audit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.audit-page .btn-audit--primary {
  background: #18181B;
  color: #FFFFFF;
}
.audit-page .btn-audit--primary:not(:disabled):hover {
  background: #0A0A0A;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(24, 24, 27, 0.20);
}
.audit-page .btn-audit--ghost {
  background: transparent;
  color: #18181B;
  border-color: rgba(0, 0, 0, 0.15);
}
.audit-page .btn-audit--ghost:not(:disabled):hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: #18181B;
  color: #0A0A0A;
}

.audit-page .audit-form__legal {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0;
  color: #71717A;
  font-weight: 400;
  line-height: 1.55;
}
.audit-page .audit-form__legal a {
  color: #18181B;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.audit-page .audit-form__legal a:hover { color: #0A0A0A; }

/* ---- Submission error inline ---- */
.audit-page .form-submit-error {
  margin-top: 1.25rem;
  background: rgba(220, 38, 38, 0.06) !important;
  border: 1px solid rgba(220, 38, 38, 0.25) !important;
  color: #991B1B !important;
}
.audit-page .form-submit-error a {
  color: #18181B !important;
  text-decoration: underline;
}

/* ---- Success state ---- */
.audit-page .success-msg { display: none; text-align: center; padding: 3rem 1.5rem; }
.audit-page .success-msg.show { display: block; }
.audit-page .success-msg__ico {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.audit-page .success-msg__ico svg {
  width: 28px;
  height: 28px;
  color: #16A34A;
}
.audit-page .success-msg__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0A0A0A;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.audit-page .success-msg__desc {
  font-size: 0.98rem;
  font-weight: 400;
  color: #52525B;
  line-height: 1.6;
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}
.audit-page .success-msg .btn-audit {
  display: inline-flex;
}

/* What happens next — timeline inside success state */
.audit-page .success-next {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 28rem;
  text-align: left;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 10px;
  overflow: hidden;
  background: #FFFFFF;
}
.audit-page .success-next__step {
  display: grid;
  grid-template-columns: minmax(7rem, auto) 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(24, 24, 27, 0.06);
}
.audit-page .success-next__step:last-child { border-bottom: 0; }
.audit-page .success-next__when {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #18181B;
  background: rgba(24, 24, 27, 0.04);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
}
.audit-page .success-next__what {
  font-size: 0.88rem;
  font-weight: 400;
  color: #52525B;
  line-height: 1.5;
}

/* ---- Mobile fine tuning ---- */
@media (max-width: 979px) {
  .audit-page { padding: 6rem 0 4rem; }
  .audit-page__title { font-size: clamp(2rem, 7vw, 2.6rem); }
  .audit-page__right { padding: 1.75rem 1.5rem; }
  .audit-form__nav--double {
    flex-direction: column-reverse;
    gap: 0.75rem;
  }
  .audit-form__nav--double .btn-audit { width: 100%; flex: 1 1 100%; }
}

/* ============================================================
   PERSONA PAGES — Hero (dark, no photo, signed layout)
   ------------------------------------------------------------
   Used on /pour-qui/marques-* pages. Replaces the generic
   page-hero with stock tower image. Dark theme, document
   badge, editorial accent, stat strip with sectoral facts.
   ============================================================ */
.persona-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 55%),
    radial-gradient(circle at 92% 100%, rgba(255, 255, 255, 0.03) 0%, transparent 55%),
    #0a0a0a;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.persona-hero::before {
  /* Subtle grid texture (financial-paper feel) */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 80%);
}
.persona-hero > .container {
  position: relative;
  z-index: 1;
}

/* Doc badge — dark variant */
.persona-doc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.persona-doc-badge__code {
  color: #FAFAFA;
  font-weight: 600;
}
.persona-doc-badge__sep { color: rgba(255, 255, 255, 0.32); }
.persona-doc-badge__label { color: rgba(255, 255, 255, 0.55); }

/* H1 */
.persona-hero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: #FAFAFA;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 1.5rem;
  max-width: 18ch;
}
.persona-hero__title em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #FAFAFA;
}

/* H2 SEO — keywords-first */
.persona-hero__seo {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 1.75rem;
  line-height: 1.55;
  max-width: 56ch;
}
.persona-hero__seo strong {
  color: #FAFAFA;
  font-weight: 600;
}

/* Description */
.persona-hero__desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin: 0 0 3rem;
  max-width: 60ch;
}
.persona-hero__desc strong {
  color: #FAFAFA;
  font-weight: 500;
}

/* Stat strip */
.persona-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 56rem;
}
.persona-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1.5rem 1.25rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.persona-hero__stat:last-child { border-right: 0; }
.persona-hero__stat:not(:first-child) { padding-left: 1.5rem; }
.persona-hero__stat dt {
  font-family: var(--font-data);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.persona-hero__stat dd {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.persona-hero__stat-num {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #FAFAFA;
  letter-spacing: -0.02em;
  line-height: 1;
}
.persona-hero__stat-sub {
  font-family: var(--font-data);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
}

@media (max-width: 767px) {
  .persona-hero { padding: 7rem 0 4rem; }
  .persona-hero__stats {
    grid-template-columns: 1fr;
  }
  .persona-hero__stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 0;
  }
  .persona-hero__stat:last-child { border-bottom: 0; }
  .persona-hero__stat:not(:first-child) { padding-left: 0; }
}

/* ============================================================
   PARADOX CARDS — Section #pain-points
   ------------------------------------------------------------
   "Operator finance terminal" treatment: monospace big number
   as focal point, discreet 01/02/03 index, clean typographic
   hierarchy. Replaces the previous colored-icon glass-panel
   cards which read as a generic AI template.
   ============================================================ */
.paradox-grid {
  gap: 1.25rem;
}
.paradox-card {
  position: relative;
  padding: 2.5rem 2rem 2.25rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.paradox-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.16) 50%,
    rgba(255,255,255,0.08) 60%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.paradox-card:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.04);
}
.paradox-card:hover::before { opacity: 1; }

.paradox-index {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.28);
  user-select: none;
}

.paradox-metric {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}
.paradox-number {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #FAFAFA;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.paradox-unit {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-data);
}

.paradox-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FAFAFA;
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}
.paradox-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   REVEAL-UP — robust scroll-triggered entrance animation
   ------------------------------------------------------------
   Default state: invisible + 24px below. JS adds .is-revealed
   when the element enters the viewport (IntersectionObserver).
   If JS fails, a CSS fallback animation auto-reveals after
   1.2s so content is NEVER permanently hidden.

   The fallback uses a longer delay than the JS path so when JS
   works, the JS-triggered animation runs first and the fallback
   never visibly fires.
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  animation: apk-reveal-fallback 0.8s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: opacity, transform;
}
.reveal-up.is-revealed {
  animation: apk-reveal-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.reveal-up.delay-1.is-revealed { animation-delay: 0.10s; }
.reveal-up.delay-2.is-revealed { animation-delay: 0.25s; }
.reveal-up.delay-3.is-revealed { animation-delay: 0.40s; }
.reveal-up.delay-4.is-revealed { animation-delay: 0.55s; }

@keyframes apk-reveal-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes apk-reveal-fallback {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-up.is-revealed {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ============================================================
   CONTENT VISIBILITY OVERRIDE — Phase 1 safety net
   ------------------------------------------------------------
   Force all scroll-reveal / hero elements to be visible by
   default. Entrance animations are intentionally disabled here
   so content can NEVER be hidden if JS crashes, is slow, or is
   disabled. Proper staggered entrance animations will be
   reintroduced later via a different mechanism that does not
   rely on an initial opacity: 0 state.

   This rule must stay at the end of the file so it wins the
   cascade over the opacity:0 defaults defined earlier.
   ============================================================ */
.hero-title .char,
.hero-fade,
.scroll-reveal,
.img-reveal {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Respect user's reduced-motion preference for any remaining transitions */
@media (prefers-reduced-motion: reduce) {
  .hero-title .char,
  .hero-fade,
  .scroll-reveal,
  .img-reveal {
    transition: none !important;
  }
}

/* Active state navbar */
.nav-link.active {
  color: #fff !important;
  position: relative;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gold, #F6C547);
}


/* ---- module: _responsive ---- */

/* ============ Responsive ============ */
@media (max-width: 1023px) {
  .hidden-lg { display: none !important; }
  .grid-3-col { grid-template-columns: 1fr; }
  .grid-2-col { grid-template-columns: 1fr; }
  .grid-4-col { grid-template-columns: repeat(2, 1fr); }
  .grid-1-to-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-card-highlight { transform: none; }
  .pricing-card-highlight:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .flex-col-md { flex-direction: column; }
  .onboarding-flow { flex-direction: column; gap: 2rem; }
  .onboarding-connector { display: none !important; }
  .metrics-banner { gap: 2rem; }
  .metric-divider-v { display: none; }
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .hidden-md { display: none !important; }
  .mobile-menu-btn { display: block; }
  .grid-4-col { grid-template-columns: 1fr; }
  .grid-1-to-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .dual-cta { flex-direction: column; }
  .dual-cta .btn-cta-primary,
  .dual-cta .btn-cta-secondary { width: 100%; justify-content: center; text-align: center; }
  .trust-grid { grid-template-columns: 1fr; }
  .form-nav { flex-wrap: wrap; }
  .onboarding-inline { flex-direction: column; text-align: center; }
  .integration-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-table { font-size: 0.8rem; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 0.75rem; }
  /* Touch targets mobile (Axe 3 P0.2) */
  .btn-primary, .btn-secondary {
    min-height: 48px;
    padding: 0.95rem 1.4rem;
  }
  .btn { min-height: 48px; }
}




/* ---- home.css : design system V3 ---- */

/* ============================================================
   APK CAPITAL — home.css
   Styles de la page d'accueil — fusion maquette V3 FINAL.
   ------------------------------------------------------------
   Tout est scopé sous .v3-home et préfixé .v3-* afin de cohabiter
   SANS conflit avec assets/css/styles.css (chrome : nav, footer…).
   Les animations s'appuient sur .reveal-up + .is-revealed,
   classes pilotées par le script.js existant (NON modifié).
   Palette : accents en BLEU (acier APK), boutons blancs. Pas de doré.
   ============================================================ */

.v3-home{
  --navy:#2A2E4B;--navy-deep:#1A1F2E;--steel:#6B7FA3;--steel-light:#9BAFCE;
  --off-white:#FAFAF8;--cream:#F4F5F7;
  --accent:#9BAFCE;--accent-soft:rgba(155,175,206,0.16);
  --bg-dark:#0a0a0a;--bg-dark-elevated:#16161A;
  --ink:#14181F;--ink-soft:#4A5366;--ink-mute:#8B91A1;
  --text-on-dark:#F5F4F0;--text-on-dark-soft:#A8A8B0;
  --line:#E6E2D8;--line-soft:#EFEDE5;--line-dark:rgba(255,255,255,.08);
  --positive:#22A06B;--negative:#E5484D;
  --sans:'Space Grotesk',-apple-system,BlinkMacSystemFont,sans-serif;
  --mono:'JetBrains Mono','Courier New',monospace;
  font-family:var(--sans);color:var(--ink);line-height:1.6;-webkit-font-smoothing:antialiased;
}
.v3-home *,.v3-home *::before,.v3-home *::after{margin:0;padding:0;box-sizing:border-box;}
.v3-home a{text-decoration:none;}
.v3-home ul{list-style:none;}
.v3-home img{display:block;}

/* ============ ANIMATIONS SCROLL (reveal-up → .is-revealed via script.js) ============ */
.v3-home .reveal-up{
  opacity:0;transform:translateY(30px);animation:none;
  transition:opacity .8s cubic-bezier(.16,1,.3,1),transform .8s cubic-bezier(.16,1,.3,1);
}
.v3-home .reveal-up.is-revealed{opacity:1;transform:translateY(0);}
.v3-home .reveal-up.v3-d1{transition-delay:.1s;}
.v3-home .reveal-up.v3-d2{transition-delay:.2s;}
.v3-home .reveal-up.v3-d3{transition-delay:.3s;}
.v3-home .reveal-up.v3-d4{transition-delay:.4s;}

/* ============ HERO (vidéo conservée + structure/typo V3) ============ */
.v3-hero{
  position:relative;min-height:100vh;display:flex;align-items:center;
  background:var(--bg-dark);color:var(--text-on-dark);padding:9rem 0 6rem;overflow:hidden;
}
.v3-hero-media{position:absolute;inset:0;z-index:0;}
.v3-hero-media video{width:100%;height:100%;object-fit:cover;display:block;}
.v3-hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(10,10,10,.66) 0%,rgba(10,10,10,.48) 50%,rgba(10,10,10,.85) 100%);
}
.v3-hero-grid{
  position:absolute;inset:0;z-index:1;pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:80px 80px;
}
.v3-hero-inner{
  position:relative;z-index:2;width:100%;max-width:1320px;margin:0 auto;padding:0 2.5rem;
  display:flex;align-items:flex-end;justify-content:space-between;gap:3rem;flex-wrap:wrap;
}
.v3-hero-main{flex:1 1 34rem;max-width:60rem;}
.v3-hero-badge{
  display:inline-flex;align-items:center;gap:.65rem;font-family:var(--mono);font-size:.7rem;
  text-transform:uppercase;letter-spacing:.18em;color:var(--text-on-dark);
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);
  padding:.55rem 1rem;border-radius:30px;margin-bottom:2.5rem;
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
}
.v3-hero-badge-dot{
  width:6px;height:6px;border-radius:50%;background:var(--accent);
  box-shadow:0 0 12px var(--accent);animation:v3-pulse 2s ease-in-out infinite;
}
.v3-hero-title{
  font-size:clamp(2.8rem,6vw,5.5rem);font-weight:600;line-height:1.05;
  letter-spacing:-.03em;color:var(--text-on-dark);margin-bottom:2rem;max-width:65rem;
}
.v3-hero-accent{color:var(--accent);font-weight:500;}
.v3-hero-desc{
  font-size:1.15rem;font-weight:300;line-height:1.65;
  color:var(--text-on-dark-soft);max-width:40rem;margin-bottom:3rem;
}
.v3-hero-desc strong{color:var(--text-on-dark);font-weight:500;}

/* Carré signature "APK Capital / Data. Analyse. Advisory." (repris de l'ancien hero) */
.v3-hero-card{
  flex:0 1 19rem;align-self:flex-end;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.13);
  border-radius:14px;padding:1.65rem 1.9rem;
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
}
.v3-hero-card-label{
  display:block;font-family:var(--mono);font-size:.68rem;text-transform:uppercase;
  letter-spacing:.2em;color:var(--steel-light);margin-bottom:1rem;
}
.v3-hero-card-lines{
  font-size:clamp(1.7rem,2.3vw,2.3rem);font-weight:300;line-height:1.32;color:var(--text-on-dark);
}

/* ============ BOUTONS ============ */
.v3-cta-group{display:flex;gap:1.5rem;flex-wrap:wrap;align-items:flex-start;}
.v3-cta-wrap{display:flex;flex-direction:column;gap:.75rem;}
.v3-cta-micro{
  font-size:.75rem;color:var(--text-on-dark-soft);font-weight:300;
  display:flex;align-items:center;gap:.4rem;padding-left:.2rem;
}
.v3-cta-micro::before{content:'';display:inline-block;width:4px;height:4px;background:var(--accent);border-radius:50%;}
.v3-btn{
  font-family:var(--mono);font-size:.78rem;font-weight:700;letter-spacing:.05em;
  text-transform:none;text-decoration:none;padding:1rem 2rem;height:52px;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;gap:.6rem;
  border:1px solid;border-radius:6px;transition:all .3s cubic-bezier(.16,1,.3,1);
}
/* Bouton principal : BLANC (sur fonds sombres) */
.v3-btn--primary{background:#FFFFFF;color:var(--navy-deep);border-color:#FFFFFF;}
.v3-btn--primary:hover{
  background:var(--steel-light);border-color:var(--steel-light);color:var(--navy-deep);
  transform:translateY(-3px);box-shadow:0 16px 32px -12px rgba(0,0,0,.55);
}
.v3-btn--ghost{
  background:rgba(255,255,255,.03);color:var(--text-on-dark);
  border-color:rgba(255,255,255,.15);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
}
.v3-btn--ghost:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.4);transform:translateY(-2px);}
.v3-btn-arrow{transition:transform .3s;}
.v3-btn:hover .v3-btn-arrow{transform:translateX(5px);}

/* ============ BANDEAU LOGOS — 24 logos validés ============ */
.v3-logos{background:var(--off-white);padding:4rem 0 5rem;position:relative;border-bottom:1px solid var(--line);}
.v3-logos-eyebrow{
  text-align:center;font-family:var(--mono);font-size:.7rem;text-transform:uppercase;
  letter-spacing:.22em;color:var(--ink-mute);margin-bottom:2.5rem;
}
.v3-logos-eyebrow span{display:inline-flex;align-items:center;gap:1rem;}
.v3-logos-eyebrow span::before,.v3-logos-eyebrow span::after{content:'';width:2.5rem;height:1px;background:var(--line);}
.v3-marquee{
  overflow:hidden;position:relative;
  -webkit-mask-image:linear-gradient(to right,transparent 0%,black 8%,black 92%,transparent 100%);
  mask-image:linear-gradient(to right,transparent 0%,black 8%,black 92%,transparent 100%);
}
.v3-marquee-track{display:flex;gap:4rem;width:max-content;align-items:center;animation:v3-scroll 80s linear infinite;}
.v3-marquee:hover .v3-marquee-track{animation-play-state:paused;}
.v3-logo{
  display:inline-flex;align-items:center;gap:.75rem;font-weight:600;font-size:1.05rem;
  color:var(--ink);white-space:nowrap;letter-spacing:-.01em;cursor:default;
  opacity:.7;filter:grayscale(40%);transition:all .3s ease;
}
.v3-logo:hover{opacity:1;filter:grayscale(0%);transform:translateY(-2px) scale(1.02);}
.v3-logo img,.v3-logo svg{flex-shrink:0;}

/* ============ GABARIT DE SECTION ============ */
.v3-section{padding:7rem 0;position:relative;}
.v3-section--cream{background:var(--cream);}
.v3-section--white{background:var(--off-white);}
.v3-container{max-width:1320px;margin:0 auto;padding:0 2.5rem;}
.v3-section-head{max-width:800px;margin:0 auto 5rem;text-align:center;}
.v3-eyebrow{
  font-family:var(--mono);font-size:.7rem;font-weight:500;text-transform:uppercase;
  letter-spacing:.22em;color:var(--steel);margin-bottom:1.25rem;
  display:inline-flex;align-items:center;gap:.75rem;
}
.v3-eyebrow::before{content:'';width:1.5rem;height:1px;background:var(--steel);}
.v3-title{
  font-size:clamp(2.2rem,4.5vw,3.5rem);font-weight:600;line-height:1.08;
  letter-spacing:-.025em;color:var(--navy-deep);margin-bottom:1.25rem;
}
.v3-title-accent{color:var(--steel);font-weight:500;}
.v3-lead{font-size:1.1rem;font-weight:300;line-height:1.65;color:var(--ink-soft);max-width:38rem;margin:0 auto;}
.v3-lead strong{color:var(--navy-deep);font-weight:500;}

/* ============ SECTION — ANGLE MORT ============ */
.v3-angle{background:var(--cream);padding:8rem 0;position:relative;overflow:hidden;}
.v3-angle::before{
  content:'';position:absolute;top:-50%;right:-10%;width:50%;height:200%;
  background:radial-gradient(circle,rgba(107,127,163,.08) 0%,transparent 70%);pointer-events:none;
}
.v3-angle-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:5rem;position:relative;}
.v3-angle-card{
  background:#FFFFFF;padding:3rem 2.5rem;position:relative;z-index:1;overflow:hidden;
  border-radius:16px;border:1px solid var(--line-soft);
  box-shadow:0 10px 40px -10px rgba(42,46,75,.06);
  transition:all .4s cubic-bezier(.16,1,.3,1);
}
.v3-angle-card:hover{
  transform:translateY(-8px);box-shadow:0 20px 50px -15px rgba(42,46,75,.12);border-color:var(--steel-light);
}
.v3-angle-card::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:4px;
  background:linear-gradient(to right,var(--steel-light),var(--navy-deep));
  transform:scaleX(0);transform-origin:left;transition:transform .5s cubic-bezier(.16,1,.3,1);
}
.v3-angle-card:hover::after{transform:scaleX(1);}
.v3-angle-watermark{
  position:absolute;top:1rem;right:1.5rem;font-family:var(--mono);font-size:6rem;font-weight:700;
  color:rgba(107,127,163,.06);line-height:1;z-index:-1;user-select:none;pointer-events:none;
}
.v3-angle-metric{
  display:flex;align-items:baseline;gap:.75rem;margin-bottom:1.25rem;
  padding-bottom:1.5rem;border-bottom:1px solid var(--line);position:relative;
}
.v3-angle-big{font-size:clamp(2.8rem,4vw,4.5rem);font-weight:600;color:var(--navy-deep);line-height:1;letter-spacing:-.04em;}
.v3-angle-unit{font-family:var(--mono);font-size:.72rem;text-transform:uppercase;letter-spacing:.12em;color:var(--steel);font-weight:600;}
.v3-angle-title{font-size:1.25rem;font-weight:600;color:var(--navy-deep);margin-bottom:.85rem;letter-spacing:-.01em;position:relative;}
.v3-angle-desc{font-size:.95rem;line-height:1.65;color:var(--ink-soft);font-weight:400;position:relative;}

/* ============ SECTION — PROCESSUS (timeline verticale) ============ */
.v3-process{display:flex;flex-direction:column;max-width:880px;margin:4rem auto 0;}
.v3-step{display:grid;grid-template-columns:64px 1fr;gap:2rem;padding-bottom:3rem;position:relative;}
.v3-step:last-child{padding-bottom:0;}
.v3-step:not(:last-child)::before{
  content:'';position:absolute;left:31px;top:64px;bottom:0;width:2px;
  background:linear-gradient(to bottom,var(--steel-light),rgba(107,127,163,.12));
}
.v3-step-dot{
  width:64px;height:64px;border-radius:50%;background:var(--off-white);border:2px solid var(--navy-deep);
  display:flex;align-items:center;justify-content:center;position:relative;z-index:1;
  font-family:var(--mono);font-weight:700;font-size:1.1rem;color:var(--navy-deep);
  transition:all .4s cubic-bezier(.16,1,.3,1);
}
.v3-step:hover .v3-step-dot{background:var(--navy-deep);color:var(--steel-light);box-shadow:0 10px 20px -5px rgba(42,46,75,.2);}
.v3-step-body{padding-top:.4rem;}
.v3-step-name{font-size:1.3rem;font-weight:600;color:var(--navy-deep);margin-bottom:.55rem;letter-spacing:-.01em;}
.v3-step-headline{font-size:1.05rem;font-weight:500;color:var(--navy-deep);line-height:1.5;margin-bottom:.7rem;}
.v3-step-desc{font-size:.95rem;color:var(--ink-soft);line-height:1.65;font-weight:400;margin-bottom:.6rem;}
.v3-step-desc:last-child{margin-bottom:0;}

/* ============ SECTION — POUR QUI ============ */
.v3-personas{
  display:grid;grid-template-columns:1fr 1fr 1fr;gap:0;margin-top:5rem;
  border-top:2px solid var(--navy-deep);border-bottom:1px solid var(--line);
}
.v3-persona{padding:3.5rem 3rem;border-right:1px solid var(--line);position:relative;transition:background .4s ease;}
.v3-persona:last-child{border-right:none;}
.v3-persona:hover{background:#FFFFFF;}
.v3-persona-tag{
  display:inline-flex;align-items:center;gap:.55rem;font-family:var(--mono);font-size:.65rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.18em;padding:.35rem .8rem;border-radius:30px;margin-bottom:2.5rem;
}
.v3-persona:nth-child(1) .v3-persona-tag{background:var(--accent-soft);color:var(--steel);}
.v3-persona:nth-child(2) .v3-persona-tag{background:rgba(107,127,163,.12);color:var(--steel);}
.v3-persona:nth-child(3) .v3-persona-tag{background:rgba(42,46,75,.1);color:var(--navy);}
.v3-persona-range{font-size:2.5rem;font-weight:600;color:var(--navy-deep);letter-spacing:-.03em;margin-bottom:.75rem;line-height:1;}
.v3-persona-unit{font-family:var(--mono);font-size:1.1rem;font-weight:500;color:var(--steel);margin-left:.25rem;}
.v3-persona-pitch{
  font-size:1.05rem;color:var(--ink-soft);margin-bottom:2.5rem;line-height:1.6;
  padding-bottom:2.5rem;border-bottom:1px solid var(--line);
}
.v3-persona-list{margin-bottom:2.5rem;}
.v3-persona-list li{font-size:.95rem;color:var(--navy-deep);padding:.5rem 0;display:flex;align-items:center;gap:.75rem;font-weight:500;}
.v3-persona-list li svg{flex-shrink:0;color:var(--steel);}
.v3-persona-link{
  font-family:var(--mono);font-size:.75rem;font-weight:700;letter-spacing:.08em;color:var(--navy-deep);
  display:inline-flex;align-items:center;gap:.5rem;transition:gap .3s,color .3s;
}
.v3-persona-link:hover{gap:1rem;color:var(--steel);}

/* ============ SECTION — COCKPIT ============ */
.v3-cockpit{background:var(--navy-deep);color:var(--text-on-dark);padding:8rem 0;position:relative;overflow:hidden;}
.v3-cockpit::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse 60% 40% at 80% 0%,rgba(155,175,206,.1) 0%,transparent 70%),
             radial-gradient(ellipse 50% 40% at 20% 100%,rgba(107,127,163,.15) 0%,transparent 70%);
}
.v3-cockpit .v3-eyebrow{color:var(--steel-light);}
.v3-cockpit .v3-eyebrow::before{background:var(--steel-light);}
.v3-cockpit .v3-title{color:var(--text-on-dark);}
.v3-cockpit .v3-title-accent{color:var(--steel-light);}
.v3-cockpit .v3-lead{color:var(--text-on-dark-soft);}
.v3-cockpit .v3-lead strong{color:var(--text-on-dark);}
.v3-board{
  margin-top:5rem;position:relative;border-radius:16px;padding:2.5rem;
  background:linear-gradient(180deg,rgba(255,255,255,.05) 0%,rgba(255,255,255,.01) 100%);
  border:1px solid rgba(255,255,255,.08);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
  box-shadow:0 40px 100px -20px rgba(0,0,0,.6),inset 0 1px 0 rgba(255,255,255,.1);
}
.v3-board-head{display:flex;justify-content:space-between;align-items:center;padding-bottom:1.5rem;border-bottom:1px solid rgba(255,255,255,.08);margin-bottom:2.5rem;}
.v3-board-head-l{display:flex;align-items:center;gap:1rem;}
.v3-traffic{display:flex;gap:.5rem;}
.v3-traffic span{width:12px;height:12px;border-radius:50%;display:inline-block;box-shadow:inset 0 0 4px rgba(0,0,0,.2);}
.v3-traffic span:nth-child(1){background:#E5484D;}
.v3-traffic span:nth-child(2){background:#F5C04A;}
.v3-traffic span:nth-child(3){background:#22A06B;}
.v3-board-title{font-family:var(--mono);font-size:.75rem;letter-spacing:.1em;color:var(--text-on-dark-soft);}
.v3-board-status{display:inline-flex;align-items:center;gap:.6rem;font-family:var(--mono);font-size:.7rem;color:#22A06B;letter-spacing:.1em;}
.v3-board-status-dot{width:8px;height:8px;border-radius:50%;background:#22A06B;box-shadow:0 0 10px #22A06B;animation:v3-pulse 1.5s ease-in-out infinite;}
.v3-kpi-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-bottom:2.5rem;}
.v3-kpi{background:rgba(255,255,255,.02);border:1px solid rgba(255,255,255,.06);border-radius:12px;padding:1.5rem;position:relative;transition:all .3s;}
.v3-kpi:hover{border-color:rgba(155,175,206,.45);background:rgba(155,175,206,.06);transform:translateY(-2px);}
.v3-kpi-label{font-family:var(--mono);font-size:.65rem;text-transform:uppercase;letter-spacing:.12em;color:var(--text-on-dark-soft);margin-bottom:.75rem;display:flex;justify-content:space-between;align-items:center;}
.v3-kpi-trend{font-family:var(--mono);font-size:.65rem;padding:.2rem .5rem;border-radius:4px;}
.v3-kpi-trend--up{background:rgba(34,160,107,.15);color:#22A06B;}
.v3-kpi-trend--down{background:rgba(229,72,77,.15);color:#E5484D;}
.v3-kpi-value{font-size:2rem;font-weight:600;color:var(--text-on-dark);letter-spacing:-.025em;font-family:var(--mono);}
.v3-kpi-unit{font-size:1rem;color:var(--text-on-dark-soft);margin-left:.2rem;font-weight:400;}
.v3-kpi-bar{margin-top:1rem;height:4px;background:rgba(255,255,255,.06);border-radius:2px;overflow:hidden;}
.v3-kpi-fill{height:100%;width:0;border-radius:2px;background:linear-gradient(to right,var(--steel),var(--steel-light));transition:width 1.5s cubic-bezier(.16,1,.3,1);}
.v3-home .v3-board.is-revealed .v3-kpi:nth-child(1) .v3-kpi-fill{width:78%;transition-delay:.15s;}
.v3-home .v3-board.is-revealed .v3-kpi:nth-child(2) .v3-kpi-fill{width:92%;transition-delay:.3s;}
.v3-home .v3-board.is-revealed .v3-kpi:nth-child(3) .v3-kpi-fill{width:64%;transition-delay:.45s;}
.v3-home .v3-board.is-revealed .v3-kpi:nth-child(4) .v3-kpi-fill{width:88%;transition-delay:.6s;}
.v3-board-body{display:grid;grid-template-columns:2fr 1fr;gap:1.5rem;}
.v3-graph{background:rgba(255,255,255,.02);border:1px solid rgba(255,255,255,.06);border-radius:12px;padding:1.5rem;position:relative;}
.v3-graph-head{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1.5rem;}
.v3-graph-title{font-size:1rem;font-weight:500;color:var(--text-on-dark);}
.v3-graph-sub{font-family:var(--mono);font-size:.7rem;color:var(--text-on-dark-soft);letter-spacing:.1em;margin-top:.2rem;}
.v3-graph-legend{display:flex;gap:1rem;font-family:var(--mono);font-size:.7rem;}
.v3-graph-legend span{display:inline-flex;align-items:center;gap:.4rem;color:var(--text-on-dark-soft);}
.v3-graph-legend span::before{content:'';width:8px;height:8px;border-radius:2px;}
.v3-graph-legend .v3-leg-rev::before{background:var(--steel-light);}
.v3-graph-legend .v3-leg-cash::before{background:var(--steel);}
.v3-graph svg{width:100%;height:200px;}
.v3-ticker{background:rgba(255,255,255,.02);border:1px solid rgba(255,255,255,.06);border-radius:12px;padding:1.5rem;display:flex;flex-direction:column;}
.v3-ticker-title{font-family:var(--mono);font-size:.7rem;text-transform:uppercase;letter-spacing:.15em;color:var(--text-on-dark-soft);margin-bottom:1.25rem;padding-bottom:.75rem;border-bottom:1px solid rgba(255,255,255,.06);}
.v3-ticker-list{flex:1;display:flex;flex-direction:column;gap:.75rem;font-family:var(--mono);font-size:.8rem;}
.v3-ticker-row{display:flex;justify-content:space-between;align-items:center;padding:.2rem 0;}
.v3-ticker-name{color:var(--text-on-dark-soft);}
.v3-tick-pos{color:#22A06B;font-weight:500;}
.v3-tick-neg{color:#E5484D;font-weight:500;}
.v3-tick-neu{color:var(--steel-light);font-weight:500;}
.v3-benefits{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:3.5rem;padding-top:3rem;border-top:1px solid rgba(255,255,255,.08);}
.v3-benefit{display:flex;flex-direction:column;gap:.75rem;}
.v3-benefit-icon{color:var(--steel-light);background:rgba(155,175,206,.12);width:48px;height:48px;display:flex;align-items:center;justify-content:center;border-radius:8px;margin-bottom:.5rem;}
.v3-benefit-title{font-size:1.1rem;font-weight:600;color:var(--text-on-dark);}
.v3-benefit-desc{font-size:.95rem;color:var(--text-on-dark-soft);line-height:1.6;font-weight:300;}

/* ============ SECTION — PRICING ============ */
.v3-pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:5rem;align-items:center;}
.v3-plan{background:var(--off-white);border:1px solid var(--line);border-radius:16px;padding:3rem 2.5rem;position:relative;transition:all .4s ease;}
.v3-plan:hover{border-color:var(--navy-deep);transform:translateY(-5px);box-shadow:0 24px 48px -16px rgba(42,46,75,.15);}
.v3-plan--featured{background:var(--navy-deep);color:var(--text-on-dark);border-color:var(--navy-deep);padding:3.5rem 2.5rem;box-shadow:0 20px 60px -15px rgba(26,31,46,.3);}
.v3-plan--featured:hover{transform:translateY(-5px);box-shadow:0 30px 70px -15px rgba(26,31,46,.4),0 0 40px rgba(155,175,206,.12);}
.v3-plan--featured::before{
  content:'Recommandé';position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:var(--steel-light);color:var(--navy-deep);font-family:var(--mono);font-size:.65rem;font-weight:700;
  letter-spacing:.1em;padding:.4rem 1rem;border-radius:30px;box-shadow:0 4px 12px rgba(155,175,206,.3);
}
.v3-plan-tier{font-family:var(--mono);font-size:.75rem;text-transform:uppercase;letter-spacing:.18em;color:var(--steel);margin-bottom:1rem;}
.v3-plan--featured .v3-plan-tier{color:var(--steel-light);}
.v3-plan-name{font-size:1.6rem;font-weight:600;color:var(--navy-deep);margin-bottom:.5rem;}
.v3-plan--featured .v3-plan-name{color:var(--text-on-dark);}
.v3-plan-from{font-family:var(--mono);font-size:.7rem;text-transform:uppercase;letter-spacing:.1em;color:var(--ink-mute);margin-bottom:.4rem;}
.v3-plan--featured .v3-plan-from{color:var(--text-on-dark-soft);}
.v3-plan-price{font-size:2.8rem;font-weight:600;color:var(--navy-deep);letter-spacing:-.04em;line-height:1;margin-bottom:.5rem;}
.v3-plan-price--quote{font-size:2.1rem;font-weight:500;}
.v3-plan--featured .v3-plan-price{color:#FFFFFF;}
.v3-plan-price-unit{font-family:var(--mono);font-size:.85rem;color:var(--ink-mute);margin-left:.25rem;font-weight:400;}
.v3-plan--featured .v3-plan-price-unit{color:var(--text-on-dark-soft);}
.v3-plan-meta{font-family:var(--mono);font-size:.75rem;color:var(--ink-mute);margin-bottom:2.5rem;padding-bottom:1.5rem;border-bottom:1px solid var(--line);}
.v3-plan--featured .v3-plan-meta{color:var(--text-on-dark-soft);border-bottom-color:rgba(255,255,255,.1);}
.v3-plan-feats{margin-bottom:2.5rem;}
.v3-plan-feats li{font-size:.95rem;color:var(--ink-soft);padding:.5rem 0;display:flex;align-items:center;gap:.85rem;}
.v3-plan--featured .v3-plan-feats li{color:var(--text-on-dark-soft);}
.v3-plan-feats li svg{flex-shrink:0;color:var(--steel);}
.v3-plan--featured .v3-plan-feats li svg{color:var(--steel-light);}
.v3-plan-cta{
  display:block;text-align:center;background:var(--navy-deep);color:var(--text-on-dark);
  font-family:var(--mono);font-size:.8rem;font-weight:700;letter-spacing:.08em;
  padding:1.1rem;border-radius:6px;transition:all .3s;
}
.v3-plan--featured .v3-plan-cta{background:#FFFFFF;color:var(--navy-deep);}
.v3-plan-cta:hover{transform:translateY(-2px);box-shadow:0 8px 20px -4px rgba(0,0,0,.2);}

/* ============ CTA FINAL ============ */
.v3-final{
  background:radial-gradient(ellipse 80% 60% at 50% 0%,rgba(155,175,206,.1) 0%,transparent 70%),var(--bg-dark);
  color:var(--text-on-dark);padding:8rem 0;text-align:center;position:relative;
}
.v3-final-inner{max-width:800px;margin:0 auto;padding:0 2.5rem;}
.v3-final-eyebrow{
  font-family:var(--mono);font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.22em;
  color:var(--steel-light);margin-bottom:1.75rem;display:inline-flex;align-items:center;gap:1rem;
}
.v3-final-eyebrow::before,.v3-final-eyebrow::after{content:'';width:2rem;height:1px;background:var(--steel-light);}
.v3-final-title{font-size:clamp(2.2rem,5vw,4.5rem);font-weight:600;line-height:1.05;letter-spacing:-.03em;margin-bottom:1.5rem;color:var(--text-on-dark);}
.v3-final-accent{color:var(--steel-light);}
.v3-final-desc{font-size:1.15rem;font-weight:300;color:var(--text-on-dark-soft);margin-bottom:3rem;line-height:1.6;}

/* ============ KEYFRAMES ============ */
@keyframes v3-pulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(.8);}}
@keyframes v3-scroll{from{transform:translateX(0);}to{transform:translateX(-50%);}}

/* ============ RESPONSIVE ============ */
@media (max-width:900px){
  .v3-hero-inner{align-items:flex-start;gap:2.5rem;}
  .v3-hero-card{flex-basis:auto;width:100%;align-self:stretch;}
  .v3-angle-grid{grid-template-columns:1fr;gap:1.5rem;}
  .v3-process{margin:3rem auto 0;}
  .v3-step{grid-template-columns:52px 1fr;gap:1.25rem;padding-bottom:2.25rem;}
  .v3-step:not(:last-child)::before{left:25px;top:52px;}
  .v3-step-dot{width:52px;height:52px;font-size:.95rem;}
  .v3-personas{grid-template-columns:1fr;}
  .v3-persona{border-right:none;border-bottom:1px solid var(--line);padding:2.5rem 0;}
  .v3-persona:last-child{border-bottom:none;}
  .v3-kpi-grid{grid-template-columns:1fr 1fr;}
  .v3-board-body{grid-template-columns:1fr;}
  .v3-graph-head{flex-direction:column;gap:1rem;}
  .v3-graph svg{height:120px;}
  .v3-benefits{grid-template-columns:1fr;gap:2.5rem;}
  .v3-pricing{grid-template-columns:1fr;gap:2rem;}
  .v3-plan--featured{padding:3rem 2.5rem;}
}
@media (max-width:500px){
  .v3-hero{padding:7.5rem 0 4rem;}
  .v3-hero-title{font-size:2.5rem;}
  .v3-hero-inner,.v3-container,.v3-final-inner{padding-left:1.5rem;padding-right:1.5rem;}
  .v3-angle{padding:5rem 0;}
  .v3-section{padding:5rem 0;}
  .v3-cockpit,.v3-final{padding:5rem 0;}
  .v3-board{padding:1.5rem;}
  .v3-kpi-grid{grid-template-columns:1fr;}
  .v3-board-head{flex-direction:column;align-items:flex-start;gap:1rem;}
  .v3-cta-group{flex-direction:column;width:100%;}
  .v3-cta-wrap{width:100%;}
  .v3-btn{width:100%;}
}

/* ============================================================
   CHROME (nav + overlay mobile) — overrides page d'accueil.
   Le dossier utilise le _variables.css "thème clair" → le texte
   du chrome hérite de couleurs sombres, illisibles sur le hero
   sombre. On force des couleurs claires. Chargé uniquement par
   index.html → n'affecte aucune autre page.
   ============================================================ */
.nav-brand-text{color:#F5F4F0;}
.nav-dropdown-item{color:rgba(245,244,240,.74);}
.nav-dropdown-item small{color:rgba(245,244,240,.45);}
.mobile-nav-link{color:rgba(245,244,240,.92);}
.mobile-nav-sub{color:rgba(245,244,240,.60);}

/* ============================================================
   MOBILE HARDENING — ajout audit (sûr, n'altère pas le design)
   Objectif : empêcher tout débordement horizontal sur téléphone
   et stabiliser le rendu, sans toucher aux breakpoints existants.
   ============================================================ */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
img { max-width: 100%; height: auto; }
@media (max-width: 600px) {
  /* Un mot, une URL ou un nombre insécable trop long ne casse plus la mise en page */
  body { overflow-wrap: break-word; }
  /* Les prix nombres restent insécables mais ne débordent jamais la carte */
  .v3-hero-stat__num, .v3-tier-rung__price, .v3-plan-price, .v3-offer-price, .daf-stat__num { overflow-wrap: normal; }
}


/* ===== APK Capital · Menu mobile (apk-nav) — intégré (thème dark) ===== */
.apk-nav, .apk-nav *{ box-sizing:border-box; }
.apk-nav{ position:fixed; inset:0; z-index:1200; display:flex; flex-direction:column; align-items:stretch; font-family:"Space Grotesk", system-ui, sans-serif; }
.apk-nav[hidden]{ display:none; }
.apk-nav[data-theme="dark"]{ --apk-bg:#0b0b0c; --apk-fg:#f4f4f5; --apk-muted:#76767c; --apk-line:rgba(255,255,255,.09); --apk-hover:rgba(255,255,255,.05); --apk-cta-bg:#ffffff; --apk-cta-fg:#0b0b0c; --apk-backdrop:rgba(0,0,0,.55); }
.apk-nav[data-theme="color"]{ --apk-bg:oklch(0.47 0.16 268); --apk-fg:#ffffff; --apk-muted:rgba(255,255,255,.64); --apk-line:rgba(255,255,255,.18); --apk-hover:rgba(255,255,255,.09); --apk-cta-bg:#ffffff; --apk-cta-fg:oklch(0.42 0.16 268); --apk-backdrop:rgba(8,6,34,.5); }
.apk-nav[data-theme="light"]{ --apk-bg:#f7f7f5; --apk-fg:#0b0b0c; --apk-muted:#9a9a93; --apk-line:rgba(0,0,0,.10); --apk-hover:rgba(0,0,0,.04); --apk-cta-bg:#0b0b0c; --apk-cta-fg:#ffffff; --apk-backdrop:rgba(0,0,0,.35); }
.apk-nav__backdrop{ position:absolute; inset:0; background:var(--apk-backdrop); opacity:0; transition:opacity .35s ease; cursor:pointer; }
.apk-nav.is-open .apk-nav__backdrop{ opacity:1; }
.apk-nav__panel{ position:relative; z-index:1; margin:12px; width:calc(100% - 24px); max-width:520px; max-height:calc(100% - 24px); display:flex; flex-direction:column; background:var(--apk-bg); color:var(--apk-fg); border-radius:24px; overflow:hidden; box-shadow:0 30px 70px -22px rgba(0,0,0,.55); transform:translateY(-16px); opacity:0; transition:transform .42s cubic-bezier(.2,.85,.2,1), opacity .32s ease; }
.apk-nav.is-open .apk-nav__panel{ transform:none; opacity:1; }
.apk-nav__head{ display:flex; align-items:center; justify-content:space-between; padding:18px 20px 16px; }
.apk-nav__brand{ display:flex; align-items:center; gap:12px; text-decoration:none; color:inherit; }
.apk-nav__logo{ display:grid; place-items:center; width:38px; height:30px; border-radius:7px; background:var(--apk-fg); color:var(--apk-bg); font-family:"JetBrains Mono", monospace; font-size:12px; font-weight:700; letter-spacing:.02em; }
.apk-nav__name{ font-weight:600; font-size:17px; letter-spacing:-.01em; }
.apk-nav__close{ display:grid; place-items:center; width:40px; height:40px; border-radius:50%; background:transparent; border:1px solid var(--apk-line); color:var(--apk-fg); cursor:pointer; transition:background .15s; flex:none; }
.apk-nav__close:hover{ background:var(--apk-hover); }
.apk-nav__close svg{ width:18px; height:18px; }
.apk-nav__body{ flex:1; min-height:0; overflow-y:auto; -webkit-overflow-scrolling:touch; padding:6px 14px 6px; }
.apk-nav__link{ display:block; text-decoration:none; color:var(--apk-fg); font-size:19px; font-weight:400; letter-spacing:-.01em; padding:15px 14px; border-radius:13px; transition:background .15s; }
.apk-nav__link:hover{ background:var(--apk-hover); }
.apk-acc__trigger{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:14px; background:none; border:0; cursor:pointer; color:var(--apk-fg); text-align:left; font-family:inherit; font-size:19px; font-weight:400; letter-spacing:-.01em; padding:15px 14px; border-radius:13px; transition:background .15s; }
.apk-acc__trigger:hover{ background:var(--apk-hover); }
.apk-acc__chev{ width:19px; height:19px; flex:none; color:var(--apk-muted); transition:transform .3s ease; }
.apk-acc.is-open .apk-acc__chev{ transform:rotate(180deg); }
.apk-acc__panel{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.apk-acc__inner{ display:flex; flex-direction:column; margin:2px 0 8px 26px; padding-left:14px; border-left:1px solid var(--apk-line); }
.apk-acc__sub{ text-decoration:none; color:var(--apk-muted); font-size:16px; padding:11px 12px; border-radius:10px; transition:color .15s, background .15s; }
.apk-acc__sub:hover{ color:var(--apk-fg); background:var(--apk-hover); }
.apk-nav__foot{ padding:14px 18px calc(18px + env(safe-area-inset-bottom)); border-top:1px solid var(--apk-line); }
.apk-nav__cta{ display:flex; align-items:center; justify-content:center; text-decoration:none; background:var(--apk-cta-bg); color:var(--apk-cta-fg); font-family:"JetBrains Mono", monospace; font-size:13px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; padding:18px; border-radius:14px; transition:opacity .15s, transform .12s; }
.apk-nav__cta:hover{ opacity:.9; }
.apk-nav__cta:active{ transform:scale(.99); }
.apk-nav.is-open .apk-nav__body > *{ animation:apkIn .42s both; }
.apk-nav.is-open .apk-nav__body > :nth-child(1){ animation-delay:.04s; }
.apk-nav.is-open .apk-nav__body > :nth-child(2){ animation-delay:.08s; }
.apk-nav.is-open .apk-nav__body > :nth-child(3){ animation-delay:.12s; }
.apk-nav.is-open .apk-nav__body > :nth-child(4){ animation-delay:.16s; }
.apk-nav.is-open .apk-nav__body > :nth-child(5){ animation-delay:.20s; }
.apk-nav.is-open .apk-nav__body > :nth-child(6){ animation-delay:.24s; }
.apk-nav.is-open .apk-nav__body > :nth-child(7){ animation-delay:.28s; }
@keyframes apkIn{ from{ opacity:0; transform:translateY(8px); } to{ opacity:1; transform:none; } }
.apk-lock{ overflow:hidden !important; }
@media (prefers-reduced-motion: reduce){ .apk-nav *{ animation:none !important; transition:none !important; } }
/* fin apk-nav */

/* Nav : bascule burger + panneau .apk-nav dès la tablette (≤1024px).
   (Seulement la visibilité nav — le layout de contenu garde ses propres breakpoints.) */
@media (max-width: 1024px){
  .nav-links { display:none; }
  .hidden-md { display:none !important; }
  .mobile-menu-btn { display:block; }
}
