/* ═══════════════════════════════════════════════════════════
   SECURIT EXPERT — Design system v6.1 (validé 2026-05-02)
   Inspirations : Pennylane / Alan / Ledger
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink: #040253;
  --ink-soft: #1A1A4F;
  --blue: #0a0bf5;
  --blue-light: #6E6FFF;
  --bg: #FFFFFF;
  --bg-cream: #FBF8F3;
  --bg-mint: #E8F5EE;
  --bg-blue-soft: #EEF0FF;
  --bg-yellow: #FFF6D9;
  --bg-pink: #FDF1F2;
  --bg-lavender: #F2EBFD;
  --bg-warm: #FCF6EE;
  --card: #FFFFFF;
  --line: #ECEAE3;
  --text: #1A1A2E;
  --text-soft: #4A4A5E;
  --muted: #8A8A95;
  --green: #2D9F5A;
  --orange: #FF8B3D;
  --gold: #FFB400;
  --red: #E5484D;
  --container-max: 1240px;
  --section-pad: clamp(56px, 7vw, 96px);
  --font-display: 'Mitr', system-ui, sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0 }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth }
body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block }
button, input, select, textarea { font-family: inherit }
a { color: inherit; text-decoration: none }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important }
}

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px }
@media (max-width: 768px) { .container { padding: 0 18px } }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 20px -8px rgba(10, 11, 245, .5);
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(10, 11, 245, .6);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, .12);
}
.btn-light:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}
.btn .arrow { transition: transform .3s ease; display: inline-block }
.btn:hover .arrow { transform: translateX(3px) }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: gap .25s ease;
}
.link-arrow:hover { gap: 10px }
.link-arrow .arrow { transition: transform .3s ease }
.link-arrow:hover .arrow { transform: translateX(3px) }

/* Tags */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg-blue-soft);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
}
.tag-mint { background: var(--bg-mint); color: var(--green) }
.tag-yellow { background: var(--bg-yellow); color: #B8860B }
.tag-lavender { background: var(--bg-lavender); color: #6739D5 }
.tag-pink { background: var(--bg-pink); color: #C73E58 }
.tag-warm { background: var(--bg-warm); color: var(--orange) }

/* ═══ HEADER ═══ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, .96);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 28px;
}
.header-logo-img { height: 26px; width: auto }
.header-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color .2s ease;
}
.header-nav a:hover { color: var(--ink) }
.header-actions { display: flex; gap: 12px; align-items: center }
.header-actions .btn { padding: 10px 18px; font-size: 13px }
.header-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
}
.header-toggle svg { width: 16px; stroke: var(--ink) }
@media (max-width: 1024px) {
  .header-nav { display: none }
  .header-toggle { display: flex }
  .header-actions .btn-outline { display: none }
}

/* Mobile drawer */
.drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99;
  padding: 80px 24px 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}
.drawer.open { display: flex }
.drawer a {
  padding: 16px 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.drawer .btn { margin-top: 24px; width: 100% }

/* ═══ HERO HOMEPAGE (avec mockup dashboard) ═══ */
.hero {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; gap: 48px } }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(4, 2, 83, .04);
}
.hero-tag-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(45, 159, 90, .2);
  animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(45, 159, 90, .2) }
  50% { box-shadow: 0 0 0 6px rgba(45, 159, 90, .08) }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--ink) 50%, var(--blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.hero-lead {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px }
.hero-trust { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-soft); text-decoration: none; transition: color .2s ease }
.hero-trust:hover { color: var(--ink) }
.hero-trust:hover .hero-trust-arrow { transform: translateX(3px); opacity: 1 }
.hero-trust-stars { color: var(--gold); letter-spacing: 1px; font-size: 13px }
.hero-trust b { color: var(--ink); font-weight: 700 }
.hero-trust-arrow { color: var(--blue); margin-left: 2px; opacity: .6; transition: transform .25s ease, opacity .2s ease; display: inline-block }

/* ═══ HERO PAGES INTERNES (sans mockup) ═══ */
.page-hero {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 16px 0 20px;
}
.page-hero h1 .gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--ink) 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.page-hero p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 28px;
}
.page-hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap }

/* Breadcrumb */
.breadcrumb {
  font-size: 12.5px;
  color: var(--muted);
  padding: 16px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a {
  color: var(--muted);
  transition: color .2s ease;
}
.breadcrumb a:hover { color: var(--blue) }
.breadcrumb .sep { opacity: .5 }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 500 }

/* MOCKUP dashboard (homepage) */
.hero-mockup { position: relative; perspective: 1500px }
.dashboard {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 64px -20px rgba(4, 2, 83, .25), 0 0 0 1px rgba(4, 2, 83, .04);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(2deg);
  animation: dashboardFloat 8s ease-in-out infinite;
}
@keyframes dashboardFloat {
  0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0) }
  50% { transform: rotateY(-3deg) rotateX(1deg) translateY(-8px) }
}
.dashboard-header { background: var(--bg-cream); padding: 14px 18px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line) }
.dashboard-dot { width: 10px; height: 10px; border-radius: 50% }
.dashboard-dot:nth-child(1) { background: #FF5F57 }
.dashboard-dot:nth-child(2) { background: #FEBC2E }
.dashboard-dot:nth-child(3) { background: #28C840 }
.dashboard-url {
  margin-left: 12px;
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--ink);
  font-family: 'SF Mono', monospace;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dashboard-url::before {
  content: '🔒';
  font-size: 10px;
  opacity: 0.5;
}
.dashboard-url-tagline {
  color: var(--blue);
  font-weight: 600;
  margin-left: 2px;
}
.dashboard-body { padding: 22px }
.dashboard-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px }
.dashboard-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em }
.dashboard-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: var(--bg-mint);
  color: var(--green);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.dashboard-status::before { content: ''; width: 5px; height: 5px; background: var(--green); border-radius: 50% }
.dashboard-services { display: grid; gap: 8px }
.dashboard-service {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: var(--bg-cream);
  border-radius: 10px;
  transition: all .25s ease;
}
.dashboard-service:hover { background: var(--bg-blue-soft); transform: translateX(2px) }
.dashboard-service-icon {
  width: 32px; height: 32px;
  background: #fff;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(4, 2, 83, .06);
  flex-shrink: 0;
}
.dashboard-service-icon img { width: 20px; height: 20px; object-fit: contain }
.dashboard-service-name { font-size: 13px; font-weight: 600; color: var(--ink); display: block; line-height: 1.3 }
.dashboard-service-desc { font-size: 11px; color: var(--muted); display: block; margin-top: 1px }
.dashboard-service-check { color: var(--green); font-size: 14px; font-weight: 700 }

.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 12px 32px -8px rgba(4, 2, 83, .2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  border: 1px solid var(--line);
}
.float-card-icon {
  width: 32px; height: 32px;
  background: var(--bg-blue-soft);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--blue);
}
.float-card-icon.green { background: var(--bg-mint); color: var(--green) }
.float-card-content { line-height: 1.3 }
.float-card-title { font-size: 12px; font-weight: 700; color: var(--ink); display: block }
.float-card-sub { font-size: 11px; color: var(--muted) }
.float-card-1 { top: -28px; left: -68px; animation: floatCard1 6s ease-in-out infinite }
.float-card-2 { bottom: -28px; right: -68px; animation: floatCard2 7s ease-in-out infinite .8s }
@media (max-width: 1100px) {
  .float-card-1 { top: -20px; left: -32px }
  .float-card-2 { bottom: -20px; right: -32px }
}
@keyframes floatCard1 { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }
@keyframes floatCard2 { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(8px) } }
@media (max-width: 600px) {
  .float-card-1 { left: -8px; top: -12px }
  .float-card-2 { right: -8px; bottom: -8px }
  .dashboard { transform: none; animation: none }
}

/* TRUST STRIP */
/* ═══ SECTIONS ═══ */
.section { padding: var(--section-pad) 0; position: relative }
.section-cream { background: var(--bg-cream) }
.section-mint { background: var(--bg-mint) }
.section-blue-soft { background: var(--bg-blue-soft) }
.section-warm { background: var(--bg-warm) }
.section-ink { background: var(--ink); color: #fff }
.section-ink h2, .section-ink h3 { color: #fff }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 16px;
}
.section-head p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--text-soft);
}
.section-ink .section-head p { color: rgba(255, 255, 255, .7) }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr } }
/* Variante 4 colonnes — pour grilles de 4 cards (niveaux eIDAS, etc.) */
.services-grid.services-grid-4 { grid-template-columns: repeat(4, 1fr) }
@media (max-width: 1024px) { .services-grid.services-grid-4 { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 560px) { .services-grid.services-grid-4 { grid-template-columns: 1fr } }
/* Variante 5 colonnes — pour les grilles secteurs */
@media (max-width: 1100px) { .usecase-grid[style*="repeat(5"] { grid-template-columns: repeat(3, 1fr) !important } }
@media (max-width: 720px) { .usecase-grid[style*="repeat(5"] { grid-template-columns: repeat(2, 1fr) !important } }
@media (max-width: 480px) { .usecase-grid[style*="repeat(5"] { grid-template-columns: 1fr !important } }
/* Variante 3 colonnes — responsive */
@media (max-width: 880px) { .usecase-grid[style*="repeat(3"] { grid-template-columns: repeat(2, 1fr) !important } }
@media (max-width: 480px) { .usecase-grid[style*="repeat(3"] { grid-template-columns: 1fr !important } }
/* Grille témoignages responsive */
@media (max-width: 720px) { .horodatage-testimonials { grid-template-columns: 1fr !important } }

/* ═══ Section head CTA — boutons sous le H2 d'une section ═══ */
.section-head-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* ═══ AO SCHEMA — De la candidature au dépôt signé ═══ */
.ao-schema {
  max-width: 1240px;
  margin: 48px auto 0;
}

/* Entrée / Sortie */
.ao-entry, .ao-end {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  border-radius: 18px;
  position: relative;
}
.ao-entry {
  background: linear-gradient(135deg, var(--bg-blue-soft) 0%, #fff 100%);
  border: 1px solid rgba(4, 2, 83, 0.15);
  margin-bottom: 14px;
}
.ao-end {
  background: linear-gradient(135deg, var(--bg-mint) 0%, #fff 100%);
  border: 1px solid rgba(16, 159, 86, 0.28);
  box-shadow: 0 14px 36px rgba(16, 159, 86, 0.10);
  margin-top: 14px;
}
.ao-entry-icon, .ao-end-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ao-entry-icon { color: var(--blue) }
.ao-end-icon { color: var(--green) }
.ao-entry-icon img, .ao-end-icon img { width: 34px; height: 34px; }
.ao-entry-text, .ao-end-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ao-entry-tag, .ao-end-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ao-entry-tag { color: var(--blue) }
.ao-end-tag { color: var(--green) }
.ao-entry-text strong, .ao-end-text strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.ao-entry-text span:not(.ao-entry-tag),
.ao-end-text span:not(.ao-end-tag) {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.ao-end-medal {
  font-size: 32px;
  color: var(--orange, #e76e1e);
  flex-shrink: 0;
  text-shadow: 0 4px 10px rgba(231, 110, 30, 0.30);
}

/* 4 étapes */
.ao-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  margin: 6px 0;
}
.ao-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #6b6cff 33%, var(--orange, #e76e1e) 66%, var(--green) 100%);
  border-radius: 3px;
  z-index: 0;
}
.ao-step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(4, 2, 83, 0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ao-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(4, 2, 83, 0.10);
}
.ao-step-day {
  align-self: flex-start;
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue);
  padding: 5px 11px;
  background: var(--bg-blue-soft);
  border-radius: 100px;
}
.ao-step-2 .ao-step-day { color: #6b6cff; background: rgba(107, 108, 255, 0.10) }
.ao-step-3 .ao-step-day { color: var(--orange, #e76e1e); background: rgba(231, 110, 30, 0.10) }
.ao-step-4 .ao-step-day { color: var(--green); background: var(--bg-mint) }
.ao-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px auto 4px;
  box-shadow: 0 6px 16px rgba(4, 2, 83, 0.08);
}
.ao-step-2 .ao-step-icon { border-color: #6b6cff }
.ao-step-3 .ao-step-icon { border-color: var(--orange, #e76e1e); box-shadow: 0 6px 16px rgba(231, 110, 30, 0.18) }
.ao-step-4 .ao-step-icon { border-color: var(--green); box-shadow: 0 6px 16px rgba(16, 159, 86, 0.20) }
.ao-step-icon img { width: 28px; height: 28px; object-fit: contain; }
.ao-step h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 0;
  letter-spacing: -0.01em;
  text-align: center;
}
.ao-step > p {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.ao-step-doc {
  margin-top: 8px;
  padding: 10px 12px;
  background: var(--bg-cream);
  border-radius: 10px;
  border: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ao-step-doc-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.ao-step-doc-list {
  font-size: 11px;
  color: var(--ink);
  line-height: 1.45;
}
.ao-step-doc-highlight {
  background: rgba(231, 110, 30, 0.08);
  border-color: rgba(231, 110, 30, 0.30);
  border-style: solid;
}
.ao-step-doc-highlight .ao-step-doc-label { color: var(--orange, #e76e1e); }
.ao-step-doc-success {
  background: var(--bg-mint);
  border-color: rgba(16, 159, 86, 0.30);
  border-style: solid;
}
.ao-step-doc-success .ao-step-doc-label { color: var(--green); }

/* Glossaire */
.ao-glossary {
  margin-top: 26px;
  padding: 22px 26px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 14px;
  position: relative;
}
.ao-glossary-tag {
  position: absolute;
  top: -10px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
}
.ao-glossary-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 24px;
  margin-top: 8px;
}
.ao-glossary-items > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.4;
}
.ao-glossary-items strong {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1024px) {
  .ao-steps { grid-template-columns: repeat(2, 1fr); row-gap: 18px }
  .ao-steps::before { display: none }
  .ao-glossary-items { grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 560px) {
  .ao-steps { grid-template-columns: 1fr }
  .ao-entry, .ao-end { grid-template-columns: 56px 1fr; padding: 18px 20px }
  .ao-end-medal { grid-column: 1 / -1; text-align: center }
  .ao-glossary-items { grid-template-columns: 1fr }
}

/* ═══ API SCHEMA — Intégrer l'API Universign ═══ */
.api-intro {
  max-width: 1240px;
  margin: 30px auto 28px;
  padding: 16px 22px;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}
.api-intro-icon {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.api-intro strong { color: var(--ink); font-weight: 600; }

.api-node-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}
.api-node-desc strong { color: var(--ink); font-weight: 600; }
.api-node-desc-light { color: rgba(255, 255, 255, 0.86); position: relative; z-index: 1; }
.api-node-desc-light strong { color: #fff; }

.api-examples {
  list-style: none;
  padding: 12px 14px;
  margin: 4px 0 0;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.api-examples li {
  font-size: 12.5px;
  color: var(--ink);
  font-style: italic;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.api-examples li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 700;
}

.api-bullet {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange, #e76e1e);
  flex-shrink: 0;
}

.api-schema {
  max-width: 1240px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1fr 90px 1.2fr 90px 1fr;
  grid-template-rows: auto auto;
  align-items: stretch;
  gap: 0;
}
.api-node {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(4, 2, 83, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.api-node:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(4, 2, 83, 0.10); }
.api-node-app { background: linear-gradient(180deg, var(--bg-blue-soft) 0%, #fff 50%); border-color: rgba(4, 2, 83, 0.15); }
.api-node-cloud { background: linear-gradient(180deg, var(--bg-mint) 0%, #fff 50%); border-color: rgba(16, 159, 86, 0.22); }
.api-node-core {
  position: relative;
  background: linear-gradient(135deg, var(--blue) 0%, #1d1c8a 100%);
  border-color: rgba(4, 2, 83, 0.4);
  color: #fff;
  box-shadow: 0 26px 60px rgba(4, 2, 83, 0.28);
  overflow: hidden;
  transform: scale(1.02);
  z-index: 2;
}
.api-node-pulse {
  position: absolute;
  top: -50%; left: -20%;
  width: 140%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(231, 110, 30, 0.20) 0%, transparent 40%);
  pointer-events: none;
  animation: einvGlow 9s ease-in-out infinite alternate;
}
.api-node-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.api-node-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 5px 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.api-node-tag-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}
.api-node-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.api-node-icon img { width: 22px; height: 22px; }
.api-node-icon-light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}
.api-node-icon-light img { filter: brightness(0) invert(1); }
.api-node-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.api-node-title-light { color: #fff; }

/* Code snippet */
.api-snippet {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--ink);
  position: relative;
  margin-top: 4px;
}
.api-snippet-tab {
  position: absolute;
  top: -10px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 3px 9px;
  background: var(--blue);
  color: #fff;
  border-radius: 4px;
}
.api-snippet code {
  display: block;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}
.api-snippet-body {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 11px;
}
.api-method {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-right: 6px;
}
.api-path { color: var(--blue); font-weight: 600; }

/* Endpoints list (core, en français) */
.api-endpoints {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 14px 16px;
  margin: 4px 0 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.api-endpoints li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #fff;
  line-height: 1.4;
}

/* Services cloud */
.api-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.api-services li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.api-services li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 159, 86, 0.18);
}

/* SVG arrows */
.api-arrow {
  width: 100%;
  height: 80px;
  align-self: center;
}

/* Result strip */
.api-result {
  grid-column: 1 / -1;
  margin-top: 24px;
  background: #fff;
  border: 2px dashed var(--green);
  border-radius: 14px;
  padding: 18px 22px;
  position: relative;
}
.api-result-tag {
  position: absolute;
  top: -11px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
}
.api-result-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 6px;
}
.api-result-items > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
}
.api-result-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-mint);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.api-result-items strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.api-result-items span:not(.api-result-icon) {
  font-size: 11.5px;
  color: var(--text-soft);
}

/* Features */
.api-features {
  max-width: 1240px;
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.api-feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.api-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.api-feature-icon img { width: 28px; height: 28px; }
.api-feature strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: block;
}
.api-feature span {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.45;
  margin-top: 2px;
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .api-schema { grid-template-columns: 1fr; row-gap: 18px; }
  .api-arrow { display: none; }
  .api-node-core { transform: none; }
  .api-result-items { grid-template-columns: 1fr; }
  .api-features { grid-template-columns: 1fr; }
}

/* ═══ SIGN STEPS — Signer un document avec illustrations SVG ═══ */
.sign-steps {
  max-width: 1180px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}
.sign-steps::before {
  content: '';
  position: absolute;
  top: 80px;
  bottom: 80px;
  left: 50%;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--line) 0 6px, transparent 6px 12px);
  transform: translateX(-50%);
  z-index: 0;
}
.sign-step {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sign-step-reverse { grid-template-columns: 1fr 1.1fr; }
.sign-step-reverse .sign-step-media { order: 2; }
.sign-step-reverse .sign-step-content { order: 1; }

.sign-step-media {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(4, 2, 83, 0.08);
  transition: transform .4s ease, box-shadow .4s ease;
}
.sign-step-media:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 70px rgba(4, 2, 83, 0.14);
}
.sign-step-media::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(4, 2, 83, 0.10);
  border-radius: 26px;
  pointer-events: none;
  z-index: -1;
}
.sign-step-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.sign-step-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sign-step-num {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 6px 14px;
  background: var(--bg-blue-soft);
  border-radius: 100px;
}
.sign-step-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.sign-step-content > p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}
.sign-step-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sign-step-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.45;
}
.sign-step-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-mint);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23109f56'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.sign-step-badge {
  align-self: flex-start;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 6px 16px rgba(16, 159, 86, 0.30);
}
.sign-step-badge::before { content: '✓'; }

/* Variante finale (étape 5) — bordure verte */
.sign-step-end .sign-step-media {
  border-color: rgba(16, 159, 86, 0.30);
  box-shadow: 0 20px 50px rgba(16, 159, 86, 0.12);
}
.sign-step-end .sign-step-num {
  color: var(--green);
  background: var(--bg-mint);
}

/* Responsive */
@media (max-width: 880px) {
  .sign-steps::before { display: none; }
  .sign-step, .sign-step-reverse { grid-template-columns: 1fr; gap: 24px; }
  .sign-step-reverse .sign-step-media,
  .sign-step-reverse .sign-step-content { order: unset; }
  .sign-step-content h3 { font-size: 22px; }
  .sign-step-media { padding: 18px; }
  .sign-steps { gap: 40px; }
}

/* ═══ ONBOARDING SCHEMA — Créer votre compte Universign ═══ */
.onboarding-schema {
  max-width: 1240px;
  margin: 48px auto 0;
}

/* Timeline header */
.onboarding-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 30px;
  padding: 0 16px;
}
.onboarding-bar {
  position: absolute;
  top: 14px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #6b6cff 33%, var(--orange, #e76e1e) 66%, var(--green) 100%);
  border-radius: 3px;
  z-index: 0;
}
.onboarding-time {
  position: relative;
  z-index: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.onboarding-time::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  box-shadow: 0 4px 10px rgba(4, 2, 83, 0.18);
}
.onboarding-time-2::before { border-color: #6b6cff }
.onboarding-time-3::before { border-color: var(--orange, #e76e1e) }
.onboarding-time-4::before { border-color: var(--green); box-shadow: 0 4px 10px rgba(16, 159, 86, 0.20) }

/* 4 jalons */
.onboarding-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.onboarding-milestone {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(4, 2, 83, 0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.onboarding-milestone:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(4, 2, 83, 0.10);
}
.onboarding-milestone-cond {
  background: linear-gradient(180deg, #fff5ec 0%, #fff 65%);
  border-color: rgba(231, 110, 30, 0.25);
  border-style: dashed;
}
.onboarding-milestone-end {
  background: linear-gradient(180deg, var(--bg-mint) 0%, #fff 60%);
  border-color: rgba(16, 159, 86, 0.28);
  box-shadow: 0 16px 40px rgba(16, 159, 86, 0.10);
}
.onboarding-cond-flag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--orange, #e76e1e);
  color: #fff;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(231, 110, 30, 0.28);
}
.onboarding-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: rgba(4, 2, 83, 0.10);
  letter-spacing: -0.04em;
  line-height: 1;
  align-self: flex-start;
}
.onboarding-milestone:nth-child(2) .onboarding-num { color: rgba(107, 108, 255, 0.18) }
.onboarding-milestone-cond .onboarding-num { color: rgba(231, 110, 30, 0.22) }
.onboarding-milestone-end .onboarding-num { color: rgba(16, 159, 86, 0.24) }
.onboarding-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -32px;
  margin-left: auto;
  box-shadow: 0 6px 16px rgba(4, 2, 83, 0.10);
}
.onboarding-milestone:nth-child(2) .onboarding-icon { border-color: #6b6cff }
.onboarding-milestone-cond .onboarding-icon { border-color: var(--orange, #e76e1e); box-shadow: 0 6px 16px rgba(231, 110, 30, 0.20) }
.onboarding-milestone-end .onboarding-icon { border-color: var(--green); box-shadow: 0 6px 16px rgba(16, 159, 86, 0.22) }
.onboarding-icon img { width: 28px; height: 28px; }
.onboarding-milestone h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0 0;
  letter-spacing: -0.01em;
}
.onboarding-milestone > p {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}
.onboarding-details {
  list-style: none;
  padding: 12px 0 0;
  margin: 8px 0 0;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.onboarding-details li {
  font-size: 12px;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.onboarding-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 11px;
}
.onboarding-badge-success {
  align-self: flex-start;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
}

/* Note conditionnelle */
.onboarding-note {
  margin-top: 22px;
  padding: 14px 18px;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange, #e76e1e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.onboarding-note-icon {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange, #e76e1e);
  flex-shrink: 0;
}
.onboarding-note strong { color: var(--ink); font-weight: 600 }

/* Responsive */
@media (max-width: 1024px) {
  .onboarding-timeline { grid-template-columns: repeat(2, 1fr); row-gap: 14px }
  .onboarding-bar { display: none }
  .onboarding-milestones { grid-template-columns: repeat(2, 1fr); row-gap: 18px }
}
@media (max-width: 560px) {
  .onboarding-timeline { grid-template-columns: 1fr; row-gap: 8px }
  .onboarding-time { flex-direction: row; gap: 10px; justify-content: flex-start }
  .onboarding-milestones { grid-template-columns: 1fr }
}

/* ═══ PARTNER SCHEMA — Onboarding partenaire en 10 jours ═══ */
.partner-schema {
  max-width: 1240px;
  margin: 48px auto 0;
  position: relative;
}
.partner-start, .partner-end {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  border-radius: 18px;
  position: relative;
}
.partner-start {
  background: linear-gradient(135deg, var(--bg-blue-soft) 0%, #fff 100%);
  border: 1px solid rgba(4, 2, 83, 0.15);
  margin-bottom: 14px;
}
.partner-end {
  background: linear-gradient(135deg, var(--bg-mint) 0%, #fff 100%);
  border: 1px solid rgba(16, 159, 86, 0.28);
  box-shadow: 0 14px 36px rgba(16, 159, 86, 0.10);
  margin-top: 14px;
}
.partner-start-icon, .partner-end-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.partner-start-icon { color: var(--blue) }
.partner-end-icon { color: var(--green) }
.partner-start-icon img, .partner-end-icon img { width: 34px; height: 34px; }
.partner-start-text, .partner-end-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.partner-start-tag, .partner-end-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.partner-start-tag { color: var(--blue) }
.partner-end-tag { color: var(--green) }
.partner-start-text strong, .partner-end-text strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.partner-start-text span:not(.partner-start-tag),
.partner-end-text span:not(.partner-end-tag) {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.partner-end-medal {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  text-shadow: 0 4px 10px rgba(16, 159, 86, 0.30);
}

.partner-path-svg {
  display: block;
  width: 100%;
  height: 30px;
  margin: 0 0 -8px;
}

.partner-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 6px 0 0;
}
.partner-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 30px rgba(4, 2, 83, 0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.partner-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(4, 2, 83, 0.10);
}
.partner-pin {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(4, 2, 83, 0.18);
}
.partner-pin span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
}
.partner-step:nth-child(2) .partner-pin { border-color: #6b6cff; }
.partner-step:nth-child(2) .partner-pin span { color: #6b6cff; }
.partner-step:nth-child(3) .partner-pin { border-color: var(--orange, #e76e1e); }
.partner-step:nth-child(3) .partner-pin span { color: var(--orange, #e76e1e); }
.partner-pin-end { border-color: var(--green) !important; }
.partner-pin-end span { color: var(--green) !important; }

.partner-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
}
.partner-time {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: var(--bg-cream);
  color: var(--ink);
  border-radius: 100px;
}
.partner-duration {
  font-size: 10.5px;
  color: var(--text-soft);
  font-family: var(--font-display);
  font-weight: 600;
}
.partner-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px auto 4px;
}
.partner-icon-2 { border-color: #6b6cff; }
.partner-icon-3 { border-color: var(--orange, #e76e1e); }
.partner-icon-4 { border-color: var(--green); }
.partner-icon img { width: 28px; height: 28px; object-fit: contain; }
.partner-step h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0 0;
  text-align: center;
  letter-spacing: -0.01em;
}
.partner-step > p {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.partner-roles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px dashed var(--line);
}
.partner-role {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.partner-role-tag {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
}
.partner-role-you { background: var(--bg-blue-soft); color: var(--blue); }
.partner-role-us { background: var(--bg-mint); color: var(--green); }
.partner-role ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.partner-role li {
  font-size: 11.5px;
  color: var(--ink);
  line-height: 1.45;
  padding-left: 12px;
  position: relative;
}
.partner-role li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}
.partner-role:first-child li::before { color: var(--blue); }
.partner-role:last-child li::before { color: var(--green); opacity: 0.7; }

@media (max-width: 1024px) {
  .partner-steps { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .partner-path-svg { display: none; }
}
@media (max-width: 560px) {
  .partner-steps { grid-template-columns: 1fr; row-gap: 24px; }
  .partner-start, .partner-end { grid-template-columns: 56px 1fr; padding: 18px 20px; }
  .partner-end-medal { grid-column: 1 / -1; text-align: center; }
}

/* ═══ JOURNEY SCHEMA — De votre besoin à la 1ère signature ═══ */
.journey-schema {
  max-width: 1240px;
  margin: 48px auto 0;
  position: relative;
}

/* Départ */
.journey-start, .journey-end {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  border-radius: 18px;
  position: relative;
}
.journey-start {
  background: linear-gradient(135deg, var(--bg-blue-soft) 0%, #fff 100%);
  border: 1px solid rgba(4, 2, 83, 0.15);
  margin-bottom: 14px;
}
.journey-end {
  background: linear-gradient(135deg, var(--bg-mint) 0%, #fff 100%);
  border: 1px solid rgba(16, 159, 86, 0.25);
  margin-top: 14px;
  box-shadow: 0 14px 36px rgba(16, 159, 86, 0.10);
}
.journey-start-icon, .journey-end-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.journey-start-icon { color: var(--blue) }
.journey-end-icon { color: var(--green) }
.journey-start-icon img, .journey-end-icon img { width: 34px; height: 34px; }
.journey-start-text, .journey-end-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.journey-start-tag, .journey-end-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.journey-start-tag { color: var(--blue) }
.journey-end-tag { color: var(--green) }
.journey-start-text strong, .journey-end-text strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.journey-start-text span:not(.journey-start-tag),
.journey-end-text span:not(.journey-end-tag):not(.journey-end-stars) {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
.journey-end-stars {
  font-size: 22px;
  color: var(--orange, #e76e1e);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* Path décoratif */
.journey-path-svg {
  display: block;
  width: 100%;
  height: 30px;
  margin: 0 0 -8px;
}

/* 4 jalons */
.journey-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 6px 0 0;
}
.journey-milestone {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 30px rgba(4, 2, 83, 0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.journey-milestone:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(4, 2, 83, 0.10);
}
.journey-pin {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(4, 2, 83, 0.18);
}
.journey-pin span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
}
.journey-milestone:nth-child(2) .journey-pin { border-color: #6b6cff; }
.journey-milestone:nth-child(2) .journey-pin span { color: #6b6cff; }
.journey-milestone:nth-child(3) .journey-pin { border-color: var(--orange, #e76e1e); }
.journey-milestone:nth-child(3) .journey-pin span { color: var(--orange, #e76e1e); }
.journey-pin-end { border-color: var(--green) !important; }
.journey-pin-end span { color: var(--green) !important; }

.journey-milestone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
}
.journey-time {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: var(--bg-cream);
  color: var(--ink);
  border-radius: 100px;
}
.journey-duration {
  font-size: 10.5px;
  color: var(--text-soft);
  font-family: var(--font-display);
  font-weight: 600;
}
.journey-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px auto 4px;
}
.journey-icon-2 { border-color: #6b6cff; }
.journey-icon-3 { border-color: var(--orange, #e76e1e); }
.journey-icon-4 { border-color: var(--green); }
.journey-icon img { width: 28px; height: 28px; object-fit: contain; }
.journey-milestone h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0 0;
  text-align: center;
  letter-spacing: -0.01em;
}
.journey-milestone > p {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* Roles : vous / nous */
.journey-roles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px dashed var(--line);
}
.journey-role {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.journey-role-tag {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
}
.journey-role-you {
  background: var(--bg-blue-soft);
  color: var(--blue);
}
.journey-role-us {
  background: var(--bg-mint);
  color: var(--green);
}
.journey-role ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.journey-role li {
  font-size: 11.5px;
  color: var(--ink);
  line-height: 1.45;
  padding-left: 12px;
  position: relative;
}
.journey-role li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}
.journey-role:first-child li::before { color: var(--blue); opacity: 0.6 }
.journey-role:last-child li::before { color: var(--green); opacity: 0.7 }

/* Responsive */
@media (max-width: 1024px) {
  .journey-milestones { grid-template-columns: repeat(2, 1fr); row-gap: 28px }
  .journey-path-svg { display: none }
}
@media (max-width: 560px) {
  .journey-milestones { grid-template-columns: 1fr; row-gap: 24px }
  .journey-start, .journey-end { grid-template-columns: 56px 1fr; padding: 18px 20px; }
  .journey-end-stars { grid-column: 1 / -1; text-align: center; }
}

/* ═══ SIGNATURE LEVELS — 4 niveaux sur une ligne + addon + Universign ═══ */
.signature-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.signature-level {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: 0 8px 24px rgba(4, 2, 83, 0.04);
}
.signature-level:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(4, 2, 83, 0.10);
}
.signature-level-1 { background: linear-gradient(180deg, var(--bg-mint) 0%, #fff 60%); border-color: rgba(16, 159, 86, 0.18) }
.signature-level-2 { background: linear-gradient(180deg, var(--bg-blue-soft) 0%, #fff 60%); border-color: rgba(4, 2, 83, 0.15) }
.signature-level-3 { background: linear-gradient(180deg, #fff8e6 0%, #fff 60%); border-color: rgba(231, 173, 0, 0.20) }
.signature-level-4 { background: linear-gradient(180deg, #fff5ec 0%, #fff 60%); border-color: rgba(231, 110, 30, 0.24); box-shadow: 0 14px 40px rgba(231, 110, 30, 0.08) }
.signature-level-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: #fff;
  background: var(--blue);
  padding: 5px 11px;
  border-radius: 100px;
  align-self: flex-start;
}
.signature-level-1 .signature-level-num { background: var(--green) }
.signature-level-2 .signature-level-num { background: var(--blue) }
.signature-level-3 .signature-level-num { background: #b88a00 }
.signature-level-4 .signature-level-num { background: var(--orange, #e76e1e) }
.signature-level-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--orange, #e76e1e);
  background: #fff;
  padding: 4px 10px;
  border: 1px solid rgba(231, 110, 30, 0.30);
  border-radius: 100px;
}
.signature-level-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  box-shadow: 0 4px 10px rgba(4, 2, 83, 0.06);
}
.signature-level-icon img { width: 32px; height: 32px; object-fit: contain; }
.signature-level h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 0;
  letter-spacing: -0.01em;
}
.signature-level p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.signature-level-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.signature-level-link .arrow { transition: transform .3s ease }
.signature-level:hover .signature-level-link .arrow { transform: translateX(4px) }

/* Addon — Cachet électronique */
.signature-addon {
  margin-top: 28px;
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  background: #fff;
  border: 1px dashed rgba(4, 2, 83, 0.28);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease, border-style .3s ease;
}
.signature-addon:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(4, 2, 83, 0.10);
  border-style: solid;
  border-color: var(--blue);
}
.signature-addon-flag {
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 100px;
}
.signature-addon-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.signature-addon-icon img { width: 32px; height: 32px; }
.signature-addon-content { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.signature-addon-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.signature-addon-content p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}
.signature-addon-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.signature-addon-link .arrow { transition: transform .3s ease }
.signature-addon:hover .signature-addon-link .arrow { transform: translateX(4px) }

/* Universign — bandeau minimaliste (Design B) */
.universign-banner {
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: 0 12px 32px rgba(4, 2, 83, 0.05);
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease;
}
.universign-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(4, 2, 83, 0.10);
}
.universign-banner::before {
  content: 'Éditeur de la solution';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 12px;
  background: var(--blue);
  border-radius: 100px;
}
.universign-banner-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.universign-banner-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
}
.universign-banner-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.universign-banner-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.universign-banner-content h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.universign-banner-content p {
  font-size: 13px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.5;
}
.universign-banner-meta {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.universign-banner-meta span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: var(--bg-blue-soft);
  color: var(--blue);
  border-radius: 4px;
}
.universign-banner-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 100px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.universign-banner:hover .universign-banner-cta { transform: translateX(3px); }
@media (max-width: 720px) {
  .universign-banner { grid-template-columns: 1fr; gap: 16px; padding: 22px 20px 20px; }
  .universign-banner-cta { justify-self: flex-end; }
}

/* Responsive */
@media (max-width: 1024px) {
  .signature-levels { grid-template-columns: repeat(2, 1fr); gap: 14px }
  .signature-addon { grid-template-columns: 56px 1fr; gap: 16px }
  .signature-addon-link { grid-column: 1 / -1; justify-self: flex-end }
}
@media (max-width: 560px) {
  .signature-levels { grid-template-columns: 1fr }
  .signature-addon { padding: 20px }
}

/* ═══ MIGRATION SCHEMA — journey vers conformité B2B 2026 ═══ */
.migration-schema {
  max-width: 1240px;
  margin: 40px auto 0;
}

/* Avant / Après */
.migration-states {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 44px;
}
.migration-state {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 32px rgba(4, 2, 83, 0.06);
}
.migration-state-before {
  background: linear-gradient(180deg, #fff5ec 0%, #fff 70%);
  border-color: rgba(231, 110, 30, 0.20);
}
.migration-state-after {
  background: linear-gradient(180deg, var(--bg-mint) 0%, #fff 70%);
  border-color: rgba(16, 159, 86, 0.25);
}
.migration-state-tag {
  position: absolute;
  top: -11px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--orange, #e76e1e);
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(231, 110, 30, 0.30);
}
.migration-state-tag-after {
  background: var(--green);
  box-shadow: 0 4px 12px rgba(16, 159, 86, 0.32);
}
.migration-state-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.migration-state-before .migration-state-icon { color: var(--orange, #e76e1e) }
.migration-state-after .migration-state-icon { color: var(--green) }
.migration-state-icon img { width: 28px; height: 28px; }
.migration-state strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
}
.migration-state ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.migration-state li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}
.migration-cross, .migration-check {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.migration-cross { background: rgba(231, 110, 30, 0.16); color: var(--orange, #e76e1e); }
.migration-check { background: var(--bg-mint); color: var(--green); }

/* Tunnel migration */
.migration-tunnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.migration-tunnel-svg {
  width: 100%;
  height: 30px;
}
.migration-tunnel-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(4, 2, 83, 0.06);
}

/* 4 jalons */
.migration-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.migration-milestones::before {
  content: '';
  position: absolute;
  top: 64px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #6b6cff 33%, var(--orange, #e76e1e) 66%, var(--green) 100%);
  border-radius: 3px;
  z-index: 0;
}
.migration-milestone {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 32px rgba(4, 2, 83, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.migration-milestone:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(4, 2, 83, 0.10);
}
.migration-milestone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.migration-milestone-week {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 4px 10px;
  background: var(--bg-cream);
  border-radius: 100px;
}
.migration-milestone-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--bg-cream);
  letter-spacing: -0.02em;
  line-height: 1;
}
.migration-milestone-1 .migration-milestone-num { color: rgba(4, 2, 83, 0.10) }
.migration-milestone-2 .migration-milestone-num { color: rgba(107, 108, 255, 0.18) }
.migration-milestone-3 .migration-milestone-num { color: rgba(231, 110, 30, 0.18) }
.migration-milestone-4 .migration-milestone-num { color: rgba(16, 159, 86, 0.22) }
.migration-milestone-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 6px 16px rgba(4, 2, 83, 0.12);
}
.migration-milestone-2 .migration-milestone-icon { border-color: #6b6cff }
.migration-milestone-3 .migration-milestone-icon { border-color: var(--orange, #e76e1e); box-shadow: 0 6px 16px rgba(231, 110, 30, 0.20) }
.migration-milestone-4 .migration-milestone-icon { border-color: var(--green); box-shadow: 0 6px 16px rgba(16, 159, 86, 0.22) }
.migration-milestone-icon img { width: 32px; height: 32px; object-fit: contain; }
.migration-milestone h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 8px 0 0;
  letter-spacing: -0.01em;
  text-align: center;
}
.migration-milestone > p {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.migration-deliverables {
  list-style: none;
  padding: 12px 0 6px;
  margin: 0;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.migration-deliverables li {
  font-size: 12px;
  color: var(--ink);
  line-height: 1.4;
}
.migration-milestone-risk {
  margin-top: 6px;
  padding: 8px 12px;
  background: rgba(231, 110, 30, 0.08);
  border-left: 3px solid var(--orange, #e76e1e);
  border-radius: 8px;
  font-size: 11px;
  color: var(--ink);
  line-height: 1.35;
}
.migration-milestone-risk span {
  display: inline;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange, #e76e1e);
  margin-right: 6px;
}
.migration-milestone-risk-done {
  background: var(--bg-mint);
  border-left-color: var(--green);
}
.migration-milestone-risk-done span { color: var(--green) }

/* Responsive */
@media (max-width: 1024px) {
  .migration-states { grid-template-columns: 1fr; gap: 24px }
  .migration-tunnel { transform: rotate(90deg); width: 100px; justify-self: center }
  .migration-milestones { grid-template-columns: repeat(2, 1fr); gap: 18px }
  .migration-milestones::before { display: none }
}
@media (max-width: 560px) {
  .migration-milestones { grid-template-columns: 1fr }
  .migration-tunnel { transform: none; width: 100% }
}

/* ═══ E-INVOICE SCHEMA v2 — flow facturation B2B 2026, version premium ═══ */
.einvoice-stage {
  max-width: 1240px;
  margin: 40px auto 0;
}

/* Timeline header */
.einvoice-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
  padding: 0 8px;
}
.einvoice-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(4, 2, 83, 0.05);
}
.einvoice-step-num {
  display: flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}
.einvoice-step-mid .einvoice-step-num { background: var(--orange, #e76e1e) }
.einvoice-step:last-child .einvoice-step-num { background: var(--green) }
.einvoice-step-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.einvoice-step-line {
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 10px);
}

/* Scène */
.einvoice-scene {
  display: grid;
  grid-template-columns: 1fr 110px 1.5fr 110px 1fr;
  align-items: center;
  gap: 0;
}

/* Cards (fournisseur / client) */
.einvoice-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  position: relative;
  box-shadow: 0 12px 36px rgba(4, 2, 83, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.einvoice-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(4, 2, 83, 0.10) }
.einvoice-card-supplier { border: 1px solid rgba(4, 2, 83, 0.12); background: linear-gradient(180deg, var(--bg-blue-soft) 0%, #fff 30%) }
.einvoice-card-client { border: 1px solid rgba(16, 159, 86, 0.18); background: linear-gradient(180deg, var(--bg-mint) 0%, #fff 30%) }
.einvoice-card-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text-soft);
}
.einvoice-card-supplier .einvoice-card-tag { color: var(--blue); border-color: rgba(4, 2, 83, 0.18) }
.einvoice-card-client .einvoice-card-tag { color: var(--green); border-color: rgba(16, 159, 86, 0.22) }
.einvoice-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.einvoice-card-supplier .einvoice-card-icon { color: var(--blue) }
.einvoice-card-client .einvoice-card-icon { color: var(--green) }
.einvoice-card-icon img { width: 28px; height: 28px; }
.einvoice-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 6px;
}
.einvoice-card-sub {
  font-size: 11px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

/* Mini doc (facture) */
.einvoice-doc {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  text-align: left;
}
.einvoice-doc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line);
}
.einvoice-doc-tag {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  background: var(--blue);
  color: #fff;
  border-radius: 4px;
}
.einvoice-doc-tag-green { background: var(--green) }
.einvoice-doc-num {
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--text-soft);
}
.einvoice-doc-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.einvoice-doc-lines > div {
  display: grid;
  grid-template-columns: 1fr 50px;
  gap: 8px;
}
.einvoice-doc-lines > div span {
  height: 6px;
  border-radius: 3px;
  background: var(--bg-cream);
}
.einvoice-doc-lines > div span:last-child { background: var(--bg-blue-soft) }
.einvoice-doc-statuses {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.einvoice-doc-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 500;
}
.einvoice-doc-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.einvoice-doc-status.done { color: var(--ink) }
.einvoice-doc-status.done .dot { background: var(--green); box-shadow: 0 0 0 3px rgba(16, 159, 86, 0.18) }
.einvoice-doc-status.pending { color: var(--text-soft) }
.einvoice-doc-status.pending .dot { background: #fff; border: 2px solid var(--orange, #e76e1e) }
.einvoice-doc-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.einvoice-doc-total span {
  font-size: 11px;
  color: var(--text-soft);
}
.einvoice-doc-total strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.einvoice-doc-formats {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.einvoice-doc-formats span {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  background: var(--bg-blue-soft);
  color: var(--blue);
  border-radius: 4px;
}

/* SVG arrows */
.einvoice-svg {
  width: 100%;
  height: 60px;
}
.einvoice-svg-dgfip {
  width: 60px;
  height: 60px;
}

/* PLATFORM HERO */
.einvoice-platform-hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue) 0%, #1d1c8a 60%, #2a1f8f 100%);
  color: #fff;
  border-radius: 24px;
  padding: 28px 26px;
  box-shadow: 0 30px 70px rgba(4, 2, 83, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  transform: scale(1.04);
  z-index: 2;
}
.einvoice-platform-glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(231, 110, 30, 0.30) 0%, transparent 35%),
              radial-gradient(circle at 80% 80%, rgba(16, 159, 86, 0.22) 0%, transparent 40%);
  pointer-events: none;
  animation: einvGlow 8s ease-in-out infinite alternate;
}
@keyframes einvGlow {
  0% { transform: translate(0, 0) }
  100% { transform: translate(8%, -6%) }
}
.einvoice-platform-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.einvoice-platform-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.einvoice-platform-pulse {
  width: 10px;
  height: 10px;
  background: var(--orange, #e76e1e);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(231, 110, 30, 0.30);
  animation: einvPulse 1.6s infinite;
}
@keyframes einvPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(231, 110, 30, 0.30); transform: scale(1) }
  50% { box-shadow: 0 0 0 10px rgba(231, 110, 30, 0.0); transform: scale(1.18) }
}
.einvoice-platform-badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 11px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 100px;
}
.einvoice-platform-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}
.einvoice-platform-name strong {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.einvoice-platform-name em {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
}
.einvoice-platform-name em span {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  font-style: italic;
  margin: 0 4px;
}
.einvoice-platform-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin: 0;
}
.einvoice-platform-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
}
.einvoice-platform-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.einvoice-platform-stats strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.einvoice-platform-stats sup {
  font-size: 11px;
  font-weight: 500;
  vertical-align: super;
  margin-left: 1px;
  opacity: 0.8;
}
.einvoice-platform-stats span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
}
.einvoice-platform-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.einvoice-platform-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}
.einvoice-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* Branche DGFiP */
.einvoice-dgfip-wrap {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  position: relative;
}
.einvoice-svg-dgfip {
  width: 100px;
  height: 50px;
}
.einvoice-dgfip-card {
  background: #fff;
  border: 1px solid rgba(231, 110, 30, 0.25);
  border-left: 4px solid var(--orange, #e76e1e);
  border-radius: 16px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 18px;
  box-shadow: 0 12px 32px rgba(231, 110, 30, 0.10);
  width: 100%;
}
.einvoice-dgfip-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff5ec;
  border: 2px solid var(--orange, #e76e1e);
  display: flex;
  align-items: center;
  justify-content: center;
}
.einvoice-dgfip-icon img { width: 30px; height: 30px; }
.einvoice-dgfip-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.einvoice-dgfip-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange, #e76e1e);
  margin-bottom: 2px;
}
.einvoice-dgfip-content strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.einvoice-dgfip-content p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 4px 0 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .einvoice-scene { grid-template-columns: 1fr 1fr; row-gap: 30px; gap: 16px }
  .einvoice-card-supplier { order: 1 }
  .einvoice-card-client { order: 2 }
  .einvoice-svg-1, .einvoice-svg-2 { display: none }
  .einvoice-platform-hero { order: 3; grid-column: 1 / -1; transform: none }
  .einvoice-steps { flex-wrap: wrap }
  .einvoice-step-line { width: 30px }
}
@media (max-width: 640px) {
  .einvoice-scene { grid-template-columns: 1fr }
  .einvoice-card-supplier, .einvoice-card-client { order: unset }
  .einvoice-platform-hero { order: unset; grid-column: auto; padding: 22px }
  .einvoice-platform-name em { font-size: 24px }
  .einvoice-platform-stats { grid-template-columns: 1fr 1fr }
  .einvoice-dgfip-card { grid-template-columns: 1fr; text-align: center; padding: 18px }
  .einvoice-dgfip-icon { margin: 0 auto }
}

/* Targets */
.einvoice-targets {
  max-width: 1180px;
  margin: 24px auto 0;
}
.einvoice-targets-intro {
  text-align: center;
  font-size: 14px;
  color: var(--text-soft);
  margin: 0 0 18px;
}
.einvoice-targets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.einvoice-targets-grid span {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.einvoice-targets-grid span img { width: 32px; height: 32px; object-fit: contain; }
.einvoice-targets-grid small {
  display: block;
  font-family: var(--font-body, inherit);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-soft);
  margin-top: 2px;
  letter-spacing: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .einvoice-schema { grid-template-columns: 1fr 1fr; row-gap: 18px; gap: 14px }
  .einvoice-actor-supplier { order: 1 }
  .einvoice-actor-client { order: 2 }
  .einvoice-flow-1, .einvoice-flow-2 { display: none }
  .einvoice-platform { order: 3; grid-column: 1 / -1 }
  .einvoice-dgfip { order: 4 }
  .einvoice-targets-grid { grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 560px) {
  .einvoice-schema { grid-template-columns: 1fr }
  .einvoice-actor-supplier, .einvoice-actor-client { order: unset }
  .einvoice-platform { order: unset; grid-column: auto }
  .einvoice-dgfip { order: unset; grid-template-columns: 1fr; text-align: center; gap: 10px }
  .einvoice-dgfip-arrow { display: none }
  .einvoice-dgfip-icon { margin: 0 auto }
  .einvoice-targets-grid { grid-template-columns: 1fr }
}

/* ═══ B2B 2026 COUNTDOWN ═══ */
.b2b-countdown {
  margin: 22px 0 24px;
  padding: 22px 24px;
  background: linear-gradient(135deg, #fff5ec 0%, #ffe8d3 100%);
  border: 1px solid rgba(231, 110, 30, 0.18);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(231, 110, 30, 0.08);
}
.b2b-countdown-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}
.b2b-countdown-label strong { color: var(--orange, #e76e1e); font-weight: 700; }
.b2b-countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.b2b-countdown-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 10px;
  background: var(--ink);
  border-radius: 12px;
  min-width: 76px;
  box-shadow: 0 6px 16px rgba(4, 2, 83, 0.18);
  position: relative;
  overflow: hidden;
}
.b2b-countdown-tile::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.b2b-countdown-num {
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.b2b-countdown-unit {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-top: 6px;
}
.b2b-countdown-sep {
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--orange, #e76e1e);
  line-height: 1;
  align-self: center;
  margin-bottom: 14px;
  animation: b2bBlink 1s infinite;
}
@keyframes b2bBlink { 0%, 49% { opacity: 1 } 50%, 100% { opacity: 0.25 } }

/* Responsive */
@media (max-width: 560px) {
  .b2b-countdown { padding: 18px 16px }
  .b2b-countdown-tile { min-width: 56px; padding: 10px 6px }
  .b2b-countdown-num { font-size: 22px }
  .b2b-countdown-unit { font-size: 9px; letter-spacing: 0.06em }
  .b2b-countdown-sep { font-size: 20px; margin-bottom: 12px }
  .b2b-countdown-grid { gap: 4px }
}

/* ═══ ARCHIVE SCHEMA — coffre-fort numérique pédagogique ═══ */
.archive-schema {
  max-width: 1100px;
  margin: 48px auto 0;
}
.archive-entry, .archive-exit {
  background: linear-gradient(135deg, var(--blue) 0%, #1d1c8a 100%);
  color: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 20px;
  box-shadow: 0 16px 40px rgba(4, 2, 83, 0.18);
}
.archive-exit {
  background: linear-gradient(135deg, var(--green) 0%, #0a7d3f 100%);
  box-shadow: 0 16px 40px rgba(16, 159, 86, 0.20);
}
.archive-entry-icon, .archive-exit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.archive-entry-icon img, .archive-exit-icon img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}
.archive-entry-text, .archive-exit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.archive-entry-text strong, .archive-exit-text strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}
.archive-entry-text span, .archive-exit-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
.archive-entry-text strong, .archive-exit-text strong { color: #fff; }
.archive-exit-text span strong { color: #fff; font-weight: 600; }
.archive-entry-channels {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
.archive-entry-channels span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 100px;
  text-align: center;
}

.archive-arrow {
  text-align: center;
  font-size: 24px;
  color: var(--text-soft);
  padding: 14px 0;
  line-height: 1;
}

/* Coffre-fort */
.archive-vault {
  background: var(--bg-cream);
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: 24px 28px;
  position: relative;
}
.archive-vault-head {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 2px dashed var(--line);
  margin-bottom: 22px;
}
.archive-vault-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive-vault-icon img { width: 30px; height: 30px; }
.archive-vault-head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.archive-vault-head span:not(.archive-vault-badge) {
  font-size: 12px;
  color: var(--text-soft);
}
.archive-vault-head .archive-vault-badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--blue);
  color: #fff;
  border-radius: 100px;
}

/* Stages */
.archive-stage {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.archive-stage + .archive-stage { margin-top: 16px; }
.archive-stage-seal { border-left: 4px solid var(--blue); }
.archive-stage-keep { border-left: 4px solid var(--green); }
.archive-stage-time {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  background: var(--bg-mint);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  align-self: flex-start;
  white-space: nowrap;
}
.archive-stage-keep .archive-stage-time { color: var(--green); }
.archive-stage-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.archive-stage-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.archive-stage-num {
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.archive-stage-keep .archive-stage-num { background: var(--green); }
.archive-stage-title strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.archive-stage-sub {
  flex-basis: 100%;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-left: 40px;
}
.archive-stage-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.archive-action {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: var(--bg-cream);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.archive-action-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.archive-stage-keep .archive-action-icon { background: var(--green); }
.archive-action strong {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.archive-action span {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.45;
}

/* Timeline */
.archive-timeline {
  padding: 18px 4px 6px;
}
.archive-timeline-bar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.archive-timeline-bar::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #6b6cff 25%, var(--green) 75%, var(--green) 100%);
  border-radius: 3px;
  z-index: 0;
}
.archive-tick {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.archive-tick::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  margin-bottom: 4px;
  box-shadow: 0 2px 6px rgba(16, 159, 86, 0.20);
}
.archive-tick:first-child::before { border-color: var(--blue); box-shadow: 0 2px 6px rgba(4, 2, 83, 0.20); }
.archive-tick b {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}
.archive-tick span {
  font-size: 10px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 880px) {
  .archive-entry, .archive-exit { grid-template-columns: 56px 1fr; gap: 14px; padding: 20px }
  .archive-entry-channels { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 6px }
  .archive-stage { grid-template-columns: 1fr; gap: 12px }
  .archive-stage-actions { grid-template-columns: 1fr }
  .archive-stage-sub { margin-left: 0 }
  .archive-timeline-bar { grid-template-columns: repeat(3, 1fr); row-gap: 12px }
  .archive-timeline-bar::before { display: none }
  .archive-tick { flex-direction: row; justify-content: flex-start; gap: 10px }
  .archive-tick::before { margin-bottom: 0 }
}
@media (max-width: 520px) {
  .archive-vault { padding: 18px }
  .archive-vault-head { grid-template-columns: 48px 1fr; row-gap: 10px }
  .archive-vault-badge { grid-column: 1 / -1; justify-self: flex-start }
  .archive-stage { padding: 16px }
}

/* ═══ KYC/KYB SCHEMA — schéma pédagogique vérification ═══ */
.kyc-schema {
  max-width: 1100px;
  margin: 48px auto 0;
  position: relative;
}
/* Entrée */
.kyc-entry {
  background: linear-gradient(135deg, var(--blue) 0%, #1d1c8a 100%);
  color: #fff;
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 16px 40px rgba(4, 2, 83, 0.18);
  position: relative;
}
.kyc-entry-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}
.kyc-entry-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kyc-entry-content strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.kyc-entry-content span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
}

/* Fork */
.kyc-fork {
  position: relative;
  text-align: center;
  padding: 28px 0;
}
.kyc-fork::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--line);
  z-index: 0;
}
.kyc-fork-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: var(--bg-cream);
  color: var(--text-soft);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
}

/* Branches */
.kyc-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  position: relative;
}
.kyc-branches::before,
.kyc-branches::after {
  content: '';
  position: absolute;
  top: -28px;
  width: 50%;
  height: 28px;
  border-top: 2px solid var(--line);
}
.kyc-branches::before { left: 0; border-left: 2px solid var(--line); border-top-left-radius: 14px; }
.kyc-branches::after { right: 0; border-right: 2px solid var(--line); border-top-right-radius: 14px; }
.kyc-branch {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.kyc-branch:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(4, 2, 83, 0.10);
}
.kyc-branch-person { border-color: rgba(4, 2, 83, 0.20); background: linear-gradient(180deg, rgba(4, 2, 83, 0.025) 0%, #fff 60%); }
.kyc-branch-business { border-color: rgba(16, 159, 86, 0.22); background: linear-gradient(180deg, var(--bg-mint) 0%, #fff 60%); }
.kyc-branch-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.kyc-branch-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kyc-branch-person .kyc-branch-icon { color: var(--blue); }
.kyc-branch-business .kyc-branch-icon { color: var(--green); }
.kyc-branch-icon img { width: 32px; height: 32px; object-fit: contain; }
.kyc-branch-head h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.kyc-branch-head p {
  font-size: 12px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.4;
}
.kyc-branch-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kyc-branch-step {
  display: grid;
  grid-template-columns: 28px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.kyc-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.kyc-branch-person .kyc-step-num { background: var(--blue); }
.kyc-branch-business .kyc-step-num { background: var(--green); }
.kyc-step-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.kyc-step-content strong {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.kyc-step-content span {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.4;
}
.kyc-check {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

/* Merge */
.kyc-merge {
  position: relative;
  text-align: center;
  padding: 28px 0;
}
.kyc-merge::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--line);
  z-index: 0;
}
.kyc-merge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 28px;
  border-bottom: 2px solid var(--line);
  border-left: 2px solid var(--line);
  border-right: 2px solid var(--line);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  border-top: 0;
}
.kyc-merge-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: var(--bg-cream);
  color: var(--text-soft);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  margin-top: 30px;
}

/* Décision */
.kyc-decision {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 16px 40px rgba(4, 2, 83, 0.08);
}
.kyc-decision-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.kyc-decision-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kyc-decision-icon img { width: 32px; height: 32px; }
.kyc-decision-head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.kyc-decision-head span {
  font-size: 13px;
  color: var(--text-soft);
}
.kyc-decision-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.kyc-outcome {
  position: relative;
  padding: 18px 20px 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kyc-outcome strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
}
.kyc-outcome span:not(.kyc-outcome-badge) {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.5;
}
.kyc-outcome-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  color: #fff;
}
.kyc-outcome-ok { background: var(--bg-mint); border: 1px solid rgba(16, 159, 86, 0.22); }
.kyc-outcome-ok .kyc-outcome-badge { background: var(--green); }
.kyc-outcome-review { background: var(--bg-cream); border: 1px solid var(--line); }
.kyc-outcome-review .kyc-outcome-badge { background: var(--blue); }

/* Responsive */
@media (max-width: 880px) {
  .kyc-branches { grid-template-columns: 1fr; gap: 18px }
  .kyc-branches::before, .kyc-branches::after { display: none }
  .kyc-merge::after { display: none }
  .kyc-decision-outcomes { grid-template-columns: 1fr }
}
@media (max-width: 520px) {
  .kyc-entry { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 20px }
  .kyc-branch { padding: 18px }
  .kyc-branch-step { grid-template-columns: 24px 1fr 18px; padding: 10px 12px; gap: 10px }
  .kyc-decision { padding: 20px }
}

/* ═══ LRE FLOW — schéma interactif "Comment ça marche" ═══ */
.lre-flow {
  position: relative;
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 0 12px;
}
.lre-flow-line {
  position: absolute;
  top: 56px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.lre-flow-line-progress {
  position: absolute;
  top: 56px;
  left: calc(12.5% + 20px);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, #6b6cff 50%, var(--green) 100%);
  border-radius: 2px;
  z-index: 1;
  transition: width 1.6s cubic-bezier(.22,1,.36,1) .2s;
}
.lre-flow.visible .lre-flow-line-progress {
  width: calc(75% - 0px);
}
.lre-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}
.lre-step {
  text-align: center;
  padding: 0 4px;
}
.lre-step-circle {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(4, 2, 83, 0.10);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.lre-step-circle:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(4, 2, 83, 0.16);
}
.lre-step-circle img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.lre-step-circle-end {
  border-color: var(--green);
  background: linear-gradient(135deg, #fff 0%, var(--bg-mint) 100%);
}
.lre-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--blue);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(4, 2, 83, 0.25);
}
.lre-step-num-end {
  background: var(--green);
  box-shadow: 0 4px 12px rgba(16, 159, 86, 0.28);
}
.lre-step-time {
  display: inline-block;
  padding: 4px 11px;
  background: var(--bg-cream);
  color: var(--text-soft);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.lre-step-time-end {
  background: var(--bg-mint);
  color: var(--green);
}
.lre-step-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.lre-step-desc {
  font-size: 13px;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.5;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

/* Reçu de preuve */
.lre-receipt {
  margin: 44px auto 0;
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(4, 2, 83, 0.06);
}
.lre-receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
  gap: 12px;
  flex-wrap: wrap;
}
.lre-receipt-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.lre-receipt-badge {
  background: var(--bg-mint);
  color: var(--green);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.lre-receipt-rows {
  display: grid;
  gap: 10px;
}
.lre-receipt-row {
  display: grid;
  grid-template-columns: 16px 140px 1fr;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink);
}
.lre-receipt-row strong {
  font-weight: 600;
}
.lre-receipt-meta {
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--text-soft);
}
.lre-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.lre-dot-blue { background: var(--blue); box-shadow: 0 0 0 4px rgba(4, 2, 83, 0.08); }
.lre-dot-mint { background: #6b6cff; box-shadow: 0 0 0 4px rgba(107, 108, 255, 0.10); }
.lre-dot-green { background: var(--green); box-shadow: 0 0 0 4px rgba(16, 159, 86, 0.12); }

/* Responsive */
@media (max-width: 880px) {
  .lre-flow-line, .lre-flow-line-progress { display: none }
  .lre-flow-steps { grid-template-columns: repeat(2, 1fr); gap: 32px 18px }
}
@media (max-width: 520px) {
  .lre-flow-steps { grid-template-columns: 1fr; gap: 28px }
  .lre-step-circle { width: 80px; height: 80px }
  .lre-step-circle img { width: 44px; height: 44px }
  .lre-receipt-row { grid-template-columns: 14px 1fr; row-gap: 2px }
  .lre-receipt-row .lre-receipt-meta { grid-column: 2 }
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(4, 2, 83, .15);
}
.service-card-bg {
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: var(--bg-cream);
  border-bottom-left-radius: 100%;
  opacity: .6;
  transition: opacity .3s ease;
  z-index: 0;
}
.service-card.bg-mint .service-card-bg { background: var(--bg-mint) }
.service-card.bg-blue .service-card-bg { background: var(--bg-blue-soft) }
.service-card.bg-yellow .service-card-bg { background: var(--bg-yellow) }
.service-card.bg-lavender .service-card-bg { background: var(--bg-lavender) }
.service-card.bg-pink .service-card-bg { background: var(--bg-pink) }
.service-card.bg-warm .service-card-bg { background: var(--bg-warm) }
.service-card:hover .service-card-bg { opacity: 1 }
.service-card-icon-wrap {
  position: relative;
  z-index: 1;
  width: 56px; height: 56px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(4, 2, 83, .08);
}
.service-card-icon-wrap img { width: 36px; height: 36px; object-fit: contain }
.service-card > * { position: relative; z-index: 1 }
.service-card .tag { margin-bottom: 10px }
.service-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}
.service-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s ease;
}
.service-card-link:hover { gap: 10px }

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr } }
.pillar {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: all .3s ease;
}
.pillar:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -16px rgba(4, 2, 83, .1) }
.pillar-icon {
  width: 48px; height: 48px;
  background: var(--bg-blue-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pillar-icon img { width: 28px; height: 28px; object-fit: contain }
.pillar:nth-child(2) .pillar-icon { background: var(--bg-mint) }
.pillar:nth-child(3) .pillar-icon { background: var(--bg-warm) }
.pillar-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.pillar-desc { font-size: 14px; line-height: 1.6; color: var(--text-soft) }

/* Product / split */
.product-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .product-section { grid-template-columns: 1fr; gap: 40px } }
.product-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 20px;
}
.product-text p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.product-features { display: grid; gap: 12px; margin-bottom: 24px }
.product-feature { display: flex; align-items: flex-start; gap: 12px }
.product-feature-check {
  width: 22px; height: 22px;
  background: var(--bg-mint);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.product-feature-text { font-size: 14px; line-height: 1.55; color: var(--text) }
.product-feature-text strong { font-weight: 600; color: var(--ink) }
.product-visual {
  position: relative;
  background: linear-gradient(135deg, var(--bg-blue-soft) 0%, var(--bg-cream) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  overflow: hidden;
}
.product-visual::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(110, 111, 255, .15), transparent 70%);
  border-radius: 50%;
}
.product-mock {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 16px 40px -12px rgba(4, 2, 83, .15);
  position: relative;
  z-index: 1;
}
.product-mock-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.product-mock-row:last-child { border-bottom: none }
.product-mock-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg-cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.product-mock-icon img { width: 24px; height: 24px; object-fit: contain }
.product-mock-content { flex: 1 }
.product-mock-name { font-size: 13px; font-weight: 600; color: var(--ink); display: block }
.product-mock-meta { font-size: 11px; color: var(--muted); display: block; margin-top: 1px }
.product-mock-status {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.product-mock-status.active { background: var(--bg-mint); color: var(--green) }
.product-mock-status.config { background: var(--bg-yellow); color: #B8860B }

/* Personas */
.personas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px }
@media (max-width: 1024px) { .personas-grid { grid-template-columns: repeat(3, 1fr) } }
@media (max-width: 600px) { .personas-grid { grid-template-columns: repeat(2, 1fr) } }
.persona-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 28px 20px 24px;
  text-align: center;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.persona-card:nth-child(1) { background: var(--bg-blue-soft) }
.persona-card:nth-child(2) { background: var(--bg-mint) }
.persona-card:nth-child(3) { background: var(--bg-yellow) }
.persona-card:nth-child(4) { background: var(--bg-pink) }
.persona-card:nth-child(5) { background: var(--bg-lavender) }
.persona-card:hover { transform: translateY(-4px) }
.persona-emoji {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
}
.persona-emoji img { display: block }
.persona-name {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Workflow */
.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 900px) { .workflow { grid-template-columns: 1fr 1fr; gap: 16px } }
@media (max-width: 500px) { .workflow { grid-template-columns: 1fr } }
.workflow-step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
  position: relative;
  transition: all .25s ease;
}
.workflow-step:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -16px rgba(4, 2, 83, .12) }
.workflow-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.workflow-step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.workflow-step-desc { font-size: 13px; color: var(--text-soft); line-height: 1.55 }

/* Stats (sur fond ink) */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px } }
.stat {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  transition: all .25s ease;
}
.stat:hover { background: rgba(255, 255, 255, .07); transform: translateY(-3px) }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 10px;
}
.stat-num .small { font-size: .55em; opacity: .8 }
.stat-label { font-size: 12px; color: rgba(255, 255, 255, .7); font-weight: 500; line-height: 1.4 }

/* Testimonials */
.testimonials-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px }
@media (max-width: 900px) { .testimonials-row { grid-template-columns: 1fr } }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -16px rgba(4, 2, 83, .1) }
.testimonial-card-featured {
  background: linear-gradient(135deg, var(--bg-blue-soft) 0%, var(--bg-cream) 100%);
  border-color: transparent;
}
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 1.5px; margin-bottom: 16px }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 24px;
  flex-grow: 1;
}
.testimonial-card-featured .testimonial-text { font-size: 19px }
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-card:nth-child(1) .testimonial-avatar { background: linear-gradient(135deg, var(--blue), var(--blue-light)) }
.testimonial-card:nth-child(2) .testimonial-avatar { background: linear-gradient(135deg, var(--green), #43c270) }
.testimonial-card:nth-child(3) .testimonial-avatar { background: linear-gradient(135deg, var(--orange), #FFA862) }
.testimonial-name { font-family: var(--font-display); font-size: 13.5px; font-weight: 500; color: var(--ink); display: block; line-height: 1.3 }
.testimonial-role { font-size: 11.5px; color: var(--muted) }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all .3s ease;
}
.faq-item:hover { border-color: var(--ink) }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.005em;
  -webkit-tap-highlight-color: transparent;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .3s ease;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease;
}
.faq-icon::before { width: 12px; height: 1.5px }
.faq-icon::after { width: 1.5px; height: 12px }
.faq-item.open .faq-icon { background: var(--ink) }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff }
.faq-item.open .faq-icon::after { transform: rotate(90deg) }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease }
.faq-a-inner {
  padding: 0 26px 24px;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-soft);
}
.faq-a-inner a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 3px }
.faq-item.open .faq-a { max-height: 800px }

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(56px, 7vw, 100px) 32px;
  text-align: center;
  color: #fff;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, .15), transparent 70%);
  border-radius: 50%;
  transform: translate(-30%, -30%);
}
.cta-final::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(110, 111, 255, .25), transparent 70%);
  border-radius: 50%;
  transform: translate(20%, 30%);
}
.cta-final > * { position: relative; z-index: 1 }
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
.cta-final p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255, 255, 255, .85);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA FINAL — variante avec preview 3 étapes (hybride V4+V5) */
.cta-final-steps {
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 56px);
  text-align: center;
  color: #fff;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}
.cta-final-steps::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 70%);
  border-radius: 50%;
}
.cta-final-steps::after {
  content: '';
  position: absolute; bottom: -120px; left: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(110, 111, 255, .15), transparent 70%);
  border-radius: 50%;
}
.cta-final-steps > * { position: relative; z-index: 1 }
.cta-final-steps-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto 32px;
}
.cta-final-steps-card {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.cta-final-steps-card:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-2px);
}
.cta-final-steps-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600; font-size: 13px;
  margin: 0 auto 8px;
}
.cta-final-steps-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 3px;
}
.cta-final-steps-meta {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.35;
}
.cta-final-steps-arrow {
  font-size: 22px;
  color: rgba(255, 255, 255, .35);
  font-weight: 300;
  line-height: 1;
}
.cta-final-steps h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
.cta-final-steps p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .82);
  margin: 0 0 24px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) {
  .cta-final-steps-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cta-final-steps-arrow { transform: rotate(90deg); margin: 0 auto }
}

/* IMPACT SECTION — chiffres clés homepage · Bento asymétrique premium */
.impact-section {
  position: relative;
  padding: clamp(80px, 9vw, 120px) 0;
  background: var(--bg-cream);
  overflow: hidden;
}
.impact-inner { position: relative; z-index: 1 }

.impact-head { text-align: left; max-width: 720px; margin: 0 0 56px }
.impact-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(10, 11, 245, .08);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.impact-tag::before { content: "•"; color: var(--blue); font-size: 18px; line-height: 0 }
.impact-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 16px;
}
.impact-title-accent { font-style: italic; color: var(--blue); font-weight: 400 }
.impact-sub {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
  max-width: 600px;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 480px;
}
.impact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.impact-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -16px rgba(4, 2, 83, .15) }

/* Card hero Trustpilot */
.impact-hero {
  grid-row: 1 / -1;
  background: linear-gradient(135deg, #040253 0%, #0a0bf5 100%);
  color: #fff;
  border: none;
  padding: 36px;
}
.impact-hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, .12) 0%, transparent 70%);
  pointer-events: none;
}
.impact-hero-stars { display: flex; gap: 3px; margin-bottom: 14px; position: relative; z-index: 1 }
.impact-hero-stars svg { width: 22px; height: 22px; color: #00b67a }
.impact-hero-num {
  font-family: var(--font-display);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.04em;
  position: relative;
  z-index: 1;
}
.impact-hero-num small { font-size: 0.42em; font-weight: 400; opacity: .7; margin-left: 4px }
.impact-hero-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  margin-top: 4px;
  opacity: .9;
  position: relative;
  z-index: 1;
}
.impact-hero-meta { font-size: 13px; opacity: .65; margin-top: 4px; position: relative; z-index: 1 }
.impact-hero-review {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, .08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  position: relative;
  z-index: 1;
}
.impact-hero-review-stars { display: flex; gap: 2px; margin-bottom: 6px }
.impact-hero-review-stars svg { width: 13px; height: 13px; color: #00b67a }
.impact-hero-review-text { font-size: 13px; line-height: 1.55; opacity: .9; font-style: italic }
.impact-hero-review-author { font-size: 11px; margin-top: 8px; opacity: .65 }
.impact-hero-tp-logo {
  position: absolute;
  bottom: 24px; right: 28px;
  font-size: 11px; opacity: .65;
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: 500;
  z-index: 1;
}
.impact-hero-tp-logo::before {
  content: "";
  width: 14px; height: 14px;
  background: #00b67a;
  border-radius: 2px;
}
.impact-hero-arrow { transition: transform .25s ease; display: inline-block; margin-left: 2px }
a.impact-hero { text-decoration: none; cursor: pointer }
a.impact-hero:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -16px rgba(4, 2, 83, .35) }
a.impact-hero:hover .impact-hero-arrow { transform: translateX(3px) }
a.impact-hero:hover .impact-hero-tp-logo { opacity: 1 }

.impact-inline-link { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: rgba(10, 11, 245, .35); transition: text-decoration-color .2s ease }
.impact-inline-link:hover { text-decoration-color: var(--blue) }

/* Cards secondaires */
.impact-card-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.03em;
}
.impact-card-num small {
  font-size: 0.42em;
  font-weight: 400;
  color: var(--muted);
  margin-left: 2px;
}
.impact-card-divider {
  width: 32px;
  height: 2px;
  background: var(--blue);
  margin-top: 14px;
  border-radius: 2px;
}
.impact-card-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 14px;
  letter-spacing: .02em;
}
.impact-card-meta { font-size: 12px; color: var(--muted); margin-top: 4px }

@media (max-width: 980px) {
  .impact-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: 0 }
  .impact-hero { grid-row: auto; grid-column: 1 / -1 }
}
@media (max-width: 560px) {
  .impact-grid { grid-template-columns: 1fr }
  .impact-hero { grid-column: auto; padding: 28px }
}

/* PROCESS HORIZONTAL — schéma compact 4 étapes alignées (Comment on travaille homepage) */
.process-section { padding-top: clamp(60px, 7vw, 90px); padding-bottom: clamp(60px, 7vw, 90px) }
.process-h {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 36px;
}
.process-h-track {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 3px;
  background: rgba(184, 114, 8, .15);
  border-radius: 100px;
  z-index: 0;
}
.process-h-track-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--blue) 0%, #4a4bff 33%, #25a55c 66%, #f0a020 100%);
  border-radius: 100px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(.65, 0, .35, 1);
}
.process-h.visible .process-h-track-fill,
.reveal.process-h.visible .process-h-track-fill { transform: scaleX(1) }

.process-h-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.process-h-marker {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px -8px rgba(4, 2, 83, .22);
  transition: transform .3s ease, box-shadow .3s ease;
}
.process-h-step:hover .process-h-marker { transform: scale(1.08); box-shadow: 0 14px 28px -10px rgba(4, 2, 83, .3) }
.process-h-step-1 .process-h-marker { border-color: var(--blue); color: var(--blue) }
.process-h-step-2 .process-h-marker { border-color: #4a4bff; color: #4a4bff }
.process-h-step-3 .process-h-marker { border-color: #25a55c; color: #25a55c }
.process-h-step-4 .process-h-marker { border-color: #f0a020; color: #f0a020 }
.process-h-marker-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: currentColor;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 2px 6px -1px rgba(4, 2, 83, .3);
}
.process-h-marker-icon { line-height: 1; display: inline-flex; align-items: center; justify-content: center }
.process-h-marker-icon svg { width: 24px; height: 24px }

.process-h-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.process-h-step:hover .process-h-card {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -14px rgba(4, 2, 83, .15);
  border-color: var(--ink);
}
.process-h-time {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--text-soft);
  align-self: center;
}
.process-h-step-1 .process-h-time { color: var(--blue) }
.process-h-step-2 .process-h-time { color: #4a4bff }
.process-h-step-3 .process-h-time { color: #25a55c }
.process-h-step-4 .process-h-time { color: #b87208 }
.process-h-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.process-h-desc {
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.process-h-deliverable {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  background: var(--bg-cream);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}
.process-h-check {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #25a55c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-top: 1px;
}

/* Responsive : 2x2 en tablet, stack en mobile */
@media (max-width: 900px) {
  .process-h { grid-template-columns: repeat(2, 1fr); gap: 24px; padding-top: 0 }
  .process-h-track { display: none }
}
@media (max-width: 520px) {
  .process-h { grid-template-columns: 1fr }
}

/* PROCESS TIMELINE — variante verticale détaillée (legacy, conservée) */
.process-timeline {
  position: relative;
  max-width: 1100px;
  margin: 56px auto 0;
  padding: 12px 0 12px;
}
.process-track {
  position: absolute;
  top: 30px; bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: rgba(184, 114, 8, .15);
  border-radius: 100px;
  z-index: 0;
}
.process-track-fill {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--blue) 0%, #4a4bff 33%, #25a55c 66%, #f0a020 100%);
  border-radius: 100px;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.6s cubic-bezier(.65, 0, .35, 1);
}
.process-timeline.visible .process-track-fill,
.reveal.process-timeline.visible .process-track-fill { transform: scaleY(1) }

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  align-items: start;
  margin-bottom: 32px;
  z-index: 1;
}
.process-step:last-child { margin-bottom: 0 }
.process-step .process-step-card { grid-column: 1 }
.process-step-right .process-step-card { grid-column: 3 }

.process-step-marker {
  grid-column: 2;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid;
  margin: 8px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 12px 28px -10px rgba(4, 2, 83, .25);
  position: relative;
  z-index: 2;
  transition: transform .35s ease, box-shadow .35s ease;
}
.process-step:hover .process-step-marker { transform: scale(1.08); box-shadow: 0 18px 36px -12px rgba(4, 2, 83, .35) }
.process-step-marker-1 { border-color: var(--blue); color: var(--blue) }
.process-step-marker-2 { border-color: #4a4bff; color: #4a4bff }
.process-step-marker-3 { border-color: #25a55c; color: #25a55c }
.process-step-marker-4 { border-color: #f0a020; color: #f0a020 }
.process-step-marker-num { line-height: 1 }

.process-step-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 26px 28px 24px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px -16px rgba(4, 2, 83, .12);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.process-step:hover .process-step-card {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(4, 2, 83, .2);
  border-color: var(--ink);
}
/* Petite flèche pointant vers le marker */
.process-step .process-step-card::after {
  content: '';
  position: absolute;
  top: 30px;
  width: 14px; height: 14px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transition: border-color .3s ease;
}
.process-step:not(.process-step-right) .process-step-card::after {
  right: -8px;
  transform: rotate(45deg);
}
.process-step-right .process-step-card::after {
  left: -8px;
  transform: rotate(-135deg);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.process-step:hover .process-step-card::after { border-color: var(--ink) }

.process-step-header { margin-bottom: 14px }
.process-step-tag-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.process-step-tag {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.process-step-tag-1 { background: #eef0ff; color: var(--blue) }
.process-step-tag-2 { background: #e5e6ff; color: #4a4bff }
.process-step-tag-3 { background: #e9f4ec; color: #25a55c }
.process-step-tag-4 { background: #fff5d6; color: #b87208 }
.process-step-cost {
  font-size: 11.5px;
  color: var(--text-soft);
  font-weight: 500;
}
.process-step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.process-step-icon {
  font-size: 24px;
  line-height: 1;
}
.process-step-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 18px;
}
.process-step-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.process-step-block-label {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.process-step-list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
}
.process-step-list li { margin-bottom: 3px }
.process-step-block-deliverable {
  background: var(--bg-cream);
  margin: -6px -8px;
  padding: 12px 14px;
  border-radius: 12px;
}
.process-step-deliverable {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.process-step-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green, #25a55c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

/* Responsive : timeline gauche-aligned < 920 px */
@media (max-width: 920px) {
  .process-timeline { margin-top: 32px }
  .process-track { left: 32px; transform: none }
  .process-step {
    grid-template-columns: 64px 1fr;
    margin-bottom: 24px;
  }
  .process-step .process-step-card,
  .process-step-right .process-step-card {
    grid-column: 2;
  }
  .process-step-marker { grid-column: 1; margin-left: 0 }
  .process-step .process-step-card::after,
  .process-step-right .process-step-card::after {
    left: -8px;
    right: auto;
    transform: rotate(-135deg);
  }
}
@media (max-width: 600px) {
  .process-step-grid { grid-template-columns: 1fr; gap: 12px }
  .process-step-card { padding: 20px 22px }
}

/* JOURNEY (legacy alias — préservé pour compatibilité éventuelle) */
.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 12px auto 0;
  padding-top: 50px;
}
.journey-track {
  position: absolute;
  top: 78px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 3px;
  background: rgba(184, 114, 8, .15);
  border-radius: 100px;
  z-index: 0;
}
.journey-track-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue) 0%, #4a4bff 33%, #25a55c 66%, #f0a020 100%);
  border-radius: 100px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(.65, 0, .35, 1);
}
.journey.visible .journey-track-fill,
.reveal.journey.visible .journey-track-fill { transform: scaleX(1) }

.journey-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.journey-step-marker {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #fff;
  border: 3px solid;
  box-shadow: 0 8px 20px -8px rgba(4, 2, 83, .2);
  transition: transform .3s ease, box-shadow .3s ease;
}
.journey-step:hover .journey-step-marker { transform: translateY(-3px) scale(1.06); box-shadow: 0 14px 28px -10px rgba(4, 2, 83, .28) }
.journey-step-marker-1 { border-color: var(--blue); color: var(--blue) }
.journey-step-marker-2 { border-color: #4a4bff; color: #4a4bff }
.journey-step-marker-3 { border-color: #25a55c; color: #25a55c }
.journey-step-marker-4 { border-color: #f0a020; color: #f0a020 }
.journey-step-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: currentColor;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px -2px rgba(4, 2, 83, .3);
}
.journey-step-icon { font-size: 26px; line-height: 1 }
.journey-step-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px 24px;
  text-align: center;
  border: 1px solid var(--line);
  width: 100%;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.journey-step:hover .journey-step-card {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(4, 2, 83, .15);
  border-color: var(--ink);
}
.journey-step-time {
  display: inline-block;
  padding: 3px 10px;
  background: var(--bg-cream);
  color: var(--text-soft);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.journey-step:nth-child(2) .journey-step-time { background: #eef0ff; color: var(--blue) }
.journey-step:nth-child(3) .journey-step-time { background: #e9f4ec; color: #25a55c }
.journey-step:nth-child(4) .journey-step-time { background: #fff5d6; color: #b87208 }
.journey-step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.journey-step-desc {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}

/* Responsive : stack vertical < 900 px (avec ligne verticale) */
@media (max-width: 900px) {
  .journey {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 0;
    padding-left: 30px;
  }
  .journey-track {
    top: 0;
    bottom: 28px;
    left: 25px;
    right: auto;
    width: 3px;
    height: auto;
  }
  .journey-track-fill {
    transform: scaleY(0) !important;
    transform-origin: top center !important;
  }
  .journey.visible .journey-track-fill,
  .reveal.journey.visible .journey-track-fill {
    transform: scaleY(1) !important;
  }
  .journey-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
  .journey-step-marker {
    margin-bottom: 0;
    margin-left: -50px;
    flex-shrink: 0;
  }
  .journey-step-card { text-align: left }
}

/* LEGAL PROSE — utilisé sur guides, blog, documents, templates */
.legal-prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text);
}
.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 40px 0 14px;
  line-height: 1.25;
}
.legal-prose h2:first-child { margin-top: 0 }
.legal-prose h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 26px 0 10px;
  line-height: 1.3;
}
.legal-prose p { margin-bottom: 14px; color: var(--text) }
.legal-prose ul,
.legal-prose ol { margin: 0 0 18px 22px; color: var(--text) }
.legal-prose li { margin-bottom: 7px }
.legal-prose strong { color: var(--ink); font-weight: 600 }
.legal-prose em { font-style: italic; color: var(--ink) }
.legal-prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.legal-prose a:hover { color: var(--ink) }
.legal-prose blockquote {
  border-left: 3px solid var(--blue);
  padding: 8px 18px;
  margin: 18px 0;
  font-style: italic;
  color: var(--text-soft);
  background: var(--bg-cream);
  border-radius: 0 12px 12px 0;
}
.legal-prose code {
  background: var(--bg-cream);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--ink);
}
.legal-prose hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}
.legal-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 14px 0;
}
.legal-prose .step-box {
  background: var(--bg-blue-soft);
  border-left: 4px solid var(--blue);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 16px 0;
}
.legal-prose .tip-box {
  background: var(--bg-mint, #e7f7ed);
  border-left: 4px solid #25a55c;
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 16px 0;
}
.legal-prose .warn-box {
  background: #fff4e0;
  border-left: 4px solid #f0a020;
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 16px 0;
}
.legal-prose .info-box {
  background: var(--bg-blue-soft);
  border-left: 4px solid var(--blue);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  margin: 22px 0;
}
.legal-prose .info-box h3,
.legal-prose .step-box h3,
.legal-prose .tip-box h3,
.legal-prose .warn-box h3 { margin-top: 0; margin-bottom: 8px }
.legal-prose .info-box p:last-child,
.legal-prose .step-box p:last-child,
.legal-prose .tip-box p:last-child,
.legal-prose .warn-box p:last-child { margin-bottom: 0 }

/* MARQUEE LOGOS CLIENTS — défilement horizontal infini */
.logos-section { padding-bottom: 90px }
.logos-marquee {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  margin-top: 12px;
  padding: 60px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.logos-marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: logosScroll 40s linear infinite;
}
@keyframes logosScroll {
  0% { transform: translateX(0) }
  100% { transform: translateX(-50%) }
}
.logo-item {
  flex-shrink: 0;
  width: 160px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter .25s ease, opacity .25s ease;
}
.logo-item:hover { filter: grayscale(0%); opacity: 1 }
.logo-item img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  display: block;
}
.logo-item--2x img { max-height: 100px; max-width: 200% }
.logo-item--4x img { max-height: 200px; max-width: 400% }
@media (prefers-reduced-motion: reduce) {
  .logos-marquee-track { animation: none }
}

/* COMBO GRID — variante compacte des cards services (utilisé en section "Notre combo recommandé") */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 720px) { .combo-grid { grid-template-columns: 1fr } }
.combo-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.combo-card:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -16px rgba(4, 2, 83, .14);
}
.combo-card-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px -4px rgba(4, 2, 83, .12);
}
.combo-card.bg-blue { background: var(--bg-blue-soft) }
.combo-card.bg-mint { background: var(--bg-mint) }
.combo-card.bg-yellow { background: var(--bg-yellow) }
.combo-card.bg-lavender { background: var(--bg-lavender) }
.combo-card.bg-pink { background: var(--bg-pink) }
.combo-card.bg-warm { background: var(--bg-warm) }
.combo-card .tag {
  font-size: 10px;
  padding: 3px 9px;
  margin-bottom: 8px;
  letter-spacing: 1.1px;
}
.combo-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 8px;
}
.combo-card-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

/* CTA FINAL — variante split asymétrique (titre gauche, timeline droite) */
.cta-final-split {
  background: #fff;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-final-split-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.cta-final-split-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-blue-soft);
  color: var(--blue);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-final-split h2 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.cta-final-split p {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 460px;
}
.cta-final-split-phone {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--text-soft);
}
.cta-final-split-phone a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}
.cta-final-split-timeline {
  position: relative;
}
.cta-final-split-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue) 0%, #d0d8ff 100%);
  z-index: 0;
}
.cta-final-split-step {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 12px 0;
  z-index: 1;
}
.cta-final-split-step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 12px -4px rgba(10, 11, 245, .3);
}
.cta-final-split-step-num-1 { background: var(--blue); color: #fff }
.cta-final-split-step-num-2 { background: #4a4bff; color: #fff }
.cta-final-split-step-num-3 { background: #fff; color: var(--blue); border: 2px solid #d0d8ff; box-shadow: none }
.cta-final-split-step-name {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 2px;
}
.cta-final-split-step-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}
@media (max-width: 820px) {
  .cta-final-split-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* WORKFLOW SCHEMA — 3 lanes verticales (utilisé sur les pages secteurs) */
.wf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1280px; margin: 0 auto }
@media (max-width: 980px) { .wf-grid { grid-template-columns: 1fr; gap: 32px } }
.wf-lane { background: #fff; border-radius: 18px; padding: 0 0 18px; box-shadow: 0 8px 32px -16px rgba(4, 2, 83, .12); border: 1px solid var(--line); overflow: hidden }
.wf-lane-header { display: flex; align-items: center; gap: 14px; padding: 18px 20px; color: #fff }
.wf-lane-header-blue { background: linear-gradient(135deg, #0a0bf5 0%, #4a4bff 100%) }
.wf-lane-header-green { background: linear-gradient(135deg, #0d8a4f 0%, #25a55c 100%) }
.wf-lane-header-orange { background: linear-gradient(135deg, #b87208 0%, #f0a020 100%) }
.wf-lane-header-purple { background: linear-gradient(135deg, #5b3ec7 0%, #8a6fde 100%) }
.wf-lane-header-pink { background: linear-gradient(135deg, #b8266b 0%, #d65a90 100%) }
/* aliases historiques (immobilier) */
.wf-lane-header-vente { background: linear-gradient(135deg, #0a0bf5 0%, #4a4bff 100%) }
.wf-lane-header-loc { background: linear-gradient(135deg, #0d8a4f 0%, #25a55c 100%) }
.wf-lane-header-gest { background: linear-gradient(135deg, #b87208 0%, #f0a020 100%) }
.wf-lane-icon { font-size: 30px; line-height: 1 }
.wf-lane-title { font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.2 }
.wf-lane-sub { font-size: 12px; opacity: 0.85; margin-top: 2px }
.wf-step { display: flex; gap: 12px; padding: 14px 16px; margin: 0 12px; background: var(--bg-cream); border-radius: 12px; border: 1px solid transparent; transition: border-color 0.2s }
.wf-step + .wf-step { margin-top: 0 }
.wf-step:hover { border-color: var(--blue) }
.wf-step-num { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 13px; font-weight: 600 }
.wf-step-body { flex: 1; min-width: 0 }
.wf-step-title { font-family: var(--font-display); font-size: 14.5px; font-weight: 500; color: var(--ink); line-height: 1.3; margin-bottom: 4px }
.wf-step-desc { font-size: 12.5px; color: var(--text-soft); line-height: 1.45; margin-bottom: 8px }
.wf-arrow { width: 0; height: 18px; margin: 0 auto; border-left: 2px dashed #c7c8d8; position: relative }
.wf-arrow::after { content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 7px solid #c7c8d8 }
.wf-pill { display: inline-block; padding: 3px 9px; border-radius: 100px; font-family: var(--font-display); font-size: 10.5px; font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; line-height: 1.4; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease }
a.wf-pill:hover { transform: translateY(-1px); box-shadow: 0 4px 10px -3px rgba(4, 2, 83, .18); text-decoration: none }
a.wf-pill::after { content: ' →'; opacity: 0; transition: opacity .15s ease }
a.wf-pill:hover::after { opacity: 1 }
.wf-pill-sig { background: #eef0ff; color: #0a0bf5 }
.wf-pill-time { background: #fff5d6; color: #8a6a00 }
.wf-pill-lre { background: #ffe1ec; color: #b8266b }
.wf-pill-cac { background: #d8f4e6; color: #0d8a4f }
.wf-pill-kyc { background: #ede5ff; color: #5b3ec7 }
.wf-pill-arc { background: #ffe9d6; color: #b87208 }
.wf-pill-relay { background: #e8e8f0; color: #555 }

/* FOOTER */
.footer { background: var(--ink); color: rgba(255, 255, 255, .65); padding: 64px 0 32px }
.footer-grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px } }
.footer-logo { height: 128px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px }
.footer-tag { font-size: 13px; color: rgba(255, 255, 255, .55); line-height: 1.6; max-width: 320px; margin-bottom: 22px }
.footer-contact { font-size: 12.5px; color: rgba(255, 255, 255, .55); line-height: 1.7 }
.footer-contact a { color: rgba(255, 255, 255, .85); transition: color .2s }
.footer-contact a:hover { color: #fff }
.footer-social { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 12.5px }
.footer-social a { color: rgba(255, 255, 255, .65); transition: color .2s }
.footer-social a:hover { color: #fff }
.footer-col h4 {
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px }
.footer-links a { font-size: 13px; color: rgba(255, 255, 255, .55); transition: color .2s ease }
.footer-links a:hover { color: #fff }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .4);
}
.footer-bottom a { color: rgba(255, 255, 255, .55) }
.footer-bottom a:hover { color: #fff }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease }
.reveal.visible { opacity: 1; transform: translateY(0) }

/* ═══ FORMULAIRES (contact) ═══ */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr } }
.form-field { margin-bottom: 18px }
.form-field-required label::after { content: ' *'; color: var(--red) }
.form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  transition: all .25s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(10, 11, 245, .08);
}
.form-field textarea { min-height: 120px; resize: vertical }
.form-field .placeholder-info { font-size: 11.5px; color: var(--muted); margin-top: 6px }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px }
.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  margin-bottom: 18px;
  font-weight: 500;
}
.form-message.success { background: var(--bg-mint); color: var(--green); border: 1px solid rgba(45, 159, 90, .25) }
.form-message.error { background: rgba(229, 72, 77, .08); color: var(--red); border: 1px solid rgba(229, 72, 77, .25) }
.form-card .btn { width: 100%; justify-content: center; padding: 15px 24px }

/* Sidebar contact */
.contact-sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.contact-sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-row:last-child { border-bottom: none }
.contact-info-icon {
  width: 36px; height: 36px;
  background: var(--bg-blue-soft);
  border-radius: var(--radius-md);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-info-row b { display: block; font-size: 12.5px; color: var(--ink); margin-bottom: 2px; font-weight: 600 }
.contact-info-row span,
.contact-info-row a { font-size: 13.5px; color: var(--text-soft); line-height: 1.45 }
.contact-info-row a:hover { color: var(--blue) }

/* Callback CTA gradient card */
.callback-card {
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.callback-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}
.callback-card > * { position: relative; z-index: 1 }
.callback-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}
.callback-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 18px;
  line-height: 1.5;
}
.callback-card .form-field input {
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: #fff;
}
.callback-card .form-field input:focus {
  background: rgba(255, 255, 255, .18);
  border-color: #fff;
  box-shadow: none;
}
.callback-card .form-field input::placeholder { color: rgba(255, 255, 255, .55) }
.callback-card .form-field label { color: rgba(255, 255, 255, .85) }
.callback-card .btn { background: #fff; color: var(--blue) }
.callback-card .btn:hover { background: var(--bg-cream); color: var(--blue) }

/* ═══ Page split générique (pour pages services internes) ═══ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split-section { grid-template-columns: 1fr; gap: 40px } }
.split-section-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 18px;
}
.split-section-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.split-section-content strong { color: var(--ink); font-weight: 600 }

/* Use cases grid (4 columns) — version améliorée avec icon wrapper */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .usecase-grid { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 500px) { .usecase-grid { grid-template-columns: 1fr } }
.usecase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.usecase-card:hover { transform: translateY(-3px); border-color: var(--blue); box-shadow: 0 16px 32px -16px rgba(4, 2, 83, .12) }
.usecase-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  margin-bottom: 14px;
  font-weight: 600;
  padding: 4px;
}
.usecase-icon img { width: 100%; height: 100%; object-fit: contain }
.combo-card-icon img { width: 100%; height: 100%; object-fit: contain }
.friction-icon img { width: 100%; height: 100%; object-fit: contain }
/* Override pour service-card-icon-wrap : on garde 36x36 même avec inline style */
.service-card-icon-wrap > img[style*="width:100%"] { width: 36px !important; height: 36px !important }
.usecase-card:nth-child(2n) .usecase-icon { background: var(--bg-blue-soft); color: var(--blue) }
.usecase-card:nth-child(3n) .usecase-icon { background: var(--bg-mint); color: var(--green) }
.usecase-card:nth-child(5n) .usecase-icon { background: var(--bg-warm); color: var(--orange) }
.usecase-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 6px;
}
.usecase-desc { font-size: 12.5px; color: var(--text-soft); line-height: 1.55; margin: 0 }

/* Compliance badges — version améliorée */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .compliance-grid { grid-template-columns: repeat(2, 1fr) } }
.compliance-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: all .25s ease;
}
.compliance-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 16px 32px -16px rgba(4, 2, 83, .12) }
.compliance-icon {
  width: 48px; height: 48px;
  background: var(--bg-blue-soft);
  border-radius: 12px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--blue);
  line-height: 1;
  font-weight: 700;
}
.compliance-card:nth-child(2) .compliance-icon { background: var(--bg-mint); color: var(--green) }
.compliance-card:nth-child(3) .compliance-icon { background: var(--bg-yellow); color: #B8860B }
.compliance-card:nth-child(4) .compliance-icon { background: var(--bg-warm); color: var(--orange) }
.compliance-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.compliance-desc { font-size: 11.5px; color: var(--muted); letter-spacing: 0.3px; line-height: 1.4 }

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 28px } }

/* ═══ Améliorations split-section pour les pages internes ═══ */
.split-section { align-items: stretch }
.split-section > div { display: flex; flex-direction: column; justify-content: center }

/* Product visual moins de padding pour pages internes */
.split-section .product-visual { padding: 28px 24px }
.split-section .product-mock { padding: 16px }

/* ═══ Page hero amélioré (visual à droite optionnel) ═══ */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 1024px) { .page-hero-grid { grid-template-columns: 1fr; gap: 40px } }
.page-hero-grid .page-hero-inner { text-align: left; max-width: none; margin: 0 }
.page-hero-grid .page-hero-cta { justify-content: flex-start }
.page-hero-visual { position: relative; perspective: 1500px }
.page-hero-visual .product-mock {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 32px 64px -20px rgba(4, 2, 83, .25), 0 0 0 1px rgba(4, 2, 83, .04);
  transform: rotateY(-3deg) rotateX(2deg);
  animation: dashboardFloat 8s ease-in-out infinite;
}

/* ═══ Bigger mockup variant (pour pages produit profondes) ═══ */
.product-mock-large {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 32px 64px -20px rgba(4, 2, 83, .2), 0 0 0 1px rgba(4, 2, 83, .04);
}
.product-mock-large .product-mock-row { padding: 14px 0 }
.product-mock-large .product-mock-icon { width: 42px; height: 42px }
.product-mock-large .product-mock-icon img { width: 28px; height: 28px }
.product-mock-large .product-mock-name { font-size: 14px }
.product-mock-large .product-mock-meta { font-size: 12px }

/* ═══ Comparison table pour comparer 2 options ═══ */
.compare-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.compare-table-row:last-child { border-bottom: none }
.compare-table-row.head { background: var(--bg-cream) }
.compare-table-cell { padding: 18px 24px; font-size: 14px }
.compare-table-cell.label { font-family: var(--font-display); font-weight: 500; color: var(--ink) }
.compare-table-cell.head-cell { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 16px; text-align: center }
.compare-table-cell.head-cell.highlight { background: var(--bg-blue-soft); color: var(--blue) }
.compare-table-cell.value { text-align: center; color: var(--text-soft) }
.compare-table-cell.value.check { color: var(--green); font-weight: 700; font-size: 18px }
.compare-table-cell.value.cross { color: var(--muted); font-size: 18px }
.compare-table-cell.value.highlight { background: rgba(238, 240, 255, .4) }
@media (max-width: 700px) {
  .compare-table-row { grid-template-columns: 1fr; gap: 4px; padding: 14px }
  .compare-table-cell { padding: 4px 0; font-size: 13px }
  .compare-table-row.head { display: none }
  .compare-table-cell.value::before { content: attr(data-label) ' : '; color: var(--muted); font-weight: 500 }
}

/* ═══ Friction grid — pour les "problèmes" (théme red, accents pink) ═══ */
.friction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .friction-grid { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 500px) { .friction-grid { grid-template-columns: 1fr } }
.friction-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}
.friction-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 16px 32px -16px rgba(229, 72, 77, .12) }
.friction-icon {
  width: 36px; height: 36px;
  background: var(--bg-pink);
  color: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  margin-bottom: 14px;
}
.friction-title {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 6px;
}
.friction-desc { font-size: 12.5px; color: var(--text-soft); line-height: 1.55; margin: 0 }
.friction-card-solution {
  background: linear-gradient(180deg, var(--bg-mint) 0%, #fff 100%);
  border-color: var(--green);
}
.friction-card-solution:hover { border-color: var(--green); box-shadow: 0 16px 32px -16px rgba(45, 159, 90, .18) }
.friction-card-solution .friction-icon { background: var(--green); color: #fff }
.friction-card-solution .friction-title { color: var(--green) }

/* ═══ Levels grid (3 niveaux Universign) ═══ */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .levels-grid { grid-template-columns: 1fr } }
.level-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.level-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 24px 50px -20px rgba(4, 2, 83, .15) }
.level-card.featured {
  background: linear-gradient(180deg, var(--bg-blue-soft) 0%, #fff 100%);
  border-color: var(--blue);
}
.level-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.level-popular {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: 0 6px 16px -4px rgba(10, 11, 245, .4);
}
.level-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.level-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.level-desc {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}
.level-features {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  flex-grow: 1;
}
.level-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text);
}
.level-feature::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.level-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-cream);
  color: var(--text-soft);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  align-self: flex-start;
}
.level-card.featured .level-tag { background: var(--blue); color: #fff }

/* ═══ Process / Steps avec image ═══ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr; gap: 36px } }
.process-list { display: flex; flex-direction: column; gap: 18px }
.process-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all .25s ease;
}
.process-item:hover { border-color: var(--blue); box-shadow: 0 12px 24px -12px rgba(4, 2, 83, .1) }
.process-item-num {
  width: 36px; height: 36px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}
.process-item-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.process-item-desc { font-size: 13px; color: var(--text-soft); line-height: 1.55 }

/* ═══ OUTILS INTERACTIFS ═══ */
.tool-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 20px 50px -20px rgba(4, 2, 83, .1);
}
.tool-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}
.tool-progress-step {
  flex: 1;
  height: 4px;
  background: var(--bg-cream);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.tool-progress-step.done { background: var(--green) }
.tool-progress-step.current { background: var(--blue); animation: progressPulse 1.5s ease-in-out infinite }
@keyframes progressPulse { 0%,100% { opacity: 1 } 50% { opacity: .6 } }
.tool-step { display: none }
.tool-step.active { display: block; animation: stepFadeIn .35s ease }
@keyframes stepFadeIn { from { opacity: 0; transform: translateY(6px) } to { opacity: 1; transform: translateY(0) } }
.tool-step-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tool-step-question {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.tool-options { display: grid; gap: 10px; margin-bottom: 28px }
.tool-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-cream);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .25s ease;
  text-align: left;
  font-family: inherit;
  width: 100%;
}
.tool-option:hover { background: var(--bg-blue-soft); border-color: var(--blue-light) }
.tool-option.selected { background: var(--bg-blue-soft); border-color: var(--blue); box-shadow: 0 0 0 4px rgba(10, 11, 245, .08) }
.tool-option-emoji { font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 2px }
.tool-option-content { flex: 1 }
.tool-option-title { font-family: var(--font-display); font-size: 15.5px; font-weight: 500; color: var(--ink); display: block; margin-bottom: 2px; letter-spacing: -0.01em }
.tool-option-desc { font-size: 13px; color: var(--text-soft); line-height: 1.5 }
.tool-input {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-cream);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: all .25s ease;
}
.tool-input:focus { outline: none; background: #fff; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(10, 11, 245, .08) }
.tool-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px }
.tool-actions .btn-back { background: transparent; color: var(--text-soft); border: 1px solid var(--line); padding: 11px 20px; border-radius: 100px; cursor: pointer; font-family: inherit; font-weight: 500; font-size: 14px }
.tool-actions .btn-back:hover { color: var(--ink); border-color: var(--ink) }
.tool-actions .btn-back:disabled { opacity: .3; cursor: not-allowed }

.tool-result {
  display: none;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(180deg, var(--bg-blue-soft) 0%, #fff 100%);
  border-radius: var(--radius-lg);
  margin-top: 8px;
}
.tool-result.active { display: block; animation: stepFadeIn .4s ease }
.tool-result-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--blue);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tool-result h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.tool-result-explainer { font-size: 15px; color: var(--text-soft); line-height: 1.6; max-width: 540px; margin: 0 auto 24px }
.tool-result-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0 28px; max-width: 540px; margin-left: auto; margin-right: auto }
.tool-result-stat { padding: 16px 12px; background: #fff; border-radius: 12px; border: 1px solid var(--line) }
.tool-result-stat-num { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--blue); line-height: 1; letter-spacing: -0.02em }
.tool-result-stat-label { font-size: 11px; color: var(--text-soft); margin-top: 6px; line-height: 1.3 }
.tool-result-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px }

/* ═══ GLOSSAIRE — pages termes + hub ═══ */
.glossary-hub-categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 36px }
@media (max-width: 900px) { .glossary-hub-categories { grid-template-columns: repeat(2, 1fr) } }
.glossary-cat-pill {
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.glossary-cat-pill .count { font-size: 11px; opacity: .7; font-weight: 400 }
.glossary-cat-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -8px rgba(4, 2, 83, .15) }

.glossary-letters { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 32px }
.glossary-letter {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: all .2s ease;
}
.glossary-letter:hover { background: var(--blue); color: #fff; border-color: var(--blue) }
.glossary-letter.disabled { opacity: .3; pointer-events: none }

.glossary-section { margin-bottom: 40px }
.glossary-section-letter {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bg-blue-soft);
}
.glossary-terms-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px }
@media (max-width: 700px) { .glossary-terms-list { grid-template-columns: 1fr } }
.glossary-term-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  transition: all .25s ease;
}
.glossary-term-link:hover { border-color: var(--blue); transform: translateX(2px) }
.glossary-term-link-name { font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em }
.glossary-term-link-cat { font-size: 11px; color: var(--muted); padding: 3px 8px; background: var(--bg-cream); border-radius: 100px; flex-shrink: 0 }

/* Page d'un terme */
.term-definition {
  background: var(--bg-blue-soft);
  border-left: 4px solid var(--blue);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 32px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.term-definition-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.term-definition p { font-size: 16px; line-height: 1.65; color: var(--text); margin: 0 }
.term-definition p strong { color: var(--ink); font-weight: 600 }

.term-meta {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 24px;
}
.term-meta-tag {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--bg-cream);
  color: var(--text-soft);
  border-radius: 100px;
  letter-spacing: 0.3px;
}
.term-meta-tag.cat { background: var(--bg-blue-soft); color: var(--blue) }
.term-meta-tag.acronym { background: var(--bg-yellow); color: #B8860B; font-family: 'SF Mono', monospace }

.term-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px }
@media (max-width: 700px) { .term-related { grid-template-columns: 1fr } }
.term-related-card {
  display: block;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  transition: all .25s ease;
}
.term-related-card:hover { border-color: var(--blue); transform: translateY(-2px) }
.term-related-card-name { font-family: var(--font-display); font-size: 15px; font-weight: 500; color: var(--ink); display: block; margin-bottom: 4px }
.term-related-card-desc { font-size: 12px; color: var(--text-soft); line-height: 1.4 }

/* Partner strip (utilisé sur la page expert-comptable pour logos logiciels métier) */
.partner-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
}
.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-soft);
  transition: all .25s ease;
  letter-spacing: 0.01em;
}
.partner-pill:hover { border-color: var(--blue); color: var(--ink); transform: translateY(-2px) }
.partner-pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--bg-blue-soft);
}
.partner-pill.green::before { background: var(--green); box-shadow: 0 0 0 2px var(--bg-mint) }
.partner-pill.gold::before { background: var(--gold); box-shadow: 0 0 0 2px var(--bg-yellow) }
.partner-pill.orange::before { background: var(--orange); box-shadow: 0 0 0 2px var(--bg-warm) }
.partner-pill b { color: var(--ink); font-weight: 600 }

/* Trust strip — 5 badges référencement compact harmonisé */
.trust-strip-section {
  background: var(--bg-cream);
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.trust-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 11, 245, .25);
  box-shadow: 0 8px 24px -12px rgba(4, 2, 83, .15);
}
.trust-badge-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-badge-icon svg { width: 18px; height: 18px }
.trust-badge-icon img { width: 26px; height: 26px; object-fit: contain }
a.trust-badge { position: relative; cursor: pointer; padding-right: 32px }
a.trust-badge::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%) translateX(-6px);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
a.trust-badge:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.trust-badge-icon-blue { background: var(--bg-blue-soft); color: var(--blue) }
.trust-badge-icon-green { background: var(--bg-mint); color: var(--green) }
.trust-badge-icon-orange { background: var(--bg-warm); color: #c79b35 }
.trust-badge-icon-gold { background: var(--bg-yellow); color: var(--gold) }
.trust-badge-text { display: flex; flex-direction: column; gap: 2px; min-width: 0 }
.trust-badge-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.trust-badge-meta {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}
@media (max-width: 980px) {
  .trust-strip-grid { grid-template-columns: repeat(3, 1fr) }
}
@media (max-width: 640px) {
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 10px }
  .trust-badge { padding: 12px 14px }
}
