/* =========================================================
   CoproLink · Site vitrine
   Thème sombre premium · dégradé cyan→violet · glassmorphism
   ========================================================= */

:root {
  --cyan: #38BDF8;
  --violet: #8B5CF6;
  --grad: linear-gradient(135deg, #38BDF8 0%, #8B5CF6 100%);
  --grad-soft: linear-gradient(135deg, rgba(56,189,248,.18), rgba(139,92,246,.18));

  --bg: #070B18;
  --bg-2: #0B1124;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #EAF0FB;
  --muted: #93A1BC;
  --muted-2: #6C7A96;

  --radius: 20px;
  --radius-sm: 13px;
  --maxw: 1180px;
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 20px 60px -18px rgba(56, 189, 248, 0.45);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --display: 'Sora', var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Texture de bruit subtile pour la profondeur */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Motif zellige : étoiles à 8 branches (khatam), sous le contenu */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cpolygon points='129.45,75 113.5,90.95 113.5,113.5 90.95,113.5 75,129.45 59.05,113.5 36.5,113.5 36.5,90.95 20.55,75 36.5,59.05 36.5,36.5 59.05,36.5 75,20.55 90.95,36.5 113.5,36.5 113.5,59.05' fill='none' stroke='rgba(148,166,196,0.10)'/%3E%3Ccircle cx='75' cy='75' r='2.2' fill='rgba(148,166,196,0.16)'/%3E%3C/svg%3E");
  background-size: 150px 150px;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
}
.container--narrow { max-width: 820px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

/* ==================== BOUTONS ==================== */
.btn {
  --pad-y: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: var(--pad-y) 22px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.btn--lg { --pad-y: 16px; padding-inline: 30px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--grad);
  color: #06121f;
  box-shadow: 0 12px 30px -10px rgba(56, 189, 248, .55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(139, 92, 246, .7); }

.btn--glass {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(12px);
}
.btn--glass:hover { transform: translateY(-2px); border-color: var(--cyan); background: var(--surface); }

.btn--ghost { background: transparent; color: var(--text); }
.btn--ghost:hover { color: var(--cyan); }

.btn__arrow { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  backdrop-filter: blur(8px);
}
.pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, .18);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.45} }

/* ==================== NAV ==================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  transition: padding .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 32px;
  background: rgba(7, 11, 24, .72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border);
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { height: 34px; width: auto; }
.brand__text { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: 1; gap: 3px; }
.brand__tagline { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font); font-weight: 500; font-size: 10.5px; letter-spacing: .04em; color: var(--muted); text-transform: none; }
.brand__flag { width: 14px; height: 10px; flex: none; }
.wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.02em;
  color: #fff;
}
.wordmark__star { width: 17px; height: 17px; margin: 0 1px; transform: translateY(1px); }

.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 15px; font-weight: 500; color: var(--muted);
  position: relative; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; border-radius: 2px; background: var(--grad);
  transition: width .25s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; cursor: pointer;
}
.nav__burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobilemenu {
  position: fixed;
  inset: 0 0 auto 0;
  top: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 92px 24px 28px;
  background: rgba(8, 12, 27, .96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform .4s var(--ease);
}
.mobilemenu.open { transform: translateY(0); }
.mobilemenu a:not(.btn) {
  padding: 14px 8px; font-size: 18px; font-weight: 600;
  font-family: var(--display); border-bottom: 1px solid var(--border);
}
.mobilemenu .btn { margin-top: 8px; }

/* ==================== HÉRO ==================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

/* Aurora animée */
.hero__aurora, .cta__aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  will-change: transform;
}
.blob--1 { width: 620px; height: 620px; top: -180px; left: -120px; background: radial-gradient(circle, #1e9ee0, transparent 65%); animation: drift1 18s ease-in-out infinite; }
.blob--2 { width: 560px; height: 560px; top: 40px; right: -140px; background: radial-gradient(circle, #7c4ddb, transparent 65%); animation: drift2 22s ease-in-out infinite; }
.blob--3 { width: 420px; height: 420px; bottom: -160px; left: 36%; background: radial-gradient(circle, #0ea5b7, transparent 65%); animation: drift3 20s ease-in-out infinite; opacity: .4; }
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(60px,40px) scale(1.1)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-50px,30px) scale(1.08)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(30px,-40px) scale(1.12)} }

/* Quadrillage supprimé — le fond ne garde que l'étoile marocaine */
.hero__grid-overlay { display: none; }

.hero__spotlight {
  position: absolute; z-index: 0; width: 600px; height: 600px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(56,189,248,.12), transparent 60%);
  transform: translate(-50%, -50%);
  left: 50%; top: 40%;
  transition: left .25s ease, top .25s ease;
}

.hero__copy { position: relative; z-index: 2; }
.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 22px 0 22px;
}
.hero__sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; }
.hero__trust li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14.5px; font-weight: 500; }
.hero__trust svg { width: 18px; height: 18px; color: var(--cyan); }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--border-strong); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px; z-index: 2;
}
.hero__scroll span { width: 4px; height: 8px; border-radius: 4px; background: var(--cyan); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translateY(-4px)} 40%{opacity:1} 80%,100%{opacity:0;transform:translateY(12px)} }

/* ===== Maquette produit ===== */
.hero__mockup { position: relative; z-index: 2; perspective: 1400px; }
.tilt { position: relative; transform-style: preserve-3d; transition: transform .2s var(--ease); will-change: transform; }

.dash {
  position: relative;
  background: linear-gradient(165deg, rgba(20,28,52,.92), rgba(10,15,32,.92));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Illustration cockpit du héro (remplace l'ancienne maquette HTML) */
.hero__cockpit {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 22px 64px -18px rgba(56, 189, 248, 0.4);
  animation: floaty 7s ease-in-out infinite;
}

/* Pilule "action" en BAS-gauche (visage de la photo reste visible en haut) */
.hero__action-pill {
  position: absolute;
  bottom: 44%;
  left: -12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(15, 21, 42, .92);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 10px;
  white-space: nowrap;
  box-shadow: 0 14px 32px -10px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
  animation: floaty 7s ease-in-out infinite;
}
.hero__action-pill svg { width: 10px; height: 10px; color: var(--cyan); flex: none; }

/* Carte overlay "copropriétaires" / budget calée en bas, débordant sous la photo */
.hero__overlay-card {
  position: absolute;
  bottom: -32px;
  right: 22%;
  z-index: 3;
  width: 55%;
  max-width: 205px;
  background: rgba(15, 21, 42, .94);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 22px 50px -15px rgba(0,0,0,.65);
  backdrop-filter: blur(14px);
  font-size: 13px;
  animation: floaty 7s ease-in-out infinite 1.5s;
}
.hero__overlay-head,
.hero__overlay-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr .7fr;
  gap: 10px;
  align-items: center;
}
.hero__overlay-head {
  font-size: 10.5px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.hero__overlay-row {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hero__overlay-row:last-child { border-bottom: none; }
.hero__overlay-person { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.hero__overlay-person img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  box-shadow: 0 0 0 1.5px rgba(56,189,248,.45);
}
.hero__overlay-badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  text-align: center;
  white-space: nowrap;
  justify-self: end;
}
.hero__overlay-badge--ok { color: #34D399; background: rgba(52,211,153,.18); }
.hero__overlay-badge--warn { color: #fbbf24; background: rgba(251,191,36,.18); }
.hero__overlay-badge--info { color: var(--cyan); background: rgba(56,189,248,.18); }

/* Dashboard "Budget" dans la carte overlay du héro */
.hero__overlay-card--budget { padding: 7px 10px; font-size: 9.5px; }
.hero__overlay-card--budget .hero__budget-big { font-size: 14px; margin-bottom: 2px; }
.hero__overlay-card--budget .hero__budget-big i { font-size: 8.5px; }
.hero__overlay-card--budget .hero__budget-bar { margin-bottom: 5px; height: 4px; }
.hero__overlay-card--budget .hero__budget-row { font-size: 9px; }
.hero__overlay-card--budget .hero__budget-title { font-size: 9.5px; }
.hero__overlay-card--budget .hero__budget-tag { font-size: 8px; padding: 1px 5px; }
.hero__overlay-card--budget .hero__budget-rows { gap: 3px; padding-top: 5px; }
.hero__overlay-card--budget .hero__budget-head { margin-bottom: 4px; }

/* Liste actions récentes Reçus / Relance / Mise en demeure (milieu-droite) */
.hero__overlay-chart {
  position: absolute;
  bottom: 36%;
  right: -16px;
  z-index: 3;
  width: 168px;
  padding: 6px 10px;
  background: rgba(15, 21, 42, .94);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
  animation: floaty 7s ease-in-out infinite .5s;
}
.hero__overlay-chart-head { display: flex; justify-content: space-between; align-items: center; font-size: 8.5px; color: var(--muted-2); margin-bottom: 2px; font-weight: 600; }
.hero__chart-tag { color: #34D399; font-weight: 700; }
.hero__chart-svg { width: 100%; height: 24px; display: block; }
/* Liste actions récentes (remplace le sparkline) */
.hero__feed-row { display: flex; align-items: center; gap: 6px; font-size: 9px; color: var(--text); padding: 2px 0; }
.hero__feed-dot { width: 6px; height: 6px; border-radius: 50%; flex: none; background: rgba(255,255,255,.18); }
.hero__feed-row--ok .hero__feed-dot { background: #34D399; box-shadow: 0 0 0 2px rgba(52,211,153,.16); }
.hero__feed-row--warn .hero__feed-dot { background: #fbbf24; box-shadow: 0 0 0 2px rgba(251,191,36,.16); }

/* Notification message Salma (milieu-gauche, agrandi) */
.hero__overlay-msg {
  position: absolute;
  bottom: 36%;
  left: -22px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  width: 210px;
  padding: 9px 12px;
  background: rgba(15, 21, 42, .96);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: 0 22px 50px -14px rgba(0,0,0,.65);
  backdrop-filter: blur(14px);
  animation: floaty 7s ease-in-out infinite 2s;
}
.hero__overlay-msg img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: 0 0 0 1.5px rgba(56,189,248,.55); }
.hero__overlay-msg-head { display: block; font-size: 10.5px; color: var(--muted); margin-bottom: 2px; }
.hero__overlay-msg-head b { color: var(--text); font-weight: 700; }
.hero__overlay-msg-text { display: block; font-size: 12.5px; font-weight: 600; color: var(--text); line-height: 1.25; }

/* KPI Recouvrement (bas-droite, petit) */
.hero__overlay-kpi {
  position: absolute;
  bottom: 8%;
  right: -8px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 85px;
  padding: 4px 9px;
  background: rgba(15, 21, 42, .94);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
  animation: floaty 7s ease-in-out infinite 1s;
}
.hero__overlay-kpi-label { font-size: 8px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .07em; font-weight: 700; }
.hero__overlay-kpi-value { font-family: var(--display); font-weight: 800; font-size: 14px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; margin: 1px 0; }
.hero__overlay-kpi-trend { font-size: 8px; font-weight: 700; color: #34D399; }

/* Suivi incidents (bas-gauche, petit) */
.hero__overlay-incidents {
  position: absolute;
  bottom: 3%;
  left: -18px;
  z-index: 3;
  width: 168px;
  padding: 6px 10px;
  background: rgba(15, 21, 42, .94);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
  animation: floaty 7s ease-in-out infinite 1.5s;
}
.hero__overlay-incidents-head { font-family: var(--display); font-weight: 700; font-size: 9.5px; margin-bottom: 4px; color: var(--text); }

/* Scan & classement (haut-gauche, petit) */
.hero__overlay-scan {
  position: absolute;
  bottom: 68%;
  left: -18px;
  z-index: 3;
  width: 168px;
  padding: 6px 10px;
  background: rgba(15, 21, 42, .94);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
  animation: floaty 7s ease-in-out infinite 3s;
}
.hero__overlay-scan-head { font-family: var(--display); font-weight: 700; font-size: 9.5px; margin-bottom: 4px; color: var(--text); }

/* Assistant juridique chatbot (haut-droite) */
.hero__overlay-juri {
  position: absolute;
  bottom: 68%;
  right: -16px;
  z-index: 3;
  width: 168px;
  padding: 6px 9px;
  background: rgba(15, 21, 42, .94);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,.55);
  backdrop-filter: blur(14px);
  animation: floaty 7s ease-in-out infinite 2.5s;
}
.hero__overlay-juri-head { display: flex; align-items: center; gap: 5px; font-family: var(--display); font-weight: 700; font-size: 9px; color: var(--text); margin-bottom: 3px; }
.hero__overlay-juri-head svg { width: 10px; height: 10px; color: var(--cyan); flex: none; }
.hero__overlay-juri-q { font-size: 8.5px; color: var(--muted); font-style: italic; margin-bottom: 3px; line-height: 1.3; }
.hero__overlay-juri-a { font-size: 9px; color: var(--text); line-height: 1.3; }
.hero__overlay-juri-a b { color: var(--cyan); font-weight: 700; }
.hero__budget-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.hero__budget-title { font-family: var(--display); font-weight: 700; font-size: 13.5px; color: var(--text); }
.hero__budget-tag { font-size: 11px; font-weight: 700; color: #34D399; background: rgba(52,211,153,.18); padding: 3px 9px; border-radius: 999px; }
.hero__budget-big { font-family: var(--display); font-weight: 800; font-size: 28px; letter-spacing: -.02em; line-height: 1; margin-bottom: 6px; color: var(--text); }
.hero__budget-big i { font-style: normal; font-size: 14px; color: var(--muted); font-weight: 600; }
.hero__budget-bar { height: 7px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; margin-bottom: 12px; }
.hero__budget-bar i { display: block; height: 100%; background: var(--grad); border-radius: 999px; }
.hero__budget-rows { display: grid; gap: 6px; padding-top: 10px; border-top: 1px solid var(--border); }
.hero__budget-row { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--muted); }
.hero__budget-row b { font-family: var(--display); font-weight: 700; }
.hero__budget-row .ok { color: #34D399; }
.hero__budget-row .warn { color: #fbbf24; }
.hero__budget-row .info { color: var(--cyan); }

/* ============================================================
   Écrans flottants du héro : verre clair translucide + texte noir + format réduit
   ============================================================ */
.hero__overlay-card,
.hero__overlay-chart,
.hero__overlay-msg,
.hero__overlay-incidents,
.hero__overlay-scan,
.hero__overlay-juri {
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: 0 12px 30px -16px rgba(0, 0, 0, .45);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  color: #0c1326;
}

/* Texte principal en noir */
.hero__overlay-scan-head,
.hero__overlay-incidents-head,
.hero__overlay-juri-head,
.hero__overlay-juri-a,
.hero__overlay-msg-text,
.hero__overlay-msg-head b,
.hero__budget-title,
.hero__budget-big,
.hero__feed-row { color: #0c1326; }

/* Texte secondaire en gris foncé */
.hero__overlay-msg-head,
.hero__overlay-chart-head,
.hero__overlay-juri-q,
.hero__budget-big i,
.hero__budget-row { color: #4a5468; }

/* Accents recolorés pour rester lisibles sur fond clair */
.hero__overlay-juri-head svg,
.hero__overlay-juri-a b { color: #0e7490; }
.hero__budget-row .ok { color: #0f9d6b; }
.hero__budget-tag { color: #0f9d6b; background: rgba(16, 185, 129, .16); }
.hero__budget-row .warn { color: #b45309; }
.hero__budget-row .info { color: #1d4ed8; }
.hero__budget-bar { background: rgba(0, 0, 0, .08); }
.hero__budget-rows { border-top-color: rgba(0, 0, 0, .08); }
.hero__feed-dot { background: rgba(0, 0, 0, .2); }

/* Carte « Scan & classement » déplacée dans le coin bas-droite (remplace le KPI Recouvrement supprimé) */
.hero__overlay-scan { bottom: 7%; right: -8px; left: auto; top: auto; }

/* Format réduit (rétréci encore) */
.hero__overlay-chart,
.hero__overlay-incidents,
.hero__overlay-scan,
.hero__overlay-juri { width: 126px; padding: 4px 6px; }
.hero__overlay-msg { width: 156px; padding: 6px 8px; gap: 6px; }
.hero__overlay-msg img { width: 24px; height: 24px; }
.hero__overlay-msg-text { font-size: 10px; }
.hero__overlay-msg-head { font-size: 9px; }
.hero__overlay-card { width: 44%; max-width: 152px; padding: 6px 8px; right: 26%; }
.hero__overlay-card--budget .hero__budget-big { font-size: 13px; }
.hero__feed-row { font-size: 8px; padding: 1px 0; }
.hero__overlay-scan-head,
.hero__overlay-incidents-head { font-size: 8.5px; }
.hero__overlay-juri-head { font-size: 8px; }
.hero__overlay-juri-q,
.hero__overlay-juri-a { font-size: 8px; }

.dash__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash__brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; font-size: 15px; }
.dash__mark { height: 24px; width: auto; }
.dash__live { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); }
.dash__live-dot { width: 8px; height: 8px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 4px rgba(52,211,153,.16); animation: pulse 2s infinite; }

.dash__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.kpi { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 12px; }
.kpi__label { display: block; font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 7px; }
.kpi__value { display: block; font-family: var(--display); font-weight: 700; font-size: 18px; line-height: 1.1; }
.kpi__value i { font-style: normal; font-size: 11px; color: var(--muted); font-weight: 500; }
.kpi__trend { font-size: 11.5px; font-weight: 600; }
.kpi__trend--up { color: #34D399; }
.kpi__trend--down { color: #F472B6; }

.dash__chart { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 14px; }
.dash__chart-head { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.dash__chart-tag { color: #34D399; font-weight: 700; }
.dash__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.dash__action { display: inline-flex; align-items: center; gap: 6px; padding: 7px 11px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); font-size: 11.5px; font-weight: 500; color: var(--text); white-space: nowrap; }
.dash__action svg { width: 14px; height: 14px; color: var(--cyan); flex: none; }
.spark { width: 100%; height: 90px; }
.spark__line { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: draw 2.4s var(--ease) forwards .3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.dash__ag { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; }
.dash__ag-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.dash__ag-title { font-size: 13px; font-weight: 600; }
.dash__ag-quorum { font-size: 11px; color: var(--cyan); border: 1px solid rgba(56,189,248,.35); padding: 3px 9px; border-radius: 999px; }
.dash__ag-by { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 12px; color: var(--muted); }
.dash__ag-by b { color: var(--text); font-weight: 600; }
.dash__ag-avatar { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1.5px rgba(56,189,248,.45); }

.vote { display: grid; gap: 10px; }
.vote__row { display: grid; grid-template-columns: 64px 1fr 40px; align-items: center; gap: 10px; font-size: 12.5px; }
.vote__row b { text-align: right; font-family: var(--display); }
.vote__bar { height: 9px; border-radius: 999px; background: rgba(255,255,255,.07); overflow: hidden; }
.vote__bar i { display: block; height: 100%; border-radius: 999px; background: var(--grad); transition: width 1.4s var(--ease); }
.vote__bar--no i { background: linear-gradient(135deg,#fb7185,#f43f5e); }
.vote__bar--neutral i { background: linear-gradient(135deg,#94a3b8,#64748b); }
.vote--big .vote__row { grid-template-columns: 92px 1fr 48px; font-size: 14px; }
.vote--big .vote__bar { height: 11px; }

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 15px;
  background: rgba(15, 21, 42, .9);
  border: 1px solid var(--border-strong);
  border-radius: 15px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.float-card b { display: block; font-size: 13px; font-family: var(--display); }
.float-card small { font-size: 11.5px; color: var(--muted); }
.float-card__icon {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  display: grid; place-items: center; font-weight: 700; font-size: 16px;
  background: rgba(52,211,153,.16); color: #34D399;
}
.float-card__icon--wa { background: rgba(37,211,102,.16); color: #25D366; }
.float-card__icon--wa svg { width: 18px; height: 18px; }
.float-card--pay { top: 8%; left: -34px; animation: floaty 6s ease-in-out infinite; }
.float-card--wa { bottom: 9%; right: -28px; animation: floaty 6s ease-in-out infinite 1.5s; }

/* ==================== BANDEAU CONFIANCE ==================== */
.trust { padding: 56px 0 30px; }
.trust__label { text-align: center; color: var(--muted-2); font-size: 14px; font-weight: 500; margin-bottom: 26px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 40px; width: max-content; animation: marquee 34s linear infinite; }
.marquee__track span { font-family: var(--display); font-weight: 700; font-size: 22px; color: rgba(234,240,251,.45); white-space: nowrap; }
.marquee__track .dot { color: var(--violet); font-size: 14px; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==================== STATS ==================== */
.stats { padding: 40px 0 70px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* Stats compactes dans le héro (2x2 dans la colonne gauche) */
.hero__inline-stats {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.hero__inline-stats .stat { padding: 18px 14px; }
.hero__inline-stats .stat__num { font-size: clamp(26px, 2.8vw, 34px); }
.hero__inline-stats .stat__label { font-size: 12.5px; margin-top: 6px; }

/* Bandeau de confiance (badges sous le héro) */
.trust-band { padding: 30px 0 56px; }
.trust-band__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; list-style: none; }
.trust-band__list li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 15px; font-weight: 500; }
.trust-band__list svg { width: 20px; height: 20px; color: var(--cyan); flex: none; }
.stat {
  text-align: center; padding: 30px 18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat__num { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(34px, 4vw, 46px); line-height: 1; }
.stat__num { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { display: block; margin-top: 10px; color: var(--muted); font-size: 14.5px; }

/* ==================== SECTIONS ==================== */
.section { padding: 100px 0; position: relative; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(139,92,246,.04), transparent); }
.section__head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section__head h2 { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.02em; line-height: 1.1; }
.section__head p { margin-top: 16px; color: var(--muted); font-size: 17px; }

/* ===== Bento ===== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(56,189,248,.1), transparent 45%);
  opacity: 0; transition: opacity .3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card--lg { display: flex; flex-direction: column; }
.card--accent { background: var(--grad-soft); border-color: rgba(139,92,246,.35); }

.card__icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--grad-soft); border: 1px solid var(--border);
  color: var(--cyan);
}
.card__icon svg { width: 25px; height: 25px; }
.card h3 { font-family: var(--display); font-weight: 700; font-size: 20px; margin-bottom: 10px; letter-spacing: -.01em; }
.card p { color: var(--muted); font-size: 15.5px; }
.card__list { margin-top: auto; padding-top: 18px; display: grid; gap: 9px; }
.card__list li { position: relative; padding-left: 24px; font-size: 14.5px; color: var(--text); }
.card__list li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }
.card__badge {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: .1em;
  background: var(--grad); color: #06121f; padding: 4px 10px; border-radius: 999px;
}

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 34px; left: 16%; right: 16%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.step { text-align: center; padding: 0 14px; position: relative; }
.step__num {
  width: 56px; height: 56px; margin: 0 auto 20px;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 22px; color: #06121f;
  background: var(--grad); border-radius: 50%;
  box-shadow: 0 12px 30px -10px rgba(56,189,248,.6);
  position: relative; z-index: 1;
}
.step h3 { font-family: var(--display); font-weight: 700; font-size: 19px; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: 15px; }

/* ===== Split showcase ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 90px; }
.split:last-child { margin-bottom: 0; }
.split--reverse .split__copy { order: 2; }
.split__copy h2 { font-family: var(--display); font-weight: 800; font-size: clamp(26px, 3vw, 38px); letter-spacing: -.02em; line-height: 1.12; margin-bottom: 16px; }
.split__copy > p { color: var(--muted); font-size: 17px; margin-bottom: 22px; }
.ticks { display: grid; gap: 13px; }
.ticks li { position: relative; padding-left: 32px; font-size: 16px; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center;
  font-size: 12px; font-weight: 800; color: #06121f; background: var(--grad);
}

.panel {
  background: linear-gradient(165deg, rgba(20,28,52,.9), rgba(10,15,32,.9));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.panel__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; font-size: 14px; }
.panel__head b { font-family: var(--display); }
.chip { font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 999px; }
.chip--up { color: #34D399; background: rgba(52,211,153,.14); }
.chip--live { color: var(--cyan); background: rgba(56,189,248,.14); }
.panel__big { font-family: var(--display); font-weight: 800; font-size: 38px; letter-spacing: -.02em; margin-bottom: 6px; }
.panel__big i { font-style: normal; font-size: 17px; color: var(--muted); }
.spark--panel { height: 110px; margin: 6px 0 16px; }
.panel__rows { display: grid; gap: 10px; }
.panel__row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-top: 1px solid var(--border); font-size: 14.5px; color: var(--muted); }
.panel__row b { color: var(--text); font-family: var(--display); }
.panel__row b.ok { color: #34D399; }

/* ===== Témoignages ===== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; }
.quote::before { content: "\201C"; position: absolute; top: 8px; right: 22px; font-family: Georgia, serif; font-size: 70px; line-height: 1; color: var(--violet); opacity: .25; }
.quote blockquote { font-size: 16.5px; line-height: 1.6; margin-bottom: 22px; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: 0 6px 16px rgba(0,0,0,.45), 0 0 0 2px rgba(56,189,248,.4); }
.quote figcaption b { display: block; font-size: 15px; font-family: var(--display); }
.quote figcaption small { color: var(--muted); font-size: 13px; }

/* ===== Acteurs / rôles ===== */
.roles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.role { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: transform .3s var(--ease), border-color .3s, background .3s; }
.role:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.role__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; background: var(--grad-soft); border: 1px solid var(--border); color: var(--cyan); }
.role__icon svg { width: 25px; height: 25px; }
.role h3 { font-family: var(--display); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.role > p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.role__list { display: grid; gap: 8px; padding-top: 14px; border-top: 1px solid var(--border); }
.role__list li { position: relative; padding-left: 22px; font-size: 13.5px; }
.role__list li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }

/* ===== Recouvrement / canaux ===== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 38px; }
.pillar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform .3s var(--ease), border-color .3s; }
.pillar:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.pillar__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; background: var(--grad-soft); border: 1px solid var(--border); color: var(--cyan); }
.pillar__icon svg { width: 26px; height: 26px; }
.pillar h3 { font-family: var(--display); font-weight: 700; font-size: 19px; margin-bottom: 9px; letter-spacing: -.01em; }
.pillar p { color: var(--muted); font-size: 15px; }
.channels { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.channels__label { font-size: 12.5px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-right: 4px; }
.channel { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-size: 14px; font-weight: 500; transition: border-color .25s, transform .25s var(--ease), background .25s; }
.channel:hover { border-color: var(--cyan); transform: translateY(-2px); background: var(--surface-2); }
.channel svg { width: 18px; height: 18px; color: var(--cyan); flex: none; }
.reach__note { text-align: center; margin-top: 26px; color: var(--muted); font-size: 15px; }

/* ===== Conformité ===== */
.compliance { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.comp { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: transform .3s var(--ease), border-color .3s; }
.comp:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.comp__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; background: var(--grad-soft); border: 1px solid var(--border); color: var(--cyan); }
.comp__icon svg { width: 26px; height: 26px; }
.comp h3 { font-family: var(--display); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.comp p { color: var(--muted); font-size: 14.5px; }

/* ===== Notre histoire : fondateur + timeline ===== */
.founder { display: flex; gap: 26px; align-items: center; max-width: 840px; margin: 0 auto 52px; padding: 28px 30px; background: var(--grad-soft); border: 1px solid rgba(139,92,246,.3); border-radius: var(--radius); }
.founder__avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: 0 8px 24px rgba(0,0,0,.45), 0 0 0 2px rgba(56,189,248,.45); }
.founder__quote { font-size: 17px; line-height: 1.6; font-style: italic; margin-bottom: 14px; }
.founder__id b { display: block; font-family: var(--display); font-weight: 700; font-size: 15px; }
.founder__id > span { color: var(--muted); font-size: 13.5px; }

.timeline { position: relative; max-width: 960px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 50%; top: 8px; bottom: 8px; width: 2px; transform: translateX(-50%); background: linear-gradient(180deg, transparent, var(--border-strong) 6%, var(--border-strong) 94%, transparent); }
.tl { position: relative; display: flex; margin-bottom: 30px; }
.tl:last-child { margin-bottom: 0; }
.tl--right { justify-content: flex-end; }
.tl__year { position: absolute; left: 50%; top: 10px; transform: translateX(-50%); z-index: 2; background: var(--bg-2); border: 1px solid var(--border-strong); color: var(--text); font-family: var(--display); font-weight: 700; font-size: 13px; padding: 5px 13px; border-radius: 999px; white-space: nowrap; }
.tl__card { width: calc(50% - 46px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; transition: transform .3s var(--ease), border-color .3s; }
.tl__card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.tl__card--accent { background: var(--grad-soft); border-color: rgba(139,92,246,.35); }
.tl__card h3 { font-family: var(--display); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.tl__card p { color: var(--muted); font-size: 14.5px; }
/* Apparition des jalons un par un au scroll (glissement depuis chaque côté) */
.tl[data-reveal] { transform: none; }
.tl[data-reveal] .tl__card { transform: translateX(-28px); transition: transform .6s var(--ease), opacity .6s var(--ease); }
.tl--right[data-reveal] .tl__card { transform: translateX(28px); }
.tl[data-reveal].in .tl__card { transform: none; }
.timeline__fill { position: absolute; left: 50%; top: 8px; width: 2px; height: calc(100% - 16px); transform: translateX(-50%) scaleY(var(--tl-p, 0)); transform-origin: top center; background: var(--grad); border-radius: 2px; z-index: 1; will-change: transform; box-shadow: 0 0 12px rgba(56,189,248,.5); }

/* ===== Badges conformité / sécurité ===== */
.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 40px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-size: 13.5px; font-weight: 500; color: var(--text); transition: border-color .25s, transform .25s var(--ease), background .25s; }
.badge:hover { border-color: var(--cyan); transform: translateY(-2px); background: var(--surface-2); }
.badge svg { width: 16px; height: 16px; color: var(--cyan); flex: none; }
.badge--flag svg { width: 22px; height: 16px; }

/* ===== Capacités (tout-en-un) ===== */
.caps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
.cap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: transform .3s var(--ease), border-color .3s; }
.cap:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.cap h3 { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 16px; margin-bottom: 16px; letter-spacing: -.01em; }
.cap h3 svg { width: 22px; height: 22px; color: var(--cyan); flex: none; }
.cap ul { display: grid; gap: 10px; }
.cap li { position: relative; padding-left: 22px; font-size: 14px; color: var(--muted); }
.cap li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }

/* ===== Tarifs ===== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 26px;
  transition: transform .3s var(--ease), border-color .3s;
}
.plan:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.plan--featured {
  background: var(--grad-soft);
  border-color: rgba(56,189,248,.45);
  box-shadow: var(--shadow-glow);
}
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .04em;
  background: var(--grad); color: #06121f; padding: 6px 16px; border-radius: 999px;
  white-space: nowrap;
}
.plan__name { font-family: var(--display); font-weight: 700; font-size: 22px; }
.plan__for { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.plan__price { font-family: var(--display); font-weight: 800; font-size: 30px; margin-bottom: 22px; letter-spacing: -.02em; }
.plan__features { display: grid; gap: 12px; margin-bottom: 26px; }
.plan__features li { position: relative; padding-left: 26px; font-size: 15px; color: var(--text); }
.plan__features li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }
.plan__features li b { font-weight: 700; }

/* ===== FAQ ===== */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 4px 22px;
  transition: border-color .3s, background .3s;
}
.faq__item[open] { border-color: var(--border-strong); background: var(--surface-2); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 600; font-size: 17px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--cyan); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item[open] .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq__item p { padding: 0 0 20px; color: var(--muted); font-size: 15.5px; }

/* ==================== CTA FINAL ==================== */
.cta { position: relative; padding: 110px 0; overflow: hidden; text-align: center; }
.cta__aurora .blob { opacity: .4; }
.cta__inner { max-width: 720px; margin: 0 auto; }
.cta h2 { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 4.4vw, 52px); letter-spacing: -.025em; line-height: 1.08; }
.cta p { color: var(--muted); font-size: 18px; margin: 18px 0 30px; }
.cta__form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; }
.cta__form input {
  flex: 1; min-width: 0; padding: 16px 20px; font-size: 15px; font-family: var(--font);
  color: var(--text); background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 999px; outline: none; transition: border-color .25s;
}
.cta__form input::placeholder { color: var(--muted-2); }
.cta__form input:focus { border-color: var(--cyan); }
.cta__note { margin-top: 18px !important; font-size: 14px !important; color: var(--muted-2) !important; }

/* ==================== FOOTER ==================== */
.footer { border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__logo { display: inline-block; }
.footer__logo img { width: 190px; height: auto; }
.footer__brand p { color: var(--muted); font-size: 14.5px; margin-top: 18px; max-width: 320px; }
.footer__col h4 { font-family: var(--display); font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted); font-size: 14.5px; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--cyan); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: 13.5px; }

/* ==================== REVEAL ==================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .tl__card { transform: none !important; }
  .blob, .dash, .hero__cockpit, .hero__action-pill, .hero__overlay-card, .float-card, .marquee__track, .spark__line { animation: none !important; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 980px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 70px; }
  .hero__mockup { max-width: 480px; margin: 0 auto; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .roles { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .compliance { grid-template-columns: repeat(2, 1fr); }
  .caps { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { display: none; }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__copy { order: 0; }
  .quotes, .plans { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav, .nav.scrolled { padding-inline: 18px; }
  .container { padding-inline: 18px; }
  .section { padding: 72px 0; }
  .bento { grid-template-columns: 1fr; }
  .roles, .compliance, .caps { grid-template-columns: 1fr; }
  .channels__label { width: 100%; text-align: center; margin: 0 0 4px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .founder { flex-direction: column; text-align: center; padding: 26px 20px; }
  .timeline { max-width: 100%; }
  .timeline::before { left: 8px; }
  .timeline__fill { left: 8px; }
  .tl, .tl--right { display: block; padding-left: 30px; margin-bottom: 26px; }
  .tl__year { position: static; transform: none; display: inline-block; margin-bottom: 10px; }
  .tl__card { width: 100%; }
  .dash__kpis { grid-template-columns: 1fr 1fr; }
  .dash__kpis .kpi:last-child { grid-column: span 2; }
  .float-card--pay { left: -10px; }
  .float-card--wa { right: -8px; }
  .hero__action-pill { left: -10px; top: 4%; font-size: 12.5px; padding: 9px 14px; }
  .hero__overlay-card { right: -8px; bottom: -16px; max-width: 88%; padding: 12px 14px; font-size: 12px; }
  .hero__overlay-head, .hero__overlay-row { gap: 6px; }
  .hero__overlay-head { font-size: 9.5px; }
  .hero__overlay-person img { width: 22px; height: 22px; }
  .hero__overlay-badge { font-size: 9.5px; padding: 3px 7px; }
  .cta__form { flex-direction: column; }
  .cta__form input, .cta__form .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
}
