/* =============================================================
   VigiComply — Feuille de style principale
   Fichier : /assets/css/vigicomply.css
   Intégration : <link rel="stylesheet" href="/assets/css/vigicomply.css">
   Dernière mise à jour : 2026-06-01
   ============================================================= */


/* ── 1. VARIABLES ─────────────────────────────────────────── */
:root {
  /* Couleurs */
  --navy:        #0b1829;
  --navy-mid:    #142236;
  --navy-soft:   #1e3a5c;
  --blue:        #2d7dd2;
  --blue-light:  #5ba4e8;
  --blue-pale:   #e8f2fc;
  --teal:        #1a9e75;
  --teal-pale:   #e0f5ec;
  --amber:       #c47a1a;
  --amber-pale:  #fdf0dc;
  --green:       #0d9460;
  --green-pale:  #eaf3de;
  --purple:      #534ab7;
  --purple-pale: #eeedfe;

  /* Texte */
  --text:        #0b1829;
  --text-mid:    #3d5470;
  --text-muted:  #7a93b0;

  /* Surfaces */
  --surface:     #ffffff;
  --surface-2:   #f4f8fd;
  --surface-3:   #eef4fb;

  /* Bordures */
  --border:      rgba(11,24,41,.09);
  --border-mid:  rgba(11,24,41,.15);

  /* Rayons */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   22px;

  /* Ombres */
  --shadow-sm:   0 2px 8px rgba(11,24,41,.06);
  --shadow-md:   0 6px 24px rgba(11,24,41,.09);
  --shadow-lg:   0 18px 54px rgba(11,24,41,.12);

  /* Typographie */
  --font:        'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --mono:        ui-monospace, monospace; /* DM Mono supprimé — économie réseau */

  /* Layout */
  --max:         1160px;
  --pad:         clamp(20px, 4vw, 40px);
}


/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
               Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(950px 520px at -5% -10%, rgba(99,91,255,.18), transparent 60%),
    radial-gradient(880px 540px at 100% 0%,  rgba(0,212,255,.18), transparent 58%),
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 42%, #f6f9fc 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}


/* ── 3. LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}


/* ── 4. HEADER & NAVIGATION ───────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(244,248,253,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo lockup */
.vc-logo-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.vc-logo-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.vc-logo-name {
  line-height: 1;
}

/* Héritage (brand-icon conservé pour compatibilité footer) */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon svg { width: 18px; height: 18px; }

/* Texte logo footer */
.product-logo-text {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.product-logo-text .dot { color: var(--blue); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: var(--text-mid);
}

.nav-links a:hover         { color: var(--text); }
.nav-links a.active        { color: var(--blue); font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 14px;
  background: none;
  border: none;
  padding: 8px 4px;
  font-family: inherit;
  transition: color .15s;
}

.nav-dropdown-toggle:hover                    { color: var(--text); }
.nav-dropdown-toggle svg                      { transition: transform .2s; }
.nav-dropdown-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-dropdown-toggle[aria-expanded="true"]    { color: var(--text); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 12px 40px rgba(11,24,41,.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
  z-index: 200;
}

.nav-dropdown-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text-mid);
  font-size: 13px;
  text-decoration: none;
  transition: background .12s, color .12s;
}

.nav-dropdown-menu a:hover { background: var(--surface-3); color: var(--text); }

.nav-drop-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.nav-drop-label strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1px;
}

.nav-drop-label span   { font-size: 11px; color: var(--text-muted); }
.nav-drop-divider      { height: 1px; background: var(--border); margin: 4px 8px; }

.nav-blog-badge {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 99px;
  margin-left: 4px;
  vertical-align: middle;
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

.lang-switch             { font-size: 13px; color: var(--text-muted); }
.lang-switch a           { color: var(--text-mid); }
.lang-switch a:hover     { color: var(--text); }


/* ── 5. BOUTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
  border: 1px solid transparent;
}

.btn-lg { height: 46px; padding: 0 22px; font-size: 15px; }

.btn-ghost             { color: var(--text-mid); background: transparent; }
.btn-ghost:hover       { color: var(--text); }

.btn-outline           { color: var(--blue); background: var(--blue-pale); border-color: rgba(45,125,210,.2); }
.btn-outline:hover     { background: #dbedf9; }

.btn-primary           { background: var(--navy); color: #fff; box-shadow: 0 4px 14px rgba(11,24,41,.2); }
.btn-primary:hover     { background: var(--navy-soft); box-shadow: 0 6px 20px rgba(11,24,41,.25); transform: translateY(-1px); }

.btn-white             { background: #fff; color: var(--navy); }
.btn-white:hover       { background: var(--surface-3); }

.btn-ghost-light       { color: rgba(255,255,255,.65); background: transparent; border: 1px solid rgba(255,255,255,.18); }
.btn-ghost-light:hover { color: #fff; border-color: rgba(255,255,255,.35); }


/* ── 6. HERO ──────────────────────────────────────────────── */
.hero-wrap { padding: 48px 0 0; }

.hero-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 52px 52px 48px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(45,125,210,.18);
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.04em;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero h1 .accent { color: var(--blue); }

.hero-lead {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-cta    { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-proof  { display: flex; gap: 20px; flex-wrap: wrap; }

.proof-item  { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-mid); }
.proof-dot   { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }


/* ── 7. DASHBOARD PREVIEW ─────────────────────────────────── */
.dash-preview {
  background: var(--surface-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 16px;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.dash-dots       { display: flex; gap: 6px; }
.dash-dots span  { width: 10px; height: 10px; border-radius: 50%; background: var(--border-mid); }

.dash-status {
  font-size: 12px;
  font-weight: 600;
  background: var(--teal-pale);
  color: var(--teal);
  padding: 4px 10px;
  border-radius: 99px;
}

.dash-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 10px;
}

.dash-entity-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.dash-entity     { font-size: 16px; font-weight: 600; letter-spacing: -.02em; color: var(--navy); }
.dash-date       { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.dash-chip-warn  { font-size: 11px; font-weight: 600; background: var(--amber-pale); color: var(--amber); padding: 4px 10px; border-radius: 99px; }
.dash-chip-ok    { font-size: 11px; font-weight: 600; background: var(--teal-pale);  color: var(--teal);  padding: 3px 9px;  border-radius: 99px; }

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.dash-metric       { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px; }
.dash-metric-label { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.dash-metric-val   { font-size: 24px; font-weight: 600; letter-spacing: -.04em; color: var(--navy); }

.dash-rows       { display: flex; flex-direction: column; gap: 0; }
.dash-row        { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-top: 1px solid var(--border); font-size: 13px; }
.dash-row-label  { color: var(--text-muted); }
.dash-row-val    { font-weight: 500; color: var(--navy); }
.dash-confidence { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--blue); }


/* ── 8. PROOF BAND ────────────────────────────────────────── */
.proof-band {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.proof-stat           { padding: 24px 28px; border-right: 1px solid var(--border); }
.proof-stat:last-child { border-right: none; }
.proof-n              { font-size: 26px; font-weight: 600; letter-spacing: -.04em; color: var(--navy); margin-bottom: 4px; }
.proof-l              { font-size: 13px; color: var(--text-mid); }

.pme-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.04em;
  color: var(--navy);
  padding: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 4px;
  text-decoration-color: var(--blue-light);
}

.pme-trigger:hover { color: var(--blue); }


/* ── 9. SEGMENTS ──────────────────────────────────────────── */
.seg-row   { padding: 36px 0 0; }
.seg-label { text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.seg-pills { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.seg-pill  { background: var(--surface); border: 1px solid var(--border); border-radius: 99px; padding: 7px 18px; font-size: 13px; font-weight: 500; color: var(--text-mid); box-shadow: var(--shadow-sm); }


/* ── 10. SECTIONS ─────────────────────────────────────────── */
.section       { padding: 80px 0 0; }
.section-kicker { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }

.section h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -.04em;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.1;
}

.section-sub { font-size: 16px; color: var(--text-mid); max-width: 620px; margin-bottom: 32px; line-height: 1.7; }


/* ── 11. CARDS ────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr;      gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.card h3 { font-size: 18px; font-weight: 600; letter-spacing: -.025em; color: var(--navy); margin-bottom: 14px; }

.card-list    { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.card-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); line-height: 1.55; }
.card-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light); margin-top: 8px; flex-shrink: 0; }

.card-hl                      { background: var(--navy); border-color: var(--navy); color: #fff; }
.card-hl h3                   { color: #fff; }
.card-hl .card-list li        { color: rgba(255,255,255,.72); }
.card-hl .card-list li::before { background: var(--blue-light); }


/* ── 12. WORKFLOW ─────────────────────────────────────────── */
.workflow-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; }

.step {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  font-family: var(--mono);
  margin-bottom: 14px;
}

.step h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: -.02em; }
.step p  { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

.workflow-cta {
  margin-top: 28px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.workflow-cta-text strong { display: block; font-size: 18px; font-weight: 600; color: #fff; letter-spacing: -.02em; margin-bottom: 4px; }
.workflow-cta-text span   { font-size: 14px; color: rgba(255,255,255,.55); }
.workflow-cta-btns        { display: flex; gap: 10px; }


/* ── 13. PRICING ──────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--blue);
  background: #f6fbff;
}

.price-badge {
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(45,125,210,.2);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.price-badge-ent { color: var(--purple); background: var(--purple-pale); border-color: rgba(83,74,183,.2) !important; }

.price-name    { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 4px; letter-spacing: -.02em; }
.price-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.price-amount  { font-size: 38px; font-weight: 600; letter-spacing: -.05em; color: var(--navy); line-height: 1; }
.price-amount sup { font-size: 20px; vertical-align: super; font-weight: 500; }
.price-period  { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; margin-top: 4px; }
.price-quota   { font-size: 12px; color: var(--text-muted); margin: -16px 0 16px; }

.price-popular {
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 99px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
}

.price-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 8px;
  flex-shrink: 0;
}

.price-locked          { opacity: .45; }
.price-locked::before  { background: var(--border) !important; }

.price-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.price-cta     { display: flex; gap: 10px; }

/* Tag source (OpenSanctions, Officielles…) */
.price-source-tag {
  display: inline-block;
  margin-left: 5px;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  background: rgba(45,125,210,.08);
  color: var(--blue);
  border: 1px solid rgba(45,125,210,.18);
  white-space: nowrap;
  vertical-align: middle;
}

/* Carte Entreprise — accès anticipé */
.price-card-early    { opacity: .93; border-style: dashed; }

.price-popular-early {
  background: linear-gradient(135deg, #6b7c93, #425466);
  color: #fff;
}

/* Ligne bientôt dispo */
.price-soon {
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

.price-soon strong { color: var(--text-mid); }

.price-soon-badge {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  background: rgba(83,74,183,.08);
  color: var(--purple);
  border: 1px solid rgba(83,74,183,.18);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Note d'information dans la carte */
.price-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 10px 12px;
  margin-bottom: 14px;
  border-radius: var(--radius-md);
  background: rgba(83,74,183,.05);
  border: 1px solid rgba(83,74,183,.12);
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.5;
}

.price-note svg { flex-shrink: 0; margin-top: 1px; color: var(--purple); }

/* Note de bas de section pricing */
.pricing-footer-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 720px;
  margin: 28px auto 0;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  background: rgba(11,24,41,.03);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-footer-note svg     { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.pricing-footer-note a       { color: var(--blue); text-decoration: none; font-weight: 500; white-space: nowrap; }
.pricing-footer-note a:hover { text-decoration: underline; }


/* ── 14. CONFIDENTIALITÉ BY DESIGN ────────────────────────── */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin: 32px 0;
}

.privacy-card         { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.privacy-card-icon    { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.privacy-card-title   { font-size: 15px; font-weight: 600; color: var(--navy); letter-spacing: -.01em; }
.privacy-card-text    { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.privacy-zero {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.privacy-zero-text strong { display: block; font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -.02em; margin-bottom: 6px; }
.privacy-zero-text span   { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; }
.privacy-zero-badge       { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.privacy-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

.privacy-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.privacy-compare-col               { border-radius: var(--radius-md); padding: 20px; }
.privacy-compare-col.bad           { background: #fff5f5; border: 1px solid #fecaca; }
.privacy-compare-col.good          { background: var(--teal-pale); border: 1px solid rgba(26,158,117,.2); }
.privacy-compare-title             { font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.privacy-compare-col.bad  .privacy-compare-title { color: #b91c1c; }
.privacy-compare-col.good .privacy-compare-title { color: var(--teal); }
.privacy-compare-list              { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.privacy-compare-list li           { font-size: 13px; color: var(--text-muted); line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }
.privacy-compare-list li::before   { flex-shrink: 0; margin-top: 2px; font-weight: 700; }
.privacy-compare-col.bad  .privacy-compare-list li::before { content: "✗"; color: #b91c1c; }
.privacy-compare-col.good .privacy-compare-list li::before { content: "✓"; color: var(--teal); }


/* ── 15. FAQ ──────────────────────────────────────────────── */
details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s;
}

details[open] { box-shadow: var(--shadow-md); }

summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -.015em;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform .2s;
}

details[open] summary::after { transform: rotate(45deg); }

details p { padding: 0 22px 20px; font-size: 14px; color: var(--text-mid); line-height: 1.7; }


/* ── 16. LIVRE BLANC ──────────────────────────────────────── */
.lb-shell {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  box-shadow: var(--shadow-md);
}

.lb-desc  { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; max-width: 520px; }
.lb-list  { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.lb-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); }
.lb-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); margin-top: 7px; flex-shrink: 0; }
.lb-btn   { display: inline-flex; align-items: center; gap: 10px; }
.lb-note  { margin-top: 12px; font-size: 12px; color: var(--text-muted); }
.lb-right { display: flex; justify-content: center; }

.lb-cover {
  width: 260px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.lb-cover-top     { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.lb-tag           { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-light); background: rgba(91,164,232,.15); border: 1px solid rgba(91,164,232,.25); padding: 4px 10px; border-radius: 99px; }
.lb-edition       { font-size: 11px; color: rgba(255,255,255,.4); }
.lb-cover-title   { font-size: 15px; font-weight: 600; color: #fff; letter-spacing: -.02em; line-height: 1.3; margin-bottom: 8px; }
.lb-cover-sub     { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.55; margin-bottom: 24px; }
.lb-cover-meta    { display: flex; flex-direction: column; gap: 8px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 20px; }
.lb-meta-row      { display: flex; flex-direction: column; gap: 2px; }
.lb-meta-label    { font-size: 10px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em; }
.lb-meta-val      { font-size: 12px; color: rgba(255,255,255,.75); font-weight: 500; }
.lb-cover-brand   { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55); letter-spacing: -.01em; }


/* ── 17. CTA FINAL ────────────────────────────────────────── */
.cta-final {
  margin: 72px 0 0;
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
}

.cta-final h2       { font-size: clamp(28px, 4vw, 46px); font-weight: 600; letter-spacing: -.04em; color: #fff; margin-bottom: 14px; line-height: 1.08; }
.cta-final p        { font-size: 16px; color: rgba(255,255,255,.55); margin-bottom: 32px; }
.cta-final-btns     { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* ── 18. FOOTER ───────────────────────────────────────────── */
footer {
  padding: 48px 0 36px;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col-title  { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.footer-links      { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a    { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--text); }

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-copy      { font-size: 13px; color: var(--text-muted); }
.footer-legal     { display: flex; gap: 16px; }
.footer-legal a   { font-size: 13px; color: var(--text-muted); }
.footer-legal a:hover { color: var(--text); }


/* ── 19. MODALE ───────────────────────────────────────────── */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11,24,41,.48);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.modal-backdrop.is-open { display: flex; }

.modal {
  width: min(480px, 92vw);
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 36px;
}

.modal-close { float: right; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-muted); line-height: 1; margin: -8px -8px 0 0; }
.modal-close:hover { color: var(--text); }
.modal h3     { font-size: 20px; font-weight: 600; letter-spacing: -.03em; color: var(--navy); margin-bottom: 6px; }
.modal-sub    { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.modal-points { display: flex; flex-direction: column; gap: 16px; }

.modal-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.modal-point-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--blue-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal-point strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.modal-point span   { font-size: 13px; color: var(--text-mid); line-height: 1.55; }


/* ── 20. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-grid              { grid-template-columns: 1fr; }
  .dash-preview           { display: none; }
  .proof-band             { grid-template-columns: 1fr 1fr; }
  .proof-stat:nth-child(2){ border-right: none; }
  .footer-grid            { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .lb-shell  { grid-template-columns: 1fr; padding: 32px 24px; }
  .lb-right  { display: none; }
  .privacy-grid   { grid-template-columns: 1fr; }
  .privacy-compare{ grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links              { display: none; }
  .hero-shell             { padding: 32px 24px 0; }
  .proof-band             { grid-template-columns: 1fr; }
  .proof-stat             { border-right: none; border-bottom: 1px solid var(--border); }
  .grid-2, .grid-3, .steps { grid-template-columns: 1fr; }
  .pricing-grid           { grid-template-columns: 1fr; }
  .workflow-shell         { padding: 28px 20px; }
  .cta-final              { padding: 44px 24px; }
  .footer-grid            { grid-template-columns: 1fr; }
  .footer-bottom          { flex-direction: column; gap: 12px; text-align: center; }
}
