/* ============================================================
   MedInvoice — Design system partagé (base.css)
   Tokens, reset, header (urgence-bar + nav), boutons, footer,
   sections communes, animations. Chargé sur toutes les pages.
   ============================================================ */

:root {
  --bg-primary: #FAFAF7;
  --bg-surface: #FFFFFF;
  --text-primary: #0F1419;
  --text-secondary: #6B7280;
  --text-tertiary: #9CA3AF;

  /* Accent unique — un seul bleu sur tout le site */
  --accent-labo: #2338e8;
  --accent-fournisseur: #2338e8;
  --accent-dentiste: #2338e8;
  --ink: #0F1419;

  --accent: #2338e8;
  --accent-soft: rgba(35, 56, 232, 0.08);

  --section-y: 112px;

  --urgence-red: #0F1419;
  --border: rgba(15, 20, 25, 0.08);
  --border-strong: rgba(15, 20, 25, 0.12);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 24px 60px rgba(0, 0, 0, 0.08);
}

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

/* Icônes coolicons (rendu par main.js) — taille = font-size du conteneur */
i.ci { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
i.ci svg { width: 1em; height: 1em; display: block; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Canvas clair continu (glow doux dérivé du hero, fixe) — fond #1 */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(circle 820px at 100% -120px, rgba(79,108,245,.10), transparent 60%),
    radial-gradient(circle 700px at 0% 420px, rgba(35,56,232,.05), transparent 62%);
}
/* Fonds de section unifiés : transparent → le canvas traverse (+ filet hairline) */
.stats-bar, .import-section, .features-section, .problem-section, .hole-section,
.relationship-section, .roi-section, .commercial-section, .diff-section,
.treso-section, .tiers-section, .pricing-section, .letter-section,
.content-section, .content-section.alt, .psec-tint,
.comparison-section, .toc-section,
section.sec-flat { background: transparent !important; }
.import-section, .features-section, .problem-section, .hole-section,
.relationship-section, .roi-section, .commercial-section, .diff-section,
.treso-section, .pricing-section, .letter-section,
.content-section, .psec-tint, .comparison-section, .validation-section,
section.sec-flat { border-top: 1px solid var(--border); }

/* Rythme vertical unique des blocs de contenu — écart égal partout */
.section, .psec,
.import-section, .features-section, .problem-section, .hole-section,
.relationship-section, .roi-section, .commercial-section, .diff-section,
.pricing-section, .letter-section, .validation-section, .comparison-section,
.content-section, section.sec-flat {
  padding-top: var(--section-y) !important;
  padding-bottom: var(--section-y) !important;
}
@media (max-width: 768px) {
  .section, .psec,
  .import-section, .features-section, .problem-section, .hole-section,
  .relationship-section, .roi-section, .commercial-section, .diff-section,
  .pricing-section, .letter-section, .validation-section, .comparison-section,
  .content-section, section.sec-flat {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
}

.font-serif { font-family: 'Poppins', sans-serif; font-weight: 400; }
.font-mono { font-family: 'JetBrains Mono', monospace; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 1024px) { .container { padding: 0 32px; } }
@media (max-width: 768px)  { .container { padding: 0 20px; } }

/* ============ URGENCE BAR ============ */
.urgence-bar {
  background: #0F1419;
  color: white;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 100;
}
.urgence-bar a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  margin-left: 8px;
  transition: opacity 0.2s;
}
.urgence-bar a:hover { opacity: 0.85; }
.urgence-bar .desktop { display: inline; }
.urgence-bar .mobile { display: none; }
@media (max-width: 768px) {
  .urgence-bar { font-size: 13px; padding: 10px 16px; }
  .urgence-bar .desktop { display: none; }
  .urgence-bar .mobile { display: inline; }
}

/* ============ NAV ============ */
nav.main {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 90;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
nav.main.scrolled {
  background: rgba(250, 250, 247, 0.95);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) { .nav-inner { padding: 16px 32px; } }
@media (max-width: 768px)  { .nav-inner { padding: 14px 20px; } }
.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
}
.logo span {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: -4px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
@media (max-width: 900px) { .nav-links { display: none; } nav.main .nav-inner > .btn-primary { display: none; } }

/* ============ Menu mobile flottant ============ */
.mnav-btn, .mnav-panel { display: none; }
@media (max-width: 900px) {
  .mnav-btn { display: inline-flex; align-items: center; gap: 9px; position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 1001; background: var(--ink); color: #fff; font-weight: 700; font-size: 14px; padding: 13px 22px; border: none; border-radius: 999px; box-shadow: 0 14px 34px -10px rgba(15,20,25,.55); cursor: pointer; }
  .mnav-bars { display: inline-flex; flex-direction: column; gap: 3px; }
  .mnav-bars span { width: 16px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
  .mnav-btn[aria-expanded="true"] .mnav-bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .mnav-btn[aria-expanded="true"] .mnav-bars span:nth-child(2) { opacity: 0; }
  .mnav-btn[aria-expanded="true"] .mnav-bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  .mnav-panel { display: block; position: fixed; left: 50%; bottom: 76px; transform: translateX(-50%) translateY(12px); width: min(92vw, 360px); z-index: 1001; background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 26px 64px -22px rgba(15,20,25,.45); padding: 10px; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s cubic-bezier(.16,1,.3,1); }
  .mnav-panel.open { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
  .mnav-panel a { display: block; padding: 13px 15px; border-radius: 11px; font-size: 15px; font-weight: 600; color: var(--ink); text-decoration: none; }
  .mnav-panel a.active, .mnav-panel a:active { background: var(--accent-soft); color: var(--accent); }
  .mnav-cta { margin-top: 6px; background: var(--ink); color: #fff !important; text-align: center; }
  .mnav-bk { position: fixed; inset: 0; background: rgba(15,20,25,.32); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .mnav-bk.open { opacity: 1; pointer-events: auto; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary { background: var(--text-primary); color: white; }
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 20, 25, 0.15);
}
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--accent-soft);
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover { background: var(--text-primary); color: white; }
.btn-ghost { background: transparent; color: var(--text-primary); padding: 12px 0; }
.btn-ghost:hover { color: var(--accent); }

/* ============ STATS BAR ============ */
.stats-bar {
  background: white;
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.stat-item { text-align: left; }
.stat-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.stat-value .unit { font-size: 0.5em; color: var(--text-secondary); margin-left: 4px; }
.stat-label { font-size: 14px; color: var(--text-primary); margin-bottom: 6px; font-weight: 500; }
.stat-source { font-size: 11px; color: var(--text-tertiary); font-style: italic; }

/* ============ SECTION TITLES ============ */
.section { padding: 120px 0; }
@media (max-width: 768px) { .section { padding: 80px 0; } }
.section-header { text-align: center; margin-bottom: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; font-weight: 500; color: var(--accent); }
.section-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
}

/* ============ MARQUEE ============ */
.marquee-section {
  background: var(--bg-primary);
  padding: 36px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 40s linear infinite; }
.marquee-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(36px, 6vw, 64px);
  color: var(--text-primary);
  opacity: 0.1;
  padding-right: 60px;
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.marquee-item .sep { color: var(--accent); opacity: 1; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============ FOOTER ============ */
footer { position: relative; overflow: hidden; padding: 96px 0 44px; color: #9CA3AF;
  background: radial-gradient(circle 620px at 12% -10%, rgba(79,108,245,.24), transparent 55%),
              radial-gradient(circle 520px at 100% 120%, rgba(99,102,241,.16), transparent 55%),
              linear-gradient(160deg, #0b1020, #0f1730); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; align-items: start; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.footer-logo { height: 76px; width: auto; display: block; margin-bottom: 20px; }
@media (max-width: 600px) { .footer-logo { height: 54px; } }
.footer-brand { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 32px; color: white; margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: #9CA3AF; max-width: 300px; line-height: 1.5; }
.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #9CA3AF; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #6B7280;
}
.footer-bottom a { color: var(--accent-labo); text-decoration: none; }
@media (max-width: 768px) { .footer-bottom { flex-direction: column; gap: 16px; text-align: center; } }

/* ============ FORMULAIRE (contact + waitlist) ============ */
.mi-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 20px var(--accent-soft); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.form-micro { font-size: 12px; color: var(--text-tertiary); text-align: center; }
.form-status { font-size: 14px; font-weight: 500; padding: 12px 14px; border-radius: 10px; display: none; }
.form-status.is-success { display: block; background: #DCFCE7; color: #15803D; }
.form-status.is-error   { display: block; background: #FEE2E2; color: #B91C1C; }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes popIn { from { opacity: 0; transform: translateY(20px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.05); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   PREMIUM (réf. Ramp / Brex) — composants réutilisables
   ============================================================ */
/* Fond hero : grille + glow bleu */
.hero-bg { position: absolute; inset: 0; z-index: -1; background-color: var(--bg-primary);
  background-image: linear-gradient(to right, rgba(15,20,25,.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(15,20,25,.04) 1px, transparent 1px);
  background-size: 6rem 4rem; pointer-events: none; }
.hero-bg::after { content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 720px at 100% 160px, rgba(79,108,245,.20), transparent 70%),
              radial-gradient(circle 600px at 0% 320px, rgba(35,56,232,.10), transparent 70%); }
.hero { position: relative; }

/* Panneau produit (screenshot dans cadre arrondi ombré) */
.panel { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,20,25,.04), 0 24px 48px -24px rgba(15,20,25,.22), 0 48px 80px -48px rgba(35,56,232,.18); }
.panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.7); z-index: 2; }
.panel img { display: block; width: 100%; height: auto; }
.panel-pad { padding: 14px; background: linear-gradient(180deg, #f7f8fc, #fff); }
.panel-pad img { border-radius: 12px; border: 1px solid var(--border); }

/* Feature row : texte + panneau, alterné */
.feature-row { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; padding: 56px 0; }
.feature-row.reverse .fr-text { order: 2; }
.feature-row.reverse .fr-media { order: 1; }
.fr-tag { display: inline-flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 16px; }
.fr-tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.fr-text h3 { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: clamp(26px, 3vw, 36px); line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 16px; color: var(--text-primary); }
.fr-text h3 em { font-style: italic; font-weight: 500; color: var(--accent); }
.fr-text p { font-size: 16px; line-height: 1.6; color: #4B5563; margin-bottom: 20px; max-width: 520px; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.feature-pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--text-primary); box-shadow: var(--shadow-soft); }
.feature-pill i.ci { color: var(--accent); font-size: 16px; }
@media (max-width: 900px) { .feature-row { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .feature-row.reverse .fr-text, .feature-row.reverse .fr-media { order: unset; } }

/* Cartes photo (profils / témoin) */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .photo-grid { grid-template-columns: 1fr; gap: 18px; max-width: 420px; margin: 0 auto; } }
.photo-card { position: relative; display: block; border-radius: 20px; overflow: hidden; text-decoration: none; aspect-ratio: 4/3; background: linear-gradient(150deg, #1b2a6b, #2338e8 55%, #4f6cf5); box-shadow: var(--shadow-card); transition: transform .25s, box-shadow .25s; }
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.photo-card .pc-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 64px; }
.photo-card .pc-grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,12,30,.78)); }
.photo-card .pc-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; color: #fff; z-index: 2; }
.photo-card .pc-tag { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.8); margin-bottom: 8px; }
.photo-card .pc-title { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
.photo-card .pc-sub { font-size: 13px; color: rgba(255,255,255,.85); margin-top: 4px; }
.photo-card .pc-go { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; font-weight: 600; color: #fff; }
.photo-card .pc-go i.ci { font-size: 16px; transition: transform .2s; }
.photo-card:hover .pc-go i.ci { transform: translateX(4px); }

/* Logo cloud (confiance / outils) */
.logo-cloud { text-align: center; padding: 36px 0 8px; }
.logo-cloud .lc-label { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--text-tertiary); margin-bottom: 22px; }
.logo-cloud .lc-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; }
.logo-cloud .lc-row span { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 19px; color: #9aa3b2; letter-spacing: -0.01em; }

/* Stat strip premium */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 768px) { .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; } }
.stat-strip .ss-item { text-align: left; }
.stat-strip .ss-num { font-family: 'Poppins', sans-serif; font-weight: 300; font-size: clamp(34px, 4vw, 52px); line-height: 1; color: var(--text-primary); letter-spacing: -0.02em; }
.stat-strip .ss-num .u { font-size: .5em; color: var(--text-secondary); margin-left: 3px; }
.stat-strip .ss-label { font-size: 14px; color: var(--text-primary); margin-top: 10px; font-weight: 500; }
.stat-strip .ss-src { font-size: 11px; color: var(--text-tertiary); font-style: italic; margin-top: 4px; }
.stat-strip .ss-src a { color: var(--text-tertiary); }

/* Témoignage */
.quote-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .quote-wrap { grid-template-columns: 1fr; gap: 28px; max-width: 560px; margin: 0 auto; } }
.quote-photo { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(150deg, #1b2a6b, #2338e8); position: relative; box-shadow: var(--shadow-card); }
.quote-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quote-photo .pc-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 64px; }
.quote-text blockquote { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.35; letter-spacing: -0.02em; color: var(--text-primary); margin-bottom: 22px; }
.quote-text blockquote em { font-style: italic; color: var(--accent); }
.quote-author { font-size: 14px; }
.quote-author b { display: block; font-weight: 700; color: var(--text-primary); }
.quote-author span { color: var(--text-secondary); }

/* CTA band sombre (navy) */
.cta-band { background: radial-gradient(circle 600px at 80% 0%, rgba(79,108,245,.35), transparent 60%), linear-gradient(160deg, #0b1020, #0f1730); color: #fff; border-radius: 28px; padding: 56px; display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px; align-items: center; overflow: hidden; }
@media (max-width: 900px) { .cta-band { grid-template-columns: 1fr; padding: 36px; gap: 28px; } }
.cta-band h2 { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px; }
.cta-band h2 em { font-style: italic; font-weight: 500; color: #9db2ff; }
.cta-band p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.8); margin-bottom: 26px; max-width: 460px; }
.cta-band .cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-light { background: #fff; color: var(--ink); }
.cta-band .btn-light:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.cta-band .btn-outline { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.16); }
.cta-band .panel { border: none; }

/* FAQ accordéon */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 4px; font-size: 17px; font-weight: 600; color: var(--text-primary); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--accent); transition: transform .25s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 4px 22px; font-size: 15px; line-height: 1.65; color: #4B5563; max-width: 680px; }
.faq-item .faq-a a { color: var(--accent); }

/* Section générique premium */
.psec { padding: 96px 0; }
@media (max-width: 768px) { .psec { padding: 64px 0; } }
.eyebrow { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--text-secondary); margin-bottom: 18px; }

/* ============================================================
   PREMIUM v2 — variété de structure (fonds alternés, titres à gauche)
   ============================================================ */
.psec-tint { background: linear-gradient(180deg, #f5f7ff, #eef2ff); }
.psec-dark { position: relative; background: radial-gradient(circle 720px at 88% -8%, rgba(79,108,245,.28), transparent 58%), linear-gradient(160deg, #0b1020, #0f1730); color: #fff; }
.psec-dark .eyebrow, .psec-dark .section-tag { color: rgba(255,255,255,.6); }
.psec-dark .section-title, .psec-dark h2, .psec-dark h3 { color: #fff; }
.psec-dark .section-title em, .psec-dark h2 em, .psec-dark h3 em { color: #9db2ff; }
.psec-dark .section-sub, .psec-dark p { color: rgba(255,255,255,.78); }

/* Header aligné à gauche / splitté (titre gauche, intro droite) */
.section-header.left { text-align: left; margin-left: 0; margin-right: 0; max-width: 760px; }
.section-header.split { text-align: left; max-width: none; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: end; margin-bottom: 56px; }
.section-header.split .section-title { margin-bottom: 0; }
.section-header.split .section-sub { margin: 0; text-align: left; max-width: none; }
@media (max-width: 860px) { .section-header.split { grid-template-columns: 1fr; gap: 18px; } }

/* Use-case cards premium */
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .uc-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }
.uc-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 28px; box-shadow: var(--shadow-soft); transition: transform .2s, box-shadow .2s; }
.uc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.uc-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.uc-card .uc-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 10px; }
.uc-card h3 { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: 20px; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 12px; color: var(--text-primary); }
.uc-card p { font-size: 14px; line-height: 1.6; color: #4B5563; margin-bottom: 12px; }
.uc-card p a, .uc-link { color: var(--accent); font-weight: 600; font-size: 14px; text-decoration: none; }

/* Impact cards (sur fond sombre) */
.impact-dark { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 40px 0; }
@media (max-width: 900px) { .impact-dark { grid-template-columns: 1fr; max-width: 520px; margin: 32px auto; } }
.ic-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 24px; backdrop-filter: blur(6px); }
.ic-card .ic-h { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #9db2ff; margin-bottom: 14px; }
.ic-card .ic-h i.ci { font-size: 16px; }
.ic-card h3 { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: 18px; color: #fff; margin-bottom: 10px; letter-spacing: -0.01em; }
.ic-card p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.ic-card .ic-sol { font-size: 13px; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 6px; }
.ic-card .ic-sol i.ci { color: #9db2ff; }

/* ==================================================================
   KIT COMPOSANTS PARTAGÉS (extrait de index.html inline — réutilisable)
   email-mockup · mini-anims .mn-* · transform .tf-* · validation .vstat
   mid CTA .midcta* · CTA final .cta2*
   ================================================================== */
  .email-mockup {
    max-width: 720px;
    margin: 0 auto 80px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }
  .email-header {
    background: #F9FAFB;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .email-header::before {
    content: 'OFFICIEL';
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    background: var(--text-primary);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.08em;
  }
  .email-from {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 6px;
  }
  .email-from .name { color: var(--text-primary); font-weight: 600; }
  .email-subject {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
  }
  .email-body {
    padding: 28px 32px;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
  }
  .email-body p { margin-bottom: 16px; }
  .email-body p:last-child { margin-bottom: 0; }
  /* le bloc est dans .psec-dark (texte blanc) → forcer le texte de l'email lisible sur la carte blanche */
  .psec-dark .email-body, .psec-dark .email-body p { color: #374151; }
  .email-body .highlight {
    background: rgba(35, 56, 232, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
    color: var(--accent);
  }
  .email-body .alert {
    background: #eef0f3;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
    color: var(--ink);
  }
  .email-signature {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 14px;
  }

  /* ===== Validation v2 : jauges donut + testimonials ===== */
  .vstats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 14px; }
  @media (max-width: 760px) { .vstats { grid-template-columns: 1fr; } }
  .vstat { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 32px 24px 28px; text-align: center; box-shadow: 0 18px 44px -28px rgba(15,20,25,.2); transition: transform .25s ease, box-shadow .25s ease; }
  .vstat:hover { transform: translateY(-4px); box-shadow: 0 26px 56px -28px rgba(35,56,232,.28); }
  .vgauge { position: relative; width: 150px; height: 150px; margin: 0 auto 20px; }
  .vgauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
  .vg-track { fill: none; stroke: #ecf0f6; stroke-width: 9; }
  .vg-val { fill: none; stroke: var(--c,var(--accent)); stroke-width: 9; stroke-linecap: round; stroke-dasharray: 264; stroke-dashoffset: 264; transition: stroke-dashoffset 1.3s cubic-bezier(.5,0,.2,1); }
  .vstat.visible .vg-val { stroke-dashoffset: calc(264px - 264px * var(--p) / 100); }
  .vnum { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 400; font-size: 40px; color: var(--ink); letter-spacing: -.03em; }
  .vnum .unit { font-size: 22px; margin-left: 1px; }
  .vlabel { font-size: 14px; line-height: 1.45; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 0 4px; }
  .vlabel i.ci { font-size: 22px; color: var(--c,var(--accent)); }
  .vlabel strong { color: var(--text-primary); font-weight: 700; }
  .vsrc { text-align: center; font-size: 12px; color: var(--text-tertiary); font-style: italic; margin: 6px 0 36px; }

  .vquotes { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  @media (max-width: 760px) { .vquotes { grid-template-columns: 1fr; } }
  .vq { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 28px 30px; display: flex; gap: 16px; box-shadow: 0 14px 36px -26px rgba(15,20,25,.2); overflow: hidden; }
  .vq::before { content: '\201C'; position: absolute; top: 6px; right: 18px; font-family: 'Poppins', serif; font-size: 90px; line-height: 1; color: var(--c,var(--accent)); opacity: .12; }
  .vq-av { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; color: #fff; background: var(--c,var(--accent)); }
  .vq-tx { font-size: 15.5px; line-height: 1.5; color: var(--text-primary); font-style: italic; }
  .vq-au { font-size: 12.5px; color: var(--text-secondary); margin-top: 11px; font-style: normal; }
  .vq-au strong { color: var(--text-primary); font-weight: 700; }

  /* ============ MINI-ANIMS COMPOSANT (feature-rows) — fidèle UI app ============ */
  .mn-panel { background: linear-gradient(180deg,#fbfcff,#f3f5fb); transition: transform .3s ease, box-shadow .3s ease; }
  .mn-panel:hover { transform: translateY(-2px); }
  .mn-stage { position: relative; container-type: inline-size; height: calc(398px * min(1, 100cqw / 600px)); overflow: hidden; }
  .mn-stage[data-mini="den-detail"] { height: calc(430px * min(1, 100cqw / 600px)); }
  .mn-fit { position: absolute; top: 0; left: 0; width: 600px; transform-origin: top left; transform: scale(min(1, 100cqw / 600px)); }
  .mn-app { position: relative; font-family: 'Urbanist','Poppins',sans-serif; padding: 24px 26px; color: #0F1419; }
  .mn-app * { box-sizing: border-box; }
  .mn-kl { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #9aa3b5; }

  /* badges statut DS (point + libellé) */
  .mn-bdg { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; padding: 3px 8px; border-radius: 0; white-space: nowrap; }
  .mn-bdg::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
  .mn-bdg.is-verif { background: #fffbeb; color: #b45309; }
  .mn-bdg.is-vu    { background: #eceffe; color: #2338e8; }
  .mn-bdg.is-sent  { background: #f3f4f6; color: #6b7280; }
  .mn-bdg.is-paid  { background: #ecfdf5; color: #16a34a; }
  .mn-bdg-b { display: none; }

  /* ===== Anim A : Mes factures ===== */
  .mn-ahead { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 15px; }
  .mn-title { font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
  .mn-asub { font-size: 12.5px; color: #8a93a6; margin-top: 2px; }
  .mn-newbtn { display: inline-flex; align-items: center; gap: 7px; background: var(--accent); color: #fff; font-size: 12.5px; font-weight: 700; padding: 8px 13px; border-radius: 0; flex-shrink: 0; }
  .mn-newbtn i.ci { font-size: 14px; }
  .mn-fbar { display: flex; gap: 7px; margin-bottom: 14px; flex-wrap: wrap; }
  .mn-fchip { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px; background: #fff; border: 1px solid var(--border); color: #5b6678; }
  .mn-fchip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--fc,#9aa3b5); flex-shrink: 0; }
  .mn-fchip.fc-verif { --fc: #b45309; } .mn-fchip.fc-sent { --fc: #8a93a6; } .mn-fchip.fc-rep { --fc: #2338e8; } .mn-fchip.fc-paid { --fc: #16a34a; }

  .mn-list { background: #fff; border: 1px solid #eef0f3; border-radius: 10px; overflow: hidden; box-shadow: 0 1px 2px rgba(15,20,25,.04); }
  .mn-row { position: relative; display: flex; align-items: center; gap: 13px; padding: 12px 16px; border-bottom: 1px solid #eef0f4; transition: background .2s ease; }
  .mn-row:last-child { border-bottom: 0; }
  .mn-row:hover { background: #f8faff; }
  .mn-av { width: 38px; height: 38px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; }
  .mn-rmain { min-width: 0; flex: 1; }
  .mn-rtop { display: flex; align-items: center; gap: 9px; }
  .mn-rname { font-size: 14px; font-weight: 700; white-space: nowrap; }
  .mn-rmeta { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: #9aa3b5; margin-top: 3px; }
  .mn-rmeta i.ci { font-size: 12px; }
  .mn-ramt { position: relative; display: inline-block; font-size: 15px; font-weight: 800; letter-spacing: -.01em; white-space: nowrap; line-height: 1.2; }
  .mn-see { font-size: 11.5px; font-weight: 700; color: #5b6678; border: 1px solid var(--border); border-radius: 0; padding: 6px 11px; white-space: nowrap; }
  .mn-chev { color: #c2c9d6; font-size: 15px; display: flex; }
  .mn-coin { position: absolute; right: 100%; margin-right: 10px; top: 50%; transform: translateY(-50%); font-size: 11.5px; font-weight: 800; color: #16a34a; white-space: nowrap; background: #ecfdf5; padding: 2px 7px; border-radius: 0; opacity: 0; }
  .mn-row-new { max-height: 0; opacity: 0; padding-top: 0; padding-bottom: 0; overflow: hidden; transform: translateY(-10px); transition: max-height .45s cubic-bezier(.34,1.56,.64,1), opacity .3s ease, padding .4s ease, transform .45s cubic-bezier(.34,1.56,.64,1); }

  .mn-notif { position: absolute; top: 16px; right: 18px; display: flex; align-items: center; gap: 8px; background: #0F1419; color: #fff; font-size: 12px; padding: 9px 13px; border-radius: 0; box-shadow: 0 12px 28px -10px rgba(15,20,25,.5); opacity: 0; transform: translateY(-10px); z-index: 7; transition: opacity .45s ease, transform .45s cubic-bezier(.16,1,.3,1); }
  .mn-notif i.ci { font-size: 15px; }
  .mn-notif b { font-weight: 800; }

  /* états A : transitions de badge (display toggle, sans décalage) */
  .mn-stage[data-act="2"] .mn-row:nth-child(2) .mn-bdg-a,
  .mn-stage[data-act="3"] .mn-row:nth-child(2) .mn-bdg-a,
  .mn-stage[data-act="4"] .mn-row:nth-child(2) .mn-bdg-a { display: none; }
  .mn-stage[data-act="2"] .mn-row:nth-child(2) .mn-bdg-b,
  .mn-stage[data-act="3"] .mn-row:nth-child(2) .mn-bdg-b,
  .mn-stage[data-act="4"] .mn-row:nth-child(2) .mn-bdg-b { display: inline-flex; animation: mnPop .45s cubic-bezier(.34,1.56,.64,1) both; }
  .mn-stage[data-act="3"] .mn-row:nth-child(3) .mn-bdg-a,
  .mn-stage[data-act="4"] .mn-row:nth-child(3) .mn-bdg-a { display: none; }
  .mn-stage[data-act="3"] .mn-row:nth-child(3) .mn-bdg-b,
  .mn-stage[data-act="4"] .mn-row:nth-child(3) .mn-bdg-b { display: inline-flex; animation: mnPop .45s cubic-bezier(.34,1.56,.64,1) both; }
  .mn-stage[data-act="3"] .mn-row:nth-child(3) .mn-coin { animation: mnCoinX .75s cubic-bezier(.34,1.56,.64,1) both; }
  .mn-stage[data-act="4"] .mn-row-new { max-height: 64px; opacity: 1; padding-top: 12px; padding-bottom: 12px; transform: translateY(0); }
  .mn-stage[data-act="4"] .mn-notif { opacity: 1; transform: translateY(0); }

  /* ===== Anim B : Détail facture (fidèle) ===== */
  .mn-bhrow { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
  .mn-bref { font-size: 12px; font-weight: 700; color: #9aa3b5; letter-spacing: .02em; }
  .mn-bsup { font-size: 13px; font-weight: 700; color: #5b6678; }
  .mn-bamtrow { display: flex; align-items: flex-end; justify-content: space-between; }
  .mn-bamt { font-size: 36px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
  .mn-bamt .mn-cur { font-size: 20px; font-weight: 700; }
  .mn-bech { text-align: right; display: flex; flex-direction: column; gap: 2px; }
  .mn-bechd { font-size: 15px; font-weight: 800; letter-spacing: -.01em; }
  .mn-bechs { font-size: 11px; color: #9aa3b5; }
  .mn-bmeta { font-size: 12px; color: #8a93a6; margin-top: 6px; }
  .mn-bacts { display: flex; gap: 9px; margin: 13px 0 15px; }
  .mn-pay { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 20px; border: 0; border-radius: 0; background: var(--accent); color: #fff; font-family: inherit; font-size: 13.5px; font-weight: 800; cursor: pointer; transition: background .35s ease; }
  .mn-pay i.ci { font-size: 16px; }
  .mn-pay-a { display: inline-flex; align-items: center; gap: 8px; }
  .mn-pay-b { display: none; align-items: center; gap: 8px; }
  .mn-reporter { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border: 1px solid var(--border); border-radius: 0; background: #fff; color: #5b6678; font-size: 13.5px; font-weight: 700; }
  .mn-reporter i.ci { font-size: 16px; }

  .mn-stepper { position: relative; display: flex; justify-content: space-between; margin: 6px 4px 20px; }
  .mn-sline { position: absolute; left: 12px; right: 12px; top: 12px; height: 2px; background: #e6e9f0; border-radius: 2px; }
  .mn-sfill { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 2px; box-shadow: 0 0 8px rgba(35,56,232,.4); transition: width .55s cubic-bezier(.5,0,.2,1); }
  .mn-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
  .mn-sc { position: relative; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 2px solid #d2d8e6; display: flex; align-items: center; justify-content: center; transition: background .3s ease, border-color .3s ease, transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease; }
  .mn-snum { font-size: 11px; font-weight: 800; color: #9aa3b5; transition: opacity .2s ease; }
  .mn-sc svg { position: absolute; width: 13px; height: 13px; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; fill: none; opacity: 0; transition: opacity .2s ease; }
  .mn-sl { font-size: 11px; font-weight: 700; color: #9aa3b5; transition: color .25s ease; }
  .mn-step.is-on .mn-sc { background: var(--accent); border-color: var(--accent); transform: scale(1.06); box-shadow: 0 0 0 4px rgba(35,56,232,.14); }
  .mn-step.is-on .mn-snum { opacity: 0; }
  .mn-step.is-on .mn-sc svg { opacity: 1; }
  .mn-step.is-on .mn-sl { color: #0F1419; }
  .mn-step.n5.is-on .mn-sc { background: #16a34a; border-color: #16a34a; box-shadow: 0 0 0 5px rgba(22,163,74,.16); }

  .mn-dtl { background: #fff; border: 1px solid #eef0f3; border-radius: 0; padding: 14px 16px; box-shadow: 0 1px 2px rgba(15,20,25,.04); }
  .mn-dtl-h { font-size: 13px; font-weight: 800; margin-bottom: 10px; }
  .mn-dtl-r { display: flex; align-items: center; gap: 10px; font-size: 13px; padding: 5px 0; }
  .mn-dtl-r > span:first-child { flex: 1; color: #344054; }
  .mn-q { color: #9aa3b5; font-size: 12px; }
  .mn-t { font-weight: 700; }
  .mn-dtl-tot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding-top: 10px; border-top: 1px solid #eef0f4; font-size: 14px; font-weight: 800; }
  .mn-ttc { color: var(--accent); }
  .mn-stamp { position: absolute; top: 64px; right: 30px; font-size: 26px; font-weight: 900; letter-spacing: .06em; color: #16a34a; border: 3px solid #16a34a; border-radius: 0; padding: 4px 12px; transform: rotate(-12deg) scale(.6); opacity: 0; z-index: 5; }

  /* états B */
  .mn-stage[data-act="1"] .mn-sfill { width: 25%; }
  .mn-stage[data-act="2"] .mn-sfill { width: 50%; }
  .mn-stage[data-act="3"] .mn-sfill { width: 75%; }
  .mn-stage[data-act="4"] .mn-sfill { width: 100%; }
  .mn-stage[data-act="3"] .mn-pay, .mn-stage[data-act="4"] .mn-pay { background: #15a34a; }
  .mn-stage[data-act="3"] .mn-pay { animation: mnPress .45s ease both; }
  .mn-stage[data-act="3"] .mn-pay-a, .mn-stage[data-act="4"] .mn-pay-a { display: none; }
  .mn-stage[data-act="3"] .mn-pay-b, .mn-stage[data-act="4"] .mn-pay-b { display: inline-flex; }
  .mn-stage[data-act="3"] .mn-stamp, .mn-stage[data-act="4"] .mn-stamp { animation: mnStamp .7s cubic-bezier(.34,1.56,.64,1) both; }
  .mn-stage[data-act="4"] .mn-bhrow .mn-bdg-a { display: none; }
  .mn-stage[data-act="4"] .mn-bhrow .mn-bdg-b { display: inline-flex; animation: mnPop .45s cubic-bezier(.34,1.56,.64,1) both; }
  .mn-stage[data-act="4"] .mn-notif { opacity: 1; transform: translateY(0); }

  /* confettis (burst paiement / encaissement) */
  .mn-conf { position: absolute; left: 50%; bottom: 70px; width: 0; height: 0; pointer-events: none; z-index: 6; }
  .mn-conf.mn-conf-tr { left: auto; right: 56px; bottom: auto; top: 70px; }
  .mn-conf i { position: absolute; left: 0; top: 0; width: 7px; height: 7px; border-radius: 2px; opacity: 0; transform: translate(-50%,-50%) scale(.3); }
  .mn-stage[data-act="3"] .mn-conf i { animation: mnConf .8s cubic-bezier(.2,.7,.3,1) forwards; }

  @keyframes mnPop { 0%{transform:scale(.4);opacity:0} 60%{transform:scale(1.12);opacity:1} 100%{transform:scale(1);opacity:1} }
  @keyframes mnStamp { 0%{opacity:0;transform:rotate(-12deg) scale(1.6)} 55%{opacity:1;transform:rotate(-12deg) scale(.9)} 100%{opacity:1;transform:rotate(-12deg) scale(1)} }
  @keyframes mnCoinX { 0%{opacity:0;transform:translateY(-50%) scale(.5)} 60%{opacity:1;transform:translateY(-50%) scale(1.14)} 100%{opacity:1;transform:translateY(-50%) scale(1)} }
  @keyframes mnPress { 0%{transform:scale(1)} 35%{transform:scale(.955)} 100%{transform:scale(1)} }
  @keyframes mnConf { 0%{opacity:1;transform:translate(-50%,-50%) scale(.3)} 75%{opacity:1} 100%{opacity:0;transform:translate(calc(-50% + var(--tx)),calc(-50% + var(--ty))) scale(1) rotate(var(--r))} }

  @media (prefers-reduced-motion: reduce) {
    .mn-bdg, .mn-coin, .mn-notif, .mn-row-new, .mn-sfill, .mn-sc, .mn-snum, .mn-sl, .mn-pay, .mn-stamp, .mn-conf i { transition: none !important; animation: none !important; }
    .mn-conf { display: none; }
  }

  /* ============ TRANSFORM (avant → avec MedInvoice) ============ */
  .tf-wrap { position: relative; max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; border-radius: 28px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 30px 70px -34px rgba(15,20,25,.22); }
  .tf-side { padding: 40px 38px; }
  .tf-before { background: linear-gradient(165deg,#f8f9fc,#eceef4); }
  .tf-after { background: linear-gradient(165deg,#f3f6ff,#e6ecff); border-left: 1px solid rgba(35,56,232,.12); }
  .tf-head { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; }
  .tf-badge { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 6px 13px; border-radius: 999px; }
  .tf-before .tf-badge { background: #e6e8ee; color: #8a93a6; }
  .tf-after .tf-badge { background: var(--accent); color: #fff; box-shadow: 0 6px 16px -6px rgba(35,56,232,.5); }
  .tf-sub { font-size: 12.5px; color: #9aa3b5; }
  .tf-item { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-top: 1px solid rgba(15,20,25,.06); font-size: 14.5px; line-height: 1.45; }
  .tf-item:first-of-type { border-top: 0; }
  .tf-ic { width: 27px; height: 27px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; font-weight: 800; }
  .tf-before .tf-item { color: #8b94a3; }
  .tf-before .tf-ic { background: #e2e5ec; color: #aab0bd; }
  .tf-after .tf-item { color: #1a2230; font-weight: 600; }
  .tf-after .tf-ic { background: #fff; color: var(--accent); box-shadow: 0 2px 7px rgba(35,56,232,.16); }
  .tf-after .tf-ic i.ci { font-size: 15px; }
  .tf-after .tf-item:hover .tf-ic { transform: translateY(-1px) scale(1.06); transition: transform .2s ease; }
  .tf-arrow { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 54px; height: 54px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -8px rgba(35,56,232,.55); border: 4px solid #fff; z-index: 2; }
  .tf-arrow i.ci { font-size: 22px; }
  @media (max-width: 768px) {
    .tf-wrap { grid-template-columns: 1fr; }
    .tf-after { border-left: 0; border-top: 1px solid rgba(35,56,232,.12); }
    .tf-arrow i.ci { transform: rotate(90deg); }
  }

  /* ============ MID-PAGE CTA (dark, moderne) ============ */
  .midcta { padding: 16px 0 52px; }
  .midcta-band { position: relative; max-width: 940px; margin: 0 auto; border-radius: 24px; overflow: hidden; padding: 44px 40px; text-align: center; background: radial-gradient(circle 520px at 50% -20%, rgba(79,108,245,.4), transparent 60%), linear-gradient(160deg, #0b1020, #0f1730); border: 1px solid rgba(255,255,255,.08); box-shadow: 0 32px 70px -40px rgba(11,16,32,.8); }
  .midcta-band::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 52px 52px; -webkit-mask-image: radial-gradient(circle 420px at 50% 0%, #000, transparent 72%); mask-image: radial-gradient(circle 420px at 50% 0%, #000, transparent 72%); pointer-events: none; }
  .midcta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
  .midcta-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #b9c6ff; background: rgba(79,108,245,.14); border: 1px solid rgba(79,108,245,.32); padding: 6px 13px; border-radius: 999px; margin-bottom: 18px; }
  .midcta-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #6ea8ff; animation: mcPulse 2s ease-in-out infinite; }
  .midcta h2 { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -.03em; color: #fff; margin-bottom: 12px; }
  .midcta h2 em { font-style: italic; font-weight: 500; background: linear-gradient(90deg,#A5B4FC,#6366F1); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .midcta-sub { font-size: 15.5px; line-height: 1.55; color: rgba(255,255,255,.72); max-width: 500px; margin: 0 auto 24px; }
  .midcta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .midcta-btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; padding: 13px 22px; border-radius: 12px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
  .midcta-btn i.ci { font-size: 16px; }
  .midcta-primary { background: linear-gradient(180deg,#5b73f7,#3a4fe0); color: #fff; box-shadow: 0 12px 28px -10px rgba(79,108,245,.6); }
  .midcta-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(79,108,245,.72); }
  .midcta-ghost { background: rgba(255,255,255,.07); color: #fff; border: 1px solid rgba(255,255,255,.22); }
  .midcta-ghost:hover { background: rgba(255,255,255,.14); }
  .midcta-trust { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 22px; font-size: 12.5px; color: rgba(255,255,255,.62); }
  .midcta-trust span { display: inline-flex; align-items: center; gap: 6px; }
  .midcta-trust i.ci { font-size: 14px; color: #9db2ff; }
  @keyframes mcPulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(110,168,255,.5); } 50%{ box-shadow: 0 0 0 5px rgba(110,168,255,0); } }
  @media (max-width: 640px) { .midcta-band { padding: 36px 22px; } }

  /* ============ CTA FINAL v2 (form dans carte, fond dark graphique) ============ */
  .cta2 { position: relative; overflow: hidden; border-radius: 32px; max-width: 1140px; margin: 0 auto; padding: 64px 56px; background: radial-gradient(circle 600px at 12% -10%, rgba(79,108,245,.42), transparent 55%), radial-gradient(circle 520px at 100% 120%, rgba(99,102,241,.32), transparent 55%), linear-gradient(155deg, #0b1020, #0f1730); border: 1px solid rgba(255,255,255,.08); display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
  .cta2::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: radial-gradient(circle 600px at 20% 0%, #000, transparent 70%); mask-image: radial-gradient(circle 600px at 20% 0%, #000, transparent 70%); pointer-events: none; }
  @media (max-width: 900px) { .cta2 { grid-template-columns: 1fr; gap: 32px; padding: 44px 28px; } }
  .cta2-copy { position: relative; z-index: 1; color: #fff; }
  .cta2-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #b9c6ff; background: rgba(79,108,245,.14); border: 1px solid rgba(79,108,245,.32); padding: 6px 13px; border-radius: 999px; margin-bottom: 18px; }
  .cta2-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #6ea8ff; animation: mcPulse 2s ease-in-out infinite; }
  .cta2-copy h2 { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.08; letter-spacing: -.03em; margin-bottom: 14px; color: #fff; }
  .cta2-copy h2 em { font-style: italic; font-weight: 500; background: linear-gradient(90deg,#A5B4FC,#6366F1); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .cta2-copy .cta2-sub { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.74); max-width: 440px; margin-bottom: 24px; }
  .cta2-benefits { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .cta2-benefits li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: rgba(255,255,255,.88); }
  .cta2-benefits .bic { width: 24px; height: 24px; border-radius: 7px; background: rgba(110,168,255,.16); color: #9db2ff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .cta2-benefits .bic i.ci { font-size: 14px; }
  .cta2-card { position: relative; z-index: 1; background: #fff; border-radius: 22px; padding: 30px; box-shadow: 0 30px 70px -28px rgba(0,0,0,.6); }
  .cta2-card::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 3px; border-radius: 0 0 3px 3px; background: linear-gradient(90deg,#5b73f7,#6366F1); }
  .cta2-card .ct-title { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 19px; letter-spacing: -.01em; color: var(--ink); margin-bottom: 4px; }
  .cta2-card .ct-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 20px; }
  .cta2-card .form-label { color: var(--text-secondary); }
  .cta2-card .form-micro { color: var(--text-tertiary); }
  /* form déjà dans .cta2-card → retirer le box-in-box (waitlist-form legacy) */
  .cta2-card .waitlist-form { background: none; box-shadow: none; border-radius: 0; padding: 0; max-width: none; margin: 0; }

/* Logo image (SVG wordmark) dans la nav */
.logo.logo-img { display: inline-flex; align-items: center; padding: 0; }
.logo.logo-img img { height: 44px; width: auto; display: block; }
@media (max-width: 600px) { .logo.logo-img img { height: 34px; } }

/* ============ PRICING CARDS (graphique, partagé) ============ */
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; max-width: 1080px; margin: 0 auto; align-items: stretch; }
.ptier { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 30px 26px; box-shadow: 0 14px 38px -26px rgba(15,20,25,.22); transition: transform .25s ease, box-shadow .25s ease; }
.ptier:hover { transform: translateY(-5px); box-shadow: 0 26px 56px -28px rgba(35,56,232,.28); }
.ptier.featured { border-color: transparent; background: radial-gradient(circle 420px at 50% -20%, rgba(79,108,245,.45), transparent 60%), linear-gradient(160deg,#0b1020,#0f1730); color: #fff; box-shadow: 0 30px 70px -30px rgba(11,16,32,.7); }
.ptier.featured::before { content: ''; position: absolute; inset: 0; border-radius: 22px; padding: 1px; background: linear-gradient(160deg, rgba(159,178,255,.6), transparent 55%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.ptier-badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg,#5b73f7,#6366F1); color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: .04em; padding: 5px 13px; border-radius: 999px; white-space: nowrap; box-shadow: 0 8px 20px -6px rgba(79,108,245,.6); }
.ptier-name { font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 12px; }
.ptier.featured .ptier-name { color: #9db2ff; }
.ptier-price { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 38px; line-height: 1; letter-spacing: -.03em; color: var(--ink); }
.ptier.featured .ptier-price { color: #fff; }
.ptier-price .per { font-size: 14px; font-weight: 400; color: var(--text-tertiary); margin-left: 3px; letter-spacing: 0; }
.ptier.featured .ptier-price .per { color: rgba(255,255,255,.6); }
.ptier-note { font-size: 12px; color: var(--accent); font-weight: 600; margin-top: 8px; }
.ptier.featured .ptier-note { color: #9db2ff; }
.ptier-feats { list-style: none; margin: 18px 0 22px; padding: 16px 0 0; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 11px; flex: 1; }
.ptier.featured .ptier-feats { border-top-color: rgba(255,255,255,.14); }
.ptier-feats li { position: relative; padding-left: 26px; font-size: 13.5px; line-height: 1.4; color: #344054; }
.ptier.featured .ptier-feats li { color: rgba(255,255,255,.88); }
.ptier-feats li::before { content: ''; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; border-radius: 50%; background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F6CF5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 9-10'/%3E%3C/svg%3E") center/11px no-repeat; }
.ptier.featured .ptier-feats li::before { background: rgba(157,178,255,.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239db2ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4 9-10'/%3E%3C/svg%3E") center/11px no-repeat; }
.ptier-feats li strong { color: var(--ink); font-weight: 700; }
.ptier.featured .ptier-feats li strong { color: #fff; }
.ptier-cta { display: block; text-align: center; padding: 12px 18px; border-radius: 12px; font-size: 14px; font-weight: 700; text-decoration: none; border: 1px solid var(--border-strong); color: var(--ink); transition: transform .2s ease, background .2s ease; }
.ptier-cta:hover { transform: translateY(-2px); }
.ptier-cta-accent { background: linear-gradient(180deg,#5b73f7,#3a4fe0); color: #fff; border-color: transparent; box-shadow: 0 12px 28px -10px rgba(79,108,245,.6); }
.ptier.featured .ptier-cta { background: #fff; color: var(--ink); border-color: transparent; }

/* ============ FEATURE CARDS « Ce que vous gagnez » — upgrade fun (override inline) ============ */
.features-section .feature-card { position: relative; overflow: hidden; border-radius: 18px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.features-section .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,#4F6CF5,#6366F1); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.features-section .feature-card:hover { transform: translateY(-5px); box-shadow: 0 26px 56px -28px rgba(35,56,232,.30); border-color: rgba(79,108,245,.35); }
.features-section .feature-card:hover::before { transform: scaleX(1); }
.features-section .feature-icon { background: linear-gradient(135deg,#4F6CF5,#6366F1) !important; color: #fff !important; box-shadow: 0 10px 22px -8px rgba(79,108,245,.55); transition: transform .25s ease; }
.features-section .feature-card:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }

/* ============ FEATURES : grille 3 col + CTA pleine largeur ============ */
@media (min-width: 880px) {
  .features-section .features-grid { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .features-section .feature-cta { grid-column: 1 / -1; }
}

/* tuile CTA pleine largeur (navy comme nos CTA) */
.features-section .feature-card.feature-cta { text-decoration: none; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 8px; padding: 40px; background: radial-gradient(circle 480px at 50% -20%, rgba(79,108,245,.45), transparent 60%), linear-gradient(160deg,#0b1020,#0f1730); color: #fff; border-color: transparent; box-shadow: 0 30px 70px -30px rgba(11,16,32,.7); }
.features-section .feature-cta::before { display: none; }
.features-section .feature-cta:hover { transform: translateY(-5px); box-shadow: 0 26px 56px -26px rgba(35,56,232,.6); }
.features-section .feature-cta .feature-cta-h { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: clamp(24px,3vw,34px); line-height: 1.1; letter-spacing: -.03em; }
.features-section .feature-cta .feature-cta-h em { font-style: italic; font-weight: 500; background: linear-gradient(90deg,#A5B4FC,#6366F1); -webkit-background-clip: text; background-clip: text; color: transparent; }
.features-section .feature-cta .feature-cta-sub { font-size: 13px; color: rgba(255,255,255,.82); }
.features-section .feature-cta .feature-cta-btn { display: inline-flex; align-items: center; gap: 7px; margin-top: 6px; font-weight: 700; font-size: 14px; }
.features-section .feature-cta .feature-cta-btn i.ci { font-size: 16px; transition: transform .2s ease; }
.features-section .feature-cta:hover .feature-cta-btn i.ci { transform: translateX(4px); }

/* base carte feature (partagé — évite blocs cassés sans CSS inline) */
.features-section .features-grid { display: grid; gap: 16px; }
.features-section .feature-card { background: #fff; border: 1px solid var(--border); padding: 28px; }
.features-section .feature-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.features-section .feature-title { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 19px; line-height: 1.3; letter-spacing: -0.02em; margin: 0 0 10px; color: var(--ink); }
.features-section .feature-text { font-size: 15px; line-height: 1.55; color: var(--text-secondary); }

/* ============ TITRES — tailles uniformes tout le site ============ */
.hero h1, .hero-reg h1, .contact-hero h1 { font-size: clamp(30px, 3.8vw, 48px) !important; }
.section-title { font-size: clamp(26px, 3.2vw, 40px) !important; }
/* bande réassurance PDP (réutilisée sur les 3 sous-pages) */
.pdp-band { max-width: 940px; margin: 0 auto; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; text-align: center; background: var(--accent-soft); border: 1px solid rgba(79,108,245,.18); border-radius: 999px; padding: 14px 26px; font-size: 14.5px; line-height: 1.5; color: var(--ink); }
.pdp-band i.ci { color: var(--accent); font-size: 18px; }
.pdp-band a { color: var(--accent); font-weight: 700; white-space: nowrap; }

/* titres de contenu pages métier — même échelle que l'accueil (.section-title) */
.hole-section h2, .diff-text h2, .problem-text h2, .commercial-text h2,
.import-text h2, .relationship-section h2, .dgfip-text h2,
.treso-card-roi h2, .roi-card h2 { font-size: clamp(26px, 3.2vw, 40px) !important; }

/* ============ ROI / Trésorerie (.roi2) — bloc clair 2 colonnes ============ */
.roi2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; max-width: 1080px; margin: 0 auto; }
@media (max-width: 1024px) { .roi2 { grid-template-columns: 1fr; gap: 40px; } }
.roi2-title { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15; letter-spacing: -.03em; margin: 14px 0 18px; color: var(--ink); }
.roi2-title em { font-style: italic; font-weight: 500; color: var(--accent); }
.roi2-text p { font-size: 16px; line-height: 1.6; color: #374151; margin-bottom: 14px; }
.roi2-stats { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.roi2-stat { flex: 1; min-width: 150px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: 0 10px 30px -24px rgba(15,20,25,.2); }
.roi2-stat-val { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 26px; color: var(--accent); letter-spacing: -.02em; margin-bottom: 4px; }
.roi2-stat-lab { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }
.roi2-visual { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 20px; box-shadow: 0 24px 56px -32px rgba(15,20,25,.28); }
.roi2-vh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.roi2-vh b { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 15px; color: var(--ink); }
.roi2-vbadge { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); background: var(--accent-soft); border-radius: 999px; padding: 4px 9px; }
.roi2-vrow { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-top: 1px solid #f0f1f5; font-size: 13px; }
.roi2-vrow .nm { flex: 1; font-weight: 600; color: var(--ink); }
.roi2-vrow .amt { font-family: 'JetBrains Mono', monospace; font-weight: 700; color: var(--ink); }
.roi2-vchip { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.roi2-vchip.ok { color: #15a34a; background: #e7f7ee; }
.roi2-vchip.wait { color: var(--accent); background: var(--accent-soft); }
.roi2-vchip.late { color: #c2870b; background: #fdf3e2; }
.roi2-vtot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding: 13px 14px; border-radius: 12px; background: var(--accent-soft); font-size: 13px; color: var(--ink); }
.roi2-vtot b { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 20px; color: var(--accent); }

/* ============ TIMELINE graphique (.tl) — verticale ============ */
.tl { max-width: 760px; margin: 0 auto; position: relative; }
.tl::before { content: ''; position: absolute; left: 19px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(180deg,#4F6CF5,#6366F1,#818cf8); border-radius: 2px; }
.tl-step { position: relative; padding-left: 58px; margin-bottom: 16px; }
.tl-step:last-child { margin-bottom: 0; }
.tl-node { position: absolute; left: 0; top: 4px; width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg,#4F6CF5,#6366F1); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 22px -8px rgba(79,108,245,.55); z-index: 1; }
.tl-node i.ci { font-size: 19px; }
.tl-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; box-shadow: 0 14px 36px -26px rgba(15,20,25,.2); transition: transform .2s ease, box-shadow .2s ease; }
.tl-card:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -26px rgba(35,56,232,.26); }
.tl-day { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); font-weight: 700; margin-bottom: 6px; }
.tl-card h3 { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 18px; line-height: 1.3; margin-bottom: 8px; color: var(--ink); letter-spacing: -.01em; }
.tl-card p { font-size: 14.5px; line-height: 1.6; color: #374151; margin: 0; }
.tl-chip { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12px; font-weight: 700; color: #15a34a; background: #e7f7ee; padding: 5px 11px; border-radius: 999px; }
.tl-chip i.ci { font-size: 13px; }


/* ===== Composants partagés (dédupliqués des pages) ===== */
.hero h1 .line { display: block; opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s forwards; }
.hero h1 .line:nth-child(1) { animation-delay: 0.15s; }
.hero h1 .line:nth-child(2) { animation-delay: 0.3s; }
.hero-sub strong { color: var(--text-primary); font-weight: 600; }
.hero-microcopy span { display: inline-flex; align-items: center; gap: 6px; }
.hero-microcopy span::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent-fournisseur); }
.letter-meta::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-fournisseur); }
.letter-content { font-size: 16px; line-height: 1.7; color: #374151; }
.letter-content .greeting { color: var(--text-primary); font-weight: 500; }
.hero-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-soft); color: var(--accent); padding: 7px 14px; border-radius: 100px; font-size: 13px; font-weight: 500; margin-bottom: 24px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.6s 0.1s forwards; }
.hero-pill::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--accent); }
.hero-hook { font-family: 'Poppins', sans-serif; font-weight: 400; font-size: 22px; line-height: 1.35; color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 18px; max-width: 580px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s 0.55s forwards; }
.hero-hook strong { color: var(--accent); font-style: italic; font-weight: 500; }
.hero-sub { font-size: 18px; line-height: 1.55; color: #374151; margin-bottom: 32px; max-width: 540px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s 0.5s forwards; }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s 0.7s forwards; }
.hero-microcopy { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--text-secondary); flex-wrap: wrap; opacity: 0; animation: fadeIn 0.7s 0.9s forwards; }
.dgfip-mail-from .name { color: var(--text-primary); font-weight: 600; }
.letter-block { max-width: 720px; margin: 0 auto; background: white; border-radius: 20px; padding: 48px; border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.letter-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-secondary); margin-bottom: 28px; display: flex; align-items: center; gap: 8px; }
.letter-content p { margin-bottom: 16px; }
.letter-signature { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); font-family: 'Poppins', sans-serif; font-size: 18px; color: var(--text-primary); }
.form-select, .form-input { width: 100%; padding: 14px 16px; border: 1px solid var(--border-strong); border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 15px; background: white; color: var(--text-primary); }
.form-select:focus, .form-input:focus { outline: none; border-color: var(--accent); }
