:root {
  /* === MONOCHROME NAVY PALETTE — BHI === */
  /* Single brand color: deep navy blue */
  --navy: #1B3454;             /* Logo navy — primary brand color */
  --navy-dark: #0F2238;        /* Darker navy for depth */
  --navy-medium: #2D4A70;      /* Medium navy for hovers */
  --navy-light: #4A6890;       /* Lighter navy for borders/accents */
  --navy-pale: #8FA4BE;        /* Very light navy for soft accents */
  --navy-tint: #E8EDF3;        /* Almost white with navy hint */

  /* Legacy aliases — kept for compatibility, all map to navy */
  --brand-primary: #1B3454;
  --brand-primary-dark: #0F2238;
  --brand-primary-light: #4A6890;
  --brand-primary-glow: #8FA4BE;
  --accent: #1B3454;
  --accent-bright: #2D4A70;
  --accent-warm: #4A6890;
  --accent-warm-bg: #E8EDF3;

  /* Backgrounds - clean editorial whites */
  --bg: #FAFAF8;               /* Main background - barely off-white */
  --bg-elevated: #FFFFFF;      /* Pure white for cards */
  --bg-card: #FDFDFC;
  --bg-card-hover: #F5F5F3;
  --bg-subtle: #F2F2EF;

  /* Borders */
  --border: rgba(20, 20, 30, 0.07);
  --border-medium: rgba(20, 20, 30, 0.10);
  --border-strong: rgba(20, 20, 30, 0.16);

  /* Text */
  --text: #14141A;             /* Almost black, soft */
  --text-dim: #4A4A55;
  --text-faint: #8A8A95;

  /* Shadows - editorial premium */
  --shadow-sm: 0 1px 2px rgba(20, 20, 30, 0.04);
  --shadow-md: 0 4px 12px rgba(20, 20, 30, 0.06), 0 1px 3px rgba(20, 20, 30, 0.04);
  --shadow-lg: 0 16px 40px -12px rgba(20, 20, 30, 0.12), 0 4px 12px rgba(20, 20, 30, 0.06);
  --shadow-xl: 0 30px 80px -20px rgba(20, 20, 30, 0.15), 0 8px 24px rgba(20, 20, 30, 0.06);
}

/* Mention 'Odoo' avec couleur officielle dans les titres marketing */
.brand-erp {
  color: #714B67; /* Violet primaire officiel Odoo */
  /* Même taille, même police, même graisse que le texte environnant — conforme guidelines */
}


/* ===== Scroll-triggered animations ===== */
.fade-in-init {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Process timeline animation when section enters viewport */
.process-track-fill {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.process-section.process-active .process-track-fill {
  transform: scaleX(1);
}

.process-section .process-step-dot {
  transition: all 0.4s ease, transform 0.3s ease;
  opacity: 0.4;
}

.process-section.process-active .process-step:nth-child(2) .process-step-dot { transition-delay: 0.15s; opacity: 1; }
.process-section.process-active .process-step:nth-child(3) .process-step-dot { transition-delay: 0.45s; opacity: 1; }
.process-section.process-active .process-step:nth-child(4) .process-step-dot { transition-delay: 0.75s; opacity: 1; }
.process-section.process-active .process-step:nth-child(5) .process-step-dot { transition-delay: 1.05s; opacity: 1; }
.process-section.process-active .process-step:nth-child(6) .process-step-dot { transition-delay: 1.35s; opacity: 1; }

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .fade-in-init {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .process-track-fill {
    transform: scaleX(1);
    transition: none;
  }
  .process-section .process-step-dot {
    opacity: 1;
    transition: none;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Geist', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-feature-settings: 'ss01', 'cv11', 'kern';
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain texture - signature touch */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.serif { font-family: 'Instrument Serif', serif; font-weight: 400; letter-spacing: -0.02em; font-style: italic; }
.mono { font-family: 'Geist Mono', monospace; }

/* Language toggle visibility */
[data-en] { display: none; }
html[lang="en"] [data-fr] { display: none; }
html[lang="en"] [data-en] { display: inline; }
html[lang="en"] [data-en="block"] { display: block; }
html[lang="en"] [data-en="flex"] { display: flex; }

::selection { background: var(--accent); color: #ffffff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(20, 20, 30, 0.15); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: rgba(20, 20, 30, 0.25); }

/* =================================================================
   NAVIGATION
   ================================================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 2rem;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(250, 250, 247, 0.78);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--accent) 100%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  animation: shine 5s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.logo-mark svg { width: 14px; height: 14px; color: white; position: relative; z-index: 1; }

.logo-img {
  height: 90px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

.logo-footer .logo-img {
  height: 120px;
}

@media (max-width: 768px) {
  .logo-img { height: 70px; }
  .logo-footer .logo-img { height: 90px; }
}



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

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

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

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

.lang-toggle {
  display: flex;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  font-size: 0.78rem;
  font-weight: 500;
}

.lang-toggle button {
  background: none;
  border: none;
  color: var(--text-dim);
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: inherit;
  transition: all 0.2s;
}

.lang-toggle button.active {
  background: var(--text);
  color: #ffffff;
}

.btn {
  padding: 0.65rem 1.15rem;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--text);
  color: #ffffff;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(20, 20, 30, 0.25);
  background: #2a2a35;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-medium);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}

.btn-large {
  padding: 0.95rem 1.6rem;
  font-size: 0.98rem;
  border-radius: 11px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  nav { padding: 0.85rem 1rem; }
}

/* =================================================================
   SECTION 1 · HERO — Hook in 5 seconds
   "Est-ce pour moi?"
   ================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 10rem 2rem 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(27, 52, 84, 0.08) 0%, transparent 60%);
  filter: blur(80px);
}

.hero-glow-2 {
  position: absolute;
  bottom: 5%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 52, 84, 0.06) 0%, transparent 60%);
  filter: blur(70px);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero { min-height: auto; padding-top: 8rem; }
}

.hero-content { text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(27, 52, 84, 0.06);
  border: 1px solid rgba(27, 52, 84, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 1.75rem;
  font-weight: 500;
  animation: fadeInUp 0.7s ease-out;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(27, 52, 84, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 .accent-word {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, var(--brand-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.015em;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 0 2.5rem;
  line-height: 1.5;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle strong {
  color: var(--text);
  font-weight: 500;
}

.hero-cta-block {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}


/* Hero partner badge - Odoo Ready Partner showcase */
.hero-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1rem 0.65rem 0.7rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  margin-top: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.hero-partner-badge:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: rgba(33, 183, 153, 0.35);
}

.hero-partner-logo {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.hero-partner-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-partner-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.hero-partner-sub {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .hero-partner-badge {
    width: 100%;
    box-sizing: border-box;
  }
  .hero-partner-logo {
    height: 40px;
  }
}

.hero-cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-cta-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-faint);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-check {
  color: var(--accent);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero visual - the "before/after" stat blocks */
.hero-visual {
  position: relative;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.stat-cards {
  display: grid;
  gap: 1rem;
  position: relative;
}

.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.stat-card.featured {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F4F7 100%);
  border-color: var(--brand-primary-light);
  box-shadow: var(--shadow-lg);
}

.stat-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.stat-card-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}

.stat-card-num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 4.5vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 400;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Featured stat card with headline-first hierarchy */
.stat-card-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.stat-card-amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.4rem;
  line-height: 1;
}

.stat-card-amount-unit {
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-faint);
  background: none;
  -webkit-text-fill-color: var(--text-faint);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.stat-card-desc {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-top: 0.6rem;
  line-height: 1.45;
}

.stat-card-comparison {
  font-size: 0.78rem;
  color: var(--text-faint);
  font-family: 'Geist Mono', monospace;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.stat-card-comparison strong {
  color: var(--accent);
}

/* Mini comparison bars in hero stat card */
.mini-bars {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  position: relative;
}

.mini-bar {
  display: grid;
  grid-template-columns: 70px 1fr 50px;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.mini-bar-label {
  color: var(--text-faint);
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  white-space: nowrap;
  text-align: right;
}

.mini-bar-track {
  height: 6px;
  background: rgba(20, 20, 30, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.mini-bar-fill {
  height: 100%;
  background: rgba(20, 20, 30, 0.18);
  border-radius: 3px;
  transition: width 1s ease-out;
}

.mini-bar-fill-us {
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--accent) 100%);
  box-shadow: 0 0 12px rgba(27, 52, 84, 0.3);
}

.mini-bar-us .mini-bar-label {
  color: var(--accent);
  font-weight: 600;
}

.mini-bar-us .mini-bar-value {
  color: var(--text);
  font-weight: 600;
}

.mini-bar-value {
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  color: var(--text-faint);
  text-align: right;
}


/* =================================================================
   SECTION 2 · TRUST BAR — Désamorcer le scepticisme
   "C'est sérieux?"
   ================================================================= */
.trust-bar {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-bar-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  flex-shrink: 0;
}

.trust-bar-items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.trust-pill svg {
  color: var(--accent);
  flex-shrink: 0;
}

.trust-pill-featured {
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  padding: 0.4rem 0.95rem 0.4rem 0.5rem;
  border-radius: 999px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.trust-pill-featured strong {
  color: var(--text);
  font-weight: 600;
}

/* Logo officiel Odoo Ready Partner intégré */
.partner-logo-mark {
  height: 28px;
  width: auto;
  display: block;
}

.trust-pill-divider {
  width: 1px;
  height: 18px;
  background: var(--border-medium);
  display: inline-block;
}


@media (max-width: 768px) {
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
  .trust-bar-items { justify-content: flex-start; gap: 1.5rem; }
}

/* =================================================================
   SECTIONS COMMON
   ================================================================= */
section {
  position: relative;
}

.section-padding {
  padding: 7rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 920px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 1.25rem;
  max-width: 800px;
}

.section-title .italic {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
}

.section-title .gradient {
  background: linear-gradient(120deg, var(--brand-primary-glow) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-style: italic;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 620px;
  line-height: 1.55;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-title,
.section-header-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* =================================================================
   SECTION 3 · PROBLEM — Mirror the pain
   "Vous me comprenez?"
   ================================================================= */
.problem-section {
  padding: 7rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.problem-quote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-dim);
}

.problem-quote .highlight {
  color: var(--text);
  position: relative;
  display: inline-block;
}

.problem-quote .strikethrough {
  position: relative;
  color: var(--text-faint);
}

.problem-quote .strikethrough::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: var(--brand-primary);
  transform: rotate(-2deg);
  opacity: 0.7;
}

.problem-quote .replacement {
  background: linear-gradient(120deg, var(--brand-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.problem-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pain-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.pain-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pain-icon {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
  filter: grayscale(0.3);
}

.pain-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.pain-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* =================================================================
   SECTION 4 · DEMO — The proof
   "Ça fait quoi exactement?"
   ================================================================= */
.demo-section {
  padding: 7rem 2rem;
  background: var(--bg-subtle);
}

.demo-window {
  margin-top: 4rem;
  background: #1A1A22;
  border: 1px solid #2A2A33;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.demo-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #2A2A33;
  background: #14141B;
}

.demo-dots {
  display: flex;
  gap: 0.4rem;
}

.demo-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #3A3A45;
}

.demo-url {
  flex: 1;
  text-align: center;
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  color: #8A8A95;
}

.demo-live-badge {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 4px;
}

.demo-live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFFFFF;
  animation: pulse 1.5s ease-in-out infinite;
}

.demo-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  position: relative;
}

@media (max-width: 768px) {
  .demo-body { grid-template-columns: 1fr; }
}

.demo-erp {
  padding: 1.75rem;
  border-right: 1px solid var(--border);
  background: #fafafa;
  color: #1a1a2e;
  position: relative;
}

@media (max-width: 768px) {
  .demo-erp { border-right: none; border-bottom: 1px solid var(--border); }
}

.demo-erp-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #e5e5e8;
}

.demo-invoice {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  font-size: 0.85rem;
  border: 1px solid #e5e5e8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.demo-invoice h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #0a0a0f;
  font-weight: 600;
}

.demo-invoice .invoice-meta {
  color: #888;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.invoice-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px dashed #e5e5e8;
  color: #555;
}

.invoice-row:last-child {
  border-bottom: none;
  font-weight: 600;
  margin-top: 0.5rem;
  border-top: 2px solid #1a1a2e;
  padding-top: 0.7rem;
  color: #1a1a2e;
  font-size: 0.95rem;
}

.demo-claude {
  padding: 1.75rem;
  background: #1A1A22;
  position: relative;
  display: flex;
  flex-direction: column;
}

.demo-claude-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #2A2A33;
}

.claude-message {
  background: #14141B;
  border: 1px solid #2A2A33;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #B0B0BA;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  animation: messageIn 0.5s ease-out forwards;
}

.claude-message:nth-child(2) { animation-delay: 0.6s; }
.claude-message:nth-child(3) { animation-delay: 1.6s; }
.claude-message:nth-child(4) { animation-delay: 2.6s; }

@keyframes messageIn {
  to { opacity: 1; transform: translateY(0); }
}

.claude-message strong { color: #FAFAFA; font-weight: 500; }

.claude-tag {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  padding: 3px 7px;
  border-radius: 4px;
  margin-right: 6px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.claude-tag.warn {
  background: rgba(245, 181, 68, 0.18);
  color: #F5B544;
}

.flow-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid #2A2A33;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
  .flow-arrow { transform: translate(-50%, -50%) rotate(90deg); }
}

.demo-caption {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.demo-caption strong {
  color: var(--text);
  font-weight: 500;
}

/* =================================================================
   SECTION 5 · 3 BENEFITS — The promise
   "Qu'est-ce que je gagne?"
   ================================================================= */
.benefits-section {
  padding: 7rem 2rem;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(27, 52, 84,0.04) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
  position: relative;
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.benefit-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

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

.benefit-num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(4rem, 8vw, 6rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-weight: 400;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.benefit-unit {
  font-size: 0.95rem;
  color: var(--text-faint);
  font-family: 'Geist Mono', monospace;
  margin-bottom: 1.25rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
}

.benefit-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.benefit-detail {
  font-size: 0.82rem;
  color: var(--text-faint);
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-family: 'Geist Mono', monospace;
  line-height: 1.5;
}

/* =================================================================
   SECTION 6 · ROI CALCULATOR — Personalize the value
   "Combien JE gagnerais?"
   ================================================================= */
.roi-section {
  padding: 7rem 2rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.roi-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27, 52, 84, 0.05) 0%, transparent 60%);
  filter: blur(80px);
}

.roi-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
  align-items: start;
  position: relative;
}

@media (max-width: 900px) {
  .roi-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.roi-inputs {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.roi-input {
  margin-bottom: 1.75rem;
}

.roi-input:last-child { margin-bottom: 0; }

.roi-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 0.65rem;
}

.roi-value {
  font-family: 'Geist Mono', monospace;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.95rem;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(20, 20, 30, 0.1);
  border-radius: 2px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(27, 52, 84, 0.15);
  transition: box-shadow 0.2s, transform 0.1s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 8px rgba(27, 52, 84, 0.2);
}

input[type="range"]::-webkit-slider-thumb:active {
  transform: scale(1.1);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.roi-result-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F4F7 50%, #F0F7F5 100%);
  border: 1px solid var(--brand-primary-light);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.roi-result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), var(--accent), transparent);
}

.roi-result-card::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(27, 52, 84, 0.08) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.roi-prelabel {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.85rem;
  position: relative;
}

.roi-big-num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3.5rem, 9vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  position: relative;
  font-weight: 400;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.roi-big-label {
  font-size: 1rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
  margin-bottom: 1.75rem;
  position: relative;
}

.roi-breakdown {
  display: grid;
  gap: 0.85rem;
  position: relative;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.roi-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.roi-line strong { color: var(--text); font-weight: 500; }

/* =================================================================
   SECTION 7 · COMPARISON — Address objections
   "Pourquoi pas X?"
   ================================================================= */
.comparison-section {
  padding: 7rem 2rem;
}

.comparison-wrapper {
  margin-top: 4rem;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 720px;
}

.comparison-table thead th {
  padding: 1.5rem 1.25rem;
  text-align: left;
  font-weight: 500;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Geist Mono', monospace;
}

.comparison-table thead th:first-child {
  font-family: 'Geist', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
}

.comparison-table thead th.us-col {
  background: linear-gradient(180deg, rgba(27, 52, 84, 0.10) 0%, rgba(27, 52, 84, 0.08) 100%);
  color: var(--text);
  position: relative;
  font-family: 'Geist', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  font-weight: 600;
  border-left: 1px solid var(--brand-primary-light);
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--brand-primary-light);
}

.comparison-table thead th.us-col::before {
  content: '★';
  position: absolute;
  top: 8px;
  right: 12px;
  color: var(--accent-warm);
  font-size: 0.85rem;
}

.comparison-table tbody td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody tr:hover {
  background: rgba(20, 20, 30, 0.02);
}

.comparison-table .feature-name {
  color: var(--text);
  font-weight: 500;
}

.comparison-table .feature-sub {
  display: block;
  color: var(--text-faint);
  font-size: 0.78rem;
  font-weight: 400;
  margin-top: 2px;
}

.comparison-table td.us-col { background: rgba(27, 52, 84, 0.04); border-left: 1px solid rgba(27, 52, 84, 0.15); border-right: 1px solid rgba(27, 52, 84, 0.15); }

.check-yes, .check-no, .check-partial {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: relative;
  transition: transform 0.2s;
}

.check-yes {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: white;
  box-shadow: 0 4px 12px -4px rgba(27, 52, 84, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.check-yes svg {
  width: 16px;
  height: 16px;
  stroke-width: 3.5;
}

.check-no {
  background: rgba(220, 53, 69, 0.10);
  color: #c92a3c;
  border: 1px solid rgba(220, 53, 69, 0.18);
}

.check-no svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.check-partial {
  background: linear-gradient(135deg, #F5B544 0%, #E89A1F 100%);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px -4px rgba(184, 134, 11, 0.4);
}

.comparison-table tbody tr:hover .check-yes,
.comparison-table tbody tr:hover .check-no,
.comparison-table tbody tr:hover .check-partial {
  transform: scale(1.08);
}

/* Impact rows in comparison */
.comparison-table tr.impact-row td {
  background: rgba(27, 52, 84, 0.025);
  border-top: 1px solid var(--border-medium);
}

.comparison-table tr.impact-row td.us-col {
  background: linear-gradient(90deg, rgba(27, 52, 84, 0.10) 0%, rgba(27, 52, 84, 0.10) 100%);
  border-left: 1px solid rgba(27, 52, 84, 0.2);
  border-right: 1px solid rgba(27, 52, 84, 0.2);
}

.impact-value {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.impact-value .big {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  font-weight: 400;
}

.impact-value.win .big {
  background: linear-gradient(120deg, var(--brand-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}

.impact-value .small {
  font-family: 'Geist Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-faint);
}

.impact-value.win .small { color: var(--accent); }

.win-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Geist Mono', monospace;
  font-size: 0.66rem;
  background: var(--accent);
  color: #ffffff;
  padding: 3px 7px;
  border-radius: 4px;
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.summary-impact {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF6F8 50%, #F2F8F6 100%);
  border: 1px solid var(--brand-primary-light);
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.summary-impact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), var(--accent), transparent);
}

@media (max-width: 768px) {
  .summary-impact { grid-template-columns: 1fr; gap: 1.5rem; }
}

.summary-item { text-align: center; }

.summary-num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.summary-label {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.summary-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* =================================================================
   SECTION 9 · LOI 25 (FR ONLY)
   "Mes données sont safe?"
   ================================================================= */
.loi25-section {
  display: none;
  padding: 7rem 2rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.025) 0%, var(--bg) 50%, rgba(220, 38, 38, 0.025) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

html[lang="fr"] .loi25-section {
  display: block;
}

.loi25-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.4), transparent);
}

.loi25-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #b91c1c;
  margin-bottom: 1.5rem;
}

.loi25-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .loi25-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.loi25-checks {
  display: grid;
  gap: 1rem;
}

.loi25-check {
  display: flex;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.loi25-check:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.loi25-check-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(27, 52, 84, 0.10);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.loi25-check h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.loi25-check p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.loi25-visual {
  position: sticky;
  top: 100px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.data-flow {
  position: relative;
  z-index: 1;
}

.data-node {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.data-arrow {
  text-align: center;
  color: var(--accent);
  margin: 0.25rem 0;
  font-size: 1.2rem;
}

.data-node-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.data-node-info { flex: 1; }
.data-node-name { font-size: 0.9rem; font-weight: 500; }
.data-node-loc { font-size: 0.78rem; color: var(--text-faint); margin-top: 2px; }
.data-node-flag { font-size: 0.85rem; color: var(--accent); }

/* =================================================================
   SECTION 10 · PROCESS — Horizontal timeline
   "Comment ça marche en 6 étapes simples"
   ================================================================= */
.process-section {
  padding: 7rem 2rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.process-timeline {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* The connecting line behind the dots */
.process-track {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(20, 20, 30, 0.08);
  border-radius: 2px;
  z-index: 0;
}

.process-track-fill {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--accent) 100%);
  border-radius: 2px;
  z-index: 0;
  transform-origin: left;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.75rem;
  z-index: 1;
}

.process-step-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border-medium);
  display: grid;
  place-items: center;
  font-family: 'Geist Mono', monospace;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dim);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  position: relative;
}

.process-step:hover .process-step-dot {
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}

.process-step-dot-start {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  border-color: var(--brand-primary);
  color: white;
  box-shadow: 0 4px 16px -4px rgba(27, 52, 84, 0.4);
}

.process-step-dot-end {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 4px 16px -4px rgba(27, 52, 84, 0.5);
}

.process-step-dot-end svg {
  color: white;
}

.process-step-num {
  display: block;
}

.process-step-time {
  font-family: 'Geist Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.process-step-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.process-step-desc {
  font-size: 0.78rem;
  color: var(--text-faint);
  line-height: 1.4;
}

/* Bottom guarantees row */
.process-guarantees {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.process-guarantee {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.process-guarantee svg {
  color: var(--accent);
  flex-shrink: 0;
}

.process-guarantee strong {
  color: var(--text);
  font-weight: 600;
}

/* Mobile: stack vertically */
@media (max-width: 800px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 3rem;
  }

  .process-track,
  .process-track-fill {
    display: none;
  }

  .process-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    background: var(--bg-elevated);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    gap: 1rem;
  }

  .process-step-dot {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
  }

  .process-guarantees {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
  }
}

/* =================================================================
   SECTION 10 · PRICING — Transparency
   "Combien?"
   ================================================================= */
.pricing-section {
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(27, 52, 84, 0.05) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.pricing-card {
  max-width: 760px;
  margin: 4rem auto 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #FBF8FA 50%, #F4F9F7 100%);
  border: 1px solid var(--brand-primary-light);
  border-radius: 22px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), var(--accent), transparent);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-warm-bg);
  border: 1px solid rgba(184, 134, 11, 0.25);
  color: var(--accent-warm);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.pricing-name {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.pricing-tagline {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.price-prefix {
  font-size: 1rem;
  color: var(--text-dim);
}

.price-amount {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3.5rem, 7vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  font-weight: 400;
}

.price-currency {
  font-family: 'Geist Mono', monospace;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.price-note {
  font-size: 0.88rem;
  color: var(--text-faint);
  margin-bottom: 2rem;
}

.pricing-includes {
  display: grid;
  gap: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pricing-includes h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  margin-bottom: 0.85rem;
}

.include-item {
  display: flex;
  align-items: start;
  gap: 0.85rem;
  padding: 0.5rem 0;
}

.include-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(27, 52, 84, 0.10);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.include-content { flex: 1; }
.include-title { font-weight: 500; font-size: 0.95rem; }
.include-desc { font-size: 0.85rem; color: var(--text-dim); margin-top: 2px; line-height: 1.45; }

.pricing-cta {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.75rem;
}

.pricing-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-faint);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Custom pricing callout - positioning ourselves for bigger contracts */
.pricing-custom {
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 1.75rem 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  gap: 1.25rem;
  align-items: start;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  position: relative;
}

.pricing-custom:hover {
  border-color: var(--brand-primary-light);
  box-shadow: var(--shadow-md);
}

.pricing-custom-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(27, 52, 84, 0.1), rgba(27, 52, 84, 0.08));
  color: var(--brand-primary);
  display: grid;
  place-items: center;
}

.pricing-custom-content {
  flex: 1;
}

.pricing-custom-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
  color: var(--text);
}

.pricing-custom-content h4 .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.pricing-custom-content p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.55;
}

@media (max-width: 600px) {
  .pricing-custom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* =================================================================
   SECTION 11 · CTA + FORM — Conversion
   "OK, je veux parler"
   ================================================================= */
.contact-section {
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-subtle);
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(27, 52, 84, 0.05) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  margin-top: 3rem;
  position: relative;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.05;
}

.contact-info h2 .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.contact-info p {
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.contact-perks {
  display: grid;
  gap: 1.25rem;
}

.perk {
  display: flex;
  gap: 0.85rem;
  align-items: start;
}

.perk-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(27, 52, 84, 0.10);
  color: var(--accent);
  display: grid;
  place-items: center;
}

.perk h4 { font-size: 0.98rem; font-weight: 500; margin-bottom: 0.2rem; }
.perk p { font-size: 0.88rem; color: var(--text-dim); margin: 0; line-height: 1.5; }

/* Smart form */
.smart-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.smart-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), var(--accent), transparent);
}

.form-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.progress-step {
  flex: 1;
  height: 3px;
  background: rgba(20, 20, 30, 0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-step.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: fillProgress 0.4s ease-out forwards;
}

.progress-step.complete { background: var(--accent); }

@keyframes fillProgress {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.form-step {
  display: none;
  animation: stepIn 0.4s ease-out;
}

.form-step.active { display: block; }

@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-step h3 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.form-step > p {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.form-field { margin-bottom: 1rem; }

.form-field label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-medium);
  border-radius: 9px;
  padding: 0.75rem 0.95rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 52, 84, 0.12);
  background: var(--bg-elevated);
}

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

.option-card {
  background: var(--bg);
  border: 1px solid var(--border-medium);
  border-radius: 11px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  font-family: inherit;
  color: var(--text);
}

.option-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.option-card.selected {
  border-color: var(--accent);
  background: rgba(27, 52, 84, 0.06);
}

.option-card .option-icon {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.option-card .option-title { font-size: 0.88rem; font-weight: 500; }
.option-card .option-desc { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.2rem; }

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* =================================================================
   FOOTER
   ================================================================= */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
  background: var(--bg-elevated);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.footer-col h5 {
  font-size: 0.78rem;
  font-family: 'Geist Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-tagline {
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  color: var(--text-dim);
  line-height: 1.4;
  margin-top: 0.85rem;
  max-width: 360px;
  letter-spacing: -0.01em;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-faint);
}


/* Social links - footer */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  width: fit-content;
}

.social-link:hover {
  color: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px rgba(27, 52, 84, 0.15);
}

.social-link svg {
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.social-link[aria-label="Facebook"]:hover svg {
  color: #1877F2;
}

.social-link[aria-label="LinkedIn"]:hover svg {
  color: #0A66C2;
}

/* Sticky CTA on scroll */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta .btn {
  box-shadow: 0 16px 40px -8px rgba(20, 20, 30, 0.25), 0 4px 12px rgba(20, 20, 30, 0.1);
}

@media (max-width: 768px) {
  .sticky-cta { bottom: 1rem; right: 1rem; left: 1rem; }
  .sticky-cta .btn { width: 100%; justify-content: center; }
}
