/* =====================================================
   REPERA — Design System
   Inspirations : Linear 60% · Stripe 20% · Vercel 10% · Anthropic 10%
   ===================================================== */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F7F9FC;
  --ink: #0F172A;
  --ink-2: #475569;
  --ink-3: #94A3B8;
  --primary: #2563EB;
  --accent: #7C3AED;
  --border: #E2E8F0;
  --border-soft: #EDF2F7;
  --grad: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  --grad-soft: linear-gradient(135deg, rgba(37,99,235,.08), rgba(124,58,237,.08));
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.05);
  --shadow-md: 0 6px 24px -8px rgba(15,23,42,.12);
  --shadow-lg: 0 24px 64px -16px rgba(15,23,42,.18);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }
.section { padding: 112px 0; }
.section--alt { background: var(--bg-alt); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; }
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); letter-spacing: -0.025em; }
h3 { font-size: 1.18rem; }
p  { margin: 0; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--primary);
  background: rgba(37,99,235,.06);
  border: 1px solid rgba(37,99,235,.14);
  padding: 6px 14px; border-radius: 999px;
  margin: 0 0 20px;
}
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); flex: none;
  animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,99,235,.35);} 50% { box-shadow: 0 0 0 5px rgba(37,99,235,0);} }

.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section__sub { color: var(--ink-2); font-size: 1.08rem; margin-top: 18px; }
.sec-cta { text-align: center; margin-top: 44px; }
/* Bande de confiance (sous le hero) */
.trust-band { background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.trust-band__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; padding: 15px 24px; font-size: .84rem; color: var(--ink-2); font-weight: 500; }
.trust-band__inner b { color: var(--ink); }
/* Aperçu du rapport GEO Score Express */
.reportprev { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: center; max-width: 720px; margin: 0 auto 28px; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 22px 26px; box-shadow: var(--shadow-md); }
.reportprev__gauge { position: relative; width: 92px; height: 92px; border-radius: 50%; background: conic-gradient(#F59E0B 67%, #E8EDF4 0); display: grid; place-items: center; flex: none; }
.reportprev__gauge::before { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: #fff; }
.reportprev__gauge b { position: relative; font-size: 1.55rem; font-weight: 800; color: #F59E0B; line-height: 1; }
.reportprev__gauge span { position: relative; font-size: .6rem; color: var(--ink-3); }
.reportprev__lists { display: grid; gap: 9px; }
.rp-row { font-size: .82rem; }
.rp-row b { display: block; margin-bottom: 1px; }
.rp-row--ok b { color: #059669; }
.rp-row--ko b { color: #DC2626; }
.rp-row span { color: var(--ink-2); }
.reportprev__cap { width: 100%; text-align: center; font-size: .76rem; color: var(--ink-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: .94rem; line-height: 1;
  padding: 13px 22px; border-radius: 10px;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 1rem; border-radius: 12px; }
.btn--block { width: 100%; }
.btn--primary {
  color: #fff; background: var(--grad);
  box-shadow: 0 8px 20px -8px rgba(37,99,235,.5), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(37,99,235,.55); }
.btn--secondary {
  color: var(--ink); background: #fff; border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover { transform: translateY(-2px); border-color: #CBD5E1; box-shadow: var(--shadow-md); }
.btn--ghost { color: var(--ink-2); padding: 10px 14px; }
.btn--ghost:hover { color: var(--ink); }
.btn--white { color: var(--primary); background: #fff; box-shadow: 0 10px 30px -8px rgba(2,6,23,.4); }
.btn--white:hover { transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.is-scrolled { border-color: var(--border-soft); background: rgba(255,255,255,.92); }
.nav__inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.nav__brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.nav__logo {
  position: relative; isolation: isolate;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 800;
  box-shadow: 0 4px 12px -4px rgba(37,99,235,.5);
}
/* Logo B — anneau d'objectif (lens) autour du N */
.nav__logo::before {
  content: ""; position: absolute; inset: 13%; z-index: -1;
  border-radius: 50%; border: 1.6px solid rgba(255,255,255,.5);
}
.nav__logo--sm { width: 22px; height: 22px; border-radius: 6px; font-size: .7rem; }
.nav__logo--sm::before { border-width: 1.2px; }
.nav__name { letter-spacing: .14em; font-size: .92rem; }
.nav__name--light { color: #fff; }
.nav__links { display: flex; gap: 26px; margin: 0 auto; }
.nav__links a { font-size: .92rem; font-weight: 500; color: var(--ink-2); transition: color .25s; }
.nav__links a:hover { color: var(--ink); }
.nav__agency { display: inline-flex; align-items: center; line-height: 1; font-size: .94rem; font-weight: 600; color: var(--accent); border: 1.5px solid var(--accent); border-radius: 10px; padding: 13px 18px; transition: background .2s, color .2s; }
.nav__agency:hover { background: var(--accent); color: #fff; }
.nav__actions { display: flex; align-items: center; gap: 8px; }
.nav__burger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 0 110px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: -40% -20% auto;  height: 130%;
  background:
    radial-gradient(46% 42% at 28% 30%, rgba(37,99,235,.10), transparent 70%),
    radial-gradient(40% 38% at 76% 22%, rgba(124,58,237,.10), transparent 70%);
  pointer-events: none;
  animation: drift 14s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translate3d(0,0,0);} to { transform: translate3d(0,26px,0);} }
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__sub { color: var(--ink-2); font-size: 1.14rem; margin-top: 22px; max-width: 540px; }
.hero__cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero__note { margin-top: 22px; font-size: .85rem; color: var(--ink-3); }

/* Dashboard 3D */
.hero__visual { position: relative; }
.dash3d { position: relative; perspective: 1400px; }
.dash3d__window {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.6) inset;
  transform: rotateY(-9deg) rotateX(4deg);
  transform-style: preserve-3d;
  transition: transform .6s var(--ease);
}
.dash3d:hover .dash3d__window { transform: rotateY(-4deg) rotateX(2deg); }
.dash3d__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px; border-bottom: 1px solid var(--border-soft);
}
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot--r { background: #FCA5A5; } .dot--y { background: #FCD34D; } .dot--g { background: #86EFAC; }
.dash3d__title { margin-left: 10px; font-size: .74rem; color: var(--ink-3); font-weight: 500; }
.dash3d__body { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 24px; align-items: center; }

.dash3d__score { position: relative; width: 132px; }
.ring { transform: rotate(-90deg); }
.ring__bg { fill: none; stroke: var(--border-soft); stroke-width: 9; }
.ring__val {
  fill: none; stroke: url(#ringGrad), var(--primary); stroke: var(--primary);
  stroke-width: 9; stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.is-visible .ring__val, .ring__val.is-on { stroke-dashoffset: calc(326.7 * 0.18); }
.ring__val--static { stroke-dasharray: 213.6; stroke-dashoffset: calc(213.6 * (1 - var(--p, .7))); transition: stroke-dashoffset 1.2s var(--ease); }
.dash3d__score-num {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; line-height: 1;
}
.dash3d__score-num strong { font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; }
.dash3d__score-num span { font-size: .72rem; color: var(--ink-3); margin-top: 2px; }
.dash3d__score-num em { font-style: normal; font-size: .68rem; font-weight: 600; color: var(--primary); margin-top: 6px; text-transform: uppercase; letter-spacing: .08em; }

.dash3d__bars { display: grid; gap: 14px; }
.vbar { display: grid; grid-template-columns: 118px 1fr auto; align-items: center; gap: 10px; }
.vbar span { font-size: .78rem; color: var(--ink-2); font-weight: 500; }
.vbar b { font-size: .78rem; font-weight: 700; }
.vbar--sm { grid-template-columns: 72px 1fr; }
.vbar--sm span { font-size: .72rem; }
.vbar__track { height: 7px; background: var(--border-soft); border-radius: 99px; overflow: hidden; }
.vbar__fill {
  height: 100%; width: 0; border-radius: 99px;
  background: var(--grad);
  transition: width 1.2s var(--ease) .2s;
}
.is-visible .vbar__fill { width: var(--w); }

.dash3d__float {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}
.dash3d__float b { display: block; font-size: .8rem; }
.dash3d__float em { font-style: normal; font-size: .7rem; color: var(--ink-3); }
.dash3d__float--1 { top: -22px; right: -10px; animation-delay: .8s; }
.dash3d__float--2 { bottom: -24px; left: -14px; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-8px);} }

.chip {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .7rem; font-weight: 700;
  padding: 3px 9px; border-radius: 99px;
  background: var(--border-soft); color: var(--ink-2);
  white-space: nowrap;
}
.chip--up { background: #ECFDF5; color: #059669; }
.chip--violet { background: #F5F3FF; color: var(--accent); }

/* ---------- Proof ---------- */
.proof { padding: 56px 0 88px; border-top: 1px solid var(--border-soft); }
.proof__label { text-align: center; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 28px; }
.proof__logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 48px;
  margin-bottom: 64px;
}
.wordmark {
  font-weight: 700; font-size: 1.05rem; letter-spacing: .04em;
  color: #B6C2D2; transition: color .3s var(--ease);
  filter: grayscale(1);
}
.wordmark:hover { color: var(--ink-2); }
.ai-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .92rem; color: var(--ink);
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 16px 8px 12px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.ai-logo:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--c); }
.ai-logo svg { width: 18px; height: 18px; color: var(--c); flex: none; }
.proof__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 860px; margin: 0 auto;
}
.stat { text-align: center; padding: 28px 16px; border-radius: var(--radius); background: var(--bg-alt); border: 1px solid var(--border-soft); }
.stat strong { display: block; font-size: 2.3rem; font-weight: 800; letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat strong span { font-size: inherit; color: inherit; }
.stat > span { font-size: .9rem; color: var(--ink-2); }

/* ---------- Problème ---------- */
.problem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #CBD5E1; }
.pcard__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--grad-soft); color: var(--primary);
  margin-bottom: 18px;
}
.pcard__icon svg { width: 22px; height: 22px; }
.pcard h3 { margin-bottom: 10px; }
.pcard p { color: var(--ink-2); font-size: .94rem; }
.pcard--accent { background: linear-gradient(160deg, rgba(37,99,235,.05), rgba(124,58,237,.07)); border-color: rgba(124,58,237,.2); }
.pcard--accent .pcard__icon { background: var(--grad); color: #fff; }

/* ---------- Solution / features ---------- */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 56px 0;
}
.feature + .feature { border-top: 1px solid var(--border-soft); }
.feature--flip .feature__text { order: 2; }
.feature--flip .feature__visual { order: 1; }
.feature__num {
  font-size: .8rem; font-weight: 800; letter-spacing: .1em;
  color: var(--primary);
  display: inline-block; margin-bottom: 12px;
}
.feature__text h3 { font-size: 1.65rem; margin-bottom: 14px; letter-spacing: -.02em; }
.feature__text > p { color: var(--ink-2); }
.checklist { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.checklist li {
  position: relative; padding-left: 30px;
  font-size: .94rem; color: var(--ink-2);
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 6px;
  background: var(--grad-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}

/* Mockups */
.mock {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 0 20px 20px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.mock:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mock__head {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0; margin-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.mock__head span { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.mock__head b { font-size: .82rem; font-weight: 600; color: var(--ink-2); }
.mock__row { display: flex; gap: 20px; align-items: center; }
.miniring { position: relative; width: 84px; flex: none; }
.miniring svg { transform: rotate(-90deg); }
.miniring b { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; }
.mock__pills { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex: 1; }
.pill {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-alt); border: 1px solid var(--border-soft);
  border-radius: 9px; padding: 8px 12px;
}
.pill span { font-size: .74rem; color: var(--ink-2); }
.pill b { font-size: .78rem; }
.mock__alert {
  margin-top: 16px; padding: 12px 14px;
  background: var(--bg-alt); border: 1px dashed var(--border);
  border-radius: 10px; font-size: .8rem; color: var(--ink-2);
  display: flex; align-items: center; gap: 10px;
}
.mock__legend { margin-top: 12px; font-size: .78rem; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }

.hbar { display: grid; grid-template-columns: 110px 1fr 42px; gap: 12px; align-items: center; margin-top: 12px; }
.hbar span { font-size: .78rem; color: var(--ink-2); font-weight: 500; }
.hbar b { font-size: .78rem; text-align: right; }
.hbar__track { height: 10px; border-radius: 99px; background: var(--border-soft); overflow: hidden; }
.hbar__fill { height: 100%; width: 0; border-radius: 99px; background: #C7D6F4; transition: width 1.1s var(--ease) .15s; }
.hbar__fill--you { background: var(--grad); }
.is-visible .hbar__fill { width: var(--w); }

.line { width: 100%; height: auto; }

.task { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border-soft); }
.task:last-child { border-bottom: 0; }
.task b { display: block; font-size: .82rem; }
.task em { font-style: normal; font-size: .72rem; color: var(--ink-3); }
.task > div { flex: 1; }
.task__check {
  width: 20px; height: 20px; border-radius: 7px; flex: none;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: #fff;
}
.task__check--done { background: var(--grad); border-color: transparent; }

.report { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.report__kpi {
  background: var(--bg-alt); border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 14px;
}
.report__kpi em { display: block; font-style: normal; font-size: .72rem; color: var(--ink-3); margin-bottom: 6px; }
.report__kpi b { font-size: 1.25rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }

/* ---------- Big dashboard ---------- */
.bigdash {
  display: grid; grid-template-columns: 200px 1fr;
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.bigdash__side {
  background: var(--bg-alt); border-right: 1px solid var(--border-soft);
  padding: 20px 14px; display: flex; flex-direction: column; gap: 4px;
}
.bigdash__brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: .8rem; letter-spacing: .1em; margin-bottom: 18px; padding: 0 10px; }
.bigdash__item {
  font-size: .84rem; font-weight: 500; color: var(--ink-2);
  padding: 9px 12px; border-radius: 9px;
}
.bigdash__item--on { background: #fff; color: var(--ink); font-weight: 600; box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft); }
.bigdash__main { padding: 22px; display: grid; gap: 18px; }
.bigdash__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bigdash__row:last-child { grid-template-columns: 1.4fr .8fr .9fr .9fr; }
.widget {
  background: #fff; border: 1px solid var(--border-soft); border-radius: 14px;
  padding: 18px; box-shadow: var(--shadow-sm);
  min-width: 0;
}
.widget > em { display: block; font-style: normal; font-size: .74rem; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.widget__big { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.widget__big b { font-size: 1.85rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.widget__big > span { font-size: .78rem; color: var(--ink-3); }
.widget__bars { display: grid; gap: 8px; margin-top: 14px; }
.widget > em.widget__foot { display: block; font-style: normal; font-size: .74rem; color: var(--ink-3); margin-top: 12px; text-transform: none; letter-spacing: 0; font-weight: 500; }
.widget--wide { display: block; }
.spark { margin-top: 14px; }
.feed { margin-top: 14px; display: grid; gap: 9px; }
.feed__item { display: flex; align-items: center; gap: 8px; font-size: .76rem; color: var(--ink-2); }
.feed__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); flex: none; }
.feed__dot--v { background: var(--accent); }
.donutwrap { position: relative; width: 96px; margin: 4px auto 0; }
.donutwrap svg { transform: rotate(-90deg); }
.donutwrap__num { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1.15; }
.donutwrap__num b { font-size: 1.15rem; font-weight: 800; }
.donutwrap__num em { font-style: normal; font-size: .6rem; color: var(--ink-3); }

/* ---------- Timeline ---------- */
.timeline {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  counter-reset: step;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute; top: 26px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(37,99,235,.3), rgba(124,58,237,.3));
}
.timeline__step { position: relative; text-align: center; padding: 0 8px; }
.timeline__num {
  position: relative; z-index: 1;
  width: 52px; height: 52px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  font-weight: 800; color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.timeline__step:hover .timeline__num { transform: scale(1.08); background: var(--grad); color: #fff; border-color: transparent; }
.timeline__step h3 { font-size: 1rem; margin-bottom: 8px; }
.timeline__step p { font-size: .86rem; color: var(--ink-2); }

/* ---------- Cas d'usage ---------- */
.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ccard {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column; gap: 12px;
}
.ccard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ccard__icon { font-size: 1.6rem; }
.ccard h3 { font-size: 1.08rem; }
.ccard p { font-size: .85rem; color: var(--ink-2); }
.ccard b { display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-3); margin-bottom: 3px; }
.ccard__result { margin-top: auto; }
.ccard__result b { color: var(--primary); }

/* ---------- Comparatif ---------- */
.table {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.table__row {
  display: grid; grid-template-columns: 1.1fr 1fr 1.2fr;
  border-bottom: 1px solid var(--border-soft);
}
.table__row:last-child { border-bottom: 0; }
.table__row > span { padding: 16px 22px; font-size: .92rem; display: flex; align-items: center; }
.table__row--head { background: var(--bg-alt); }
.table__row--head > span { font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-2); }
.table__nx { background: linear-gradient(160deg, rgba(37,99,235,.045), rgba(124,58,237,.06)); font-weight: 600; }
.table__row--head .table__nx { color: var(--primary); }
.yes { color: #059669; }
.no { color: var(--ink-3); }

/* ---------- Témoignages ---------- */
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.qcard {
  margin: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.qcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.qcard__stars { color: #F59E0B; letter-spacing: 2px; font-size: .9rem; }
.qcard blockquote { margin: 0; font-size: .95rem; color: var(--ink-2); line-height: 1.65; }
.qcard figcaption { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.qcard figcaption b { display: block; font-size: .88rem; }
.qcard figcaption em { font-style: normal; font-size: .76rem; color: var(--ink-3); }
.qcard figcaption > div { flex: 1; min-width: 130px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .82rem;
  background: linear-gradient(135deg, var(--a, #2563EB), #7C3AED);
}

/* ---------- Pricing ---------- */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  position: relative;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan h3 { font-size: 1.2rem; }
.plan__for { font-size: .88rem; color: var(--ink-2); margin-top: 6px; min-height: 42px; }
.plan__price { margin: 18px 0 6px; }
.plan__price b { font-size: 2.2rem; font-weight: 800; letter-spacing: -.03em; }
.plan__price span { color: var(--ink-3); font-size: .9rem; }
.plan .checklist { margin: 18px 0 28px; flex: 1; }
.plan--pro {
  border: 1.5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad) border-box;
  box-shadow: 0 20px 50px -18px rgba(37,99,235,.35);
  transform: scale(1.03);
}
.plan--pro:hover { transform: scale(1.03) translateY(-4px); }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 99px;
  box-shadow: 0 6px 16px -6px rgba(124,58,237,.6);
}

/* ---------- Snapshot (offre d'appel) ---------- */
.snapshot {
  display: grid; grid-template-columns: 1.45fr .85fr; gap: 40px; align-items: center;
  border-radius: 22px;
  background: var(--grad); color: #fff;
  box-shadow: 0 32px 72px -20px rgba(124,58,237,.55);
  padding: 38px 40px; margin: 0 0 56px;
}
.snapshot__badge {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.34);
  padding: 5px 12px; border-radius: 99px; margin-bottom: 14px;
}
.snapshot__info h3 { font-size: 1.45rem; letter-spacing: -.02em; margin-bottom: 10px; color: #fff; }
.snapshot__info > p { color: rgba(255,255,255,.85); font-size: .96rem; }
.snapshot__info .checklist { margin-top: 14px; }
.snapshot .checklist li { color: rgba(255,255,255,.92); }
.snapshot .checklist li::before { background-color: rgba(255,255,255,.95); }
.snapshot__buy { text-align: center; }
.snapshot__price { margin-bottom: 14px; }
.snapshot__price b { font-size: 2.6rem; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.snapshot__price span { display: block; font-size: .82rem; color: rgba(255,255,255,.72); }
.snapshot .snapshot__note { color: rgba(255,255,255,.68); }
/* Bouton « achat » rouge→orange « flash » : punchy + l'emoji jaune ⚡ ressort (réutilisable) */
.btn--buy { background: linear-gradient(135deg, #E11D48, #F97316); color: #fff; border: 0; font-weight: 700; box-shadow: 0 16px 34px -12px rgba(225,29,72,.55); }
.btn--buy:hover { background: linear-gradient(135deg, #F43F5E, #FB6514); transform: translateY(-2px); box-shadow: 0 22px 44px -12px rgba(225,29,72,.66); }
/* Bouton encadré (ex. « Se connecter ») */
.btn--outline { color: var(--primary); background: #fff; border: 1.5px solid var(--primary); box-shadow: var(--shadow-sm); }
.btn--outline:hover { background: rgba(37,99,235,.06); transform: translateY(-2px); border-color: var(--primary); }
.snapshot__note { margin-top: 12px; font-size: .76rem; color: var(--ink-3); }

/* ---------- Page démo ---------- */
.hero--demo { padding: 72px 0 88px; }
.player {
  display: block; text-decoration: none;
  position: relative; aspect-ratio: 16 / 9;
  border-radius: 20px; overflow: hidden;
  background:
    radial-gradient(50% 70% at 22% 12%, rgba(37,99,235,.4), transparent 70%),
    radial-gradient(45% 60% at 80% 88%, rgba(124,58,237,.4), transparent 70%),
    linear-gradient(140deg, #0F172A 0%, #1E1B4B 60%, #312E81 100%);
  box-shadow: 0 40px 90px -30px rgba(15,23,42,.5);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.player:hover { transform: translateY(-3px); box-shadow: 0 48px 100px -30px rgba(15,23,42,.55); }
.player:hover .player__play { transform: scale(1.07); }
a.chapter { text-decoration: none; transition: border-color .25s var(--ease), transform .25s var(--ease); }
a.chapter:hover { border-color: var(--primary); transform: translateY(-2px); }
.player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.player__poster {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: #fff; text-align: center; padding: 24px;
}
.player__poster b { font-size: 1.15rem; font-weight: 700; margin-top: 18px; }
.player__poster em { font-style: normal; font-size: .85rem; color: rgba(255,255,255,.65); }
.player__play {
  width: 88px; height: 88px; border-radius: 50%;
  border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.96); color: var(--primary);
  box-shadow: 0 18px 44px -10px rgba(2,6,23,.6), 0 0 0 10px rgba(255,255,255,.12);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.player--ready .player__play:hover { transform: scale(1.07); box-shadow: 0 22px 50px -10px rgba(2,6,23,.7), 0 0 0 14px rgba(255,255,255,.16); }
.player__play svg { width: 34px; height: 34px; margin-left: 4px; }
.chapters {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px;
  margin-top: 28px;
}
.chapter {
  display: flex; gap: 14px; align-items: baseline;
  padding: 12px 16px;
  background: var(--bg-alt); border: 1px solid var(--border-soft); border-radius: 12px;
}
.chapter span { font-size: .76rem; font-weight: 700; color: var(--primary); font-variant-numeric: tabular-nums; flex: none; }
.chapter p { font-size: .88rem; color: var(--ink-2); }
.chapter b { color: var(--ink); }
.demo__alt { text-align: center; margin-top: 28px; font-size: .9rem; color: var(--ink-2); }
.demo__alt a { color: var(--primary); font-weight: 600; }
.cta__link { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Section candidature partenaire (agences) ---------- */
.partner-join { display: grid; grid-template-columns: .85fr 1.15fr; max-width: 920px; margin: 0 auto; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: #fff; }
.partner-join__pitch { background: linear-gradient(155deg,#0F172A,#1E1B4B 55%,#312E81); color: #fff; padding: 38px 32px; display: flex; flex-direction: column; }
.partner-join__pitch h3 { font-size: 1.2rem; margin-bottom: 20px; }
.partner-join__re { margin-top: auto; padding-top: 26px; font-size: .82rem; color: rgba(255,255,255,.78); font-weight: 600; }
.partner-join__form { padding: 32px; }
.partner-join__form h3 { font-size: 1.15rem; margin-bottom: 16px; }
.checklist--light li { color: rgba(255,255,255,.9); }
.checklist--light li b { color: #fff; }
.checklist--light li::before { background-color: rgba(255,255,255,.16); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E"); }
@media (max-width: 760px) { .partner-join { grid-template-columns: 1fr; } }

/* ---------- Champs de formulaire (site) ---------- */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 10px; padding: 11px 13px;
  font-family: inherit; font-size: .92rem; color: var(--ink); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Sélecteur de moteurs (modal upsell) ---------- */
.geomodal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px;
  background: rgba(15,23,42,.55); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.geomodal.open { display: flex; animation: gmfade .25s var(--ease); }
@keyframes gmfade { from { opacity: 0; } to { opacity: 1; } }
.geomodal__card { background: #fff; border-radius: 22px; max-width: 560px; width: 100%; box-shadow: var(--shadow-lg); overflow: hidden; animation: gmrise .3s var(--ease); max-height: 92vh; overflow-y: auto; }
@keyframes gmrise { from { transform: translateY(18px); opacity: .5; } to { transform: none; opacity: 1; } }
.geomodal__hd { position: relative; background: var(--grad); color: #fff; padding: 24px 28px; }
.geomodal__hd h3 { font-size: 1.35rem; letter-spacing: -.02em; }
.geomodal__hd p { font-size: .86rem; opacity: .85; margin-top: 6px; max-width: 420px; }
.geomodal__close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%; border: 0; background: rgba(255,255,255,.18); color: #fff; font-size: 1.2rem; line-height: 1; cursor: pointer; transition: background .2s; }
.geomodal__close:hover { background: rgba(255,255,255,.3); }
.geomodal__bd { padding: 22px 28px 26px; }
.geo-engines { display: grid; gap: 8px; margin-bottom: 14px; }
.geo-eng { display: flex; align-items: center; gap: 12px; border: 1.5px solid var(--border); border-radius: 12px; padding: 11px 14px; cursor: pointer; transition: border-color .2s, background .2s; user-select: none; }
.geo-eng:hover { border-color: #CBD5E1; }
.geo-eng.on { border-color: var(--primary); background: rgba(37,99,235,.05); }
.geo-eng--base { cursor: default; }
.geo-eng__dot { width: 14px; height: 14px; border-radius: 5px; flex: none; }
.geo-eng b { font-size: .92rem; }
.geo-eng__tag { margin-left: auto; font-size: .7rem; font-weight: 700; color: var(--ink-3); }
.geo-eng.on .geo-eng__tag { color: var(--primary); }
.geo-check { width: 22px; height: 22px; border-radius: 6px; border: 1.6px solid var(--border); display: grid; place-items: center; flex: none; color: transparent; font-size: .8rem; }
.geo-eng.on .geo-check { background: var(--grad); border-color: transparent; color: #fff; }
.geo-allbtn { width: 100%; text-align: center; font-size: .82rem; font-weight: 600; color: var(--accent); background: #F5F3FF; border: 1px solid rgba(124,58,237,.2); border-radius: 10px; padding: 10px; cursor: pointer; margin-bottom: 16px; transition: background .2s; }
.geo-allbtn:hover { background: #EDE9FE; }
.geo-sum { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; background: var(--bg-alt); border: 1px solid var(--border-soft); border-radius: 14px; padding: 14px 18px; margin-bottom: 14px; }
.geo-sum__price b { font-size: 1.9rem; font-weight: 800; letter-spacing: -.03em; }
.geo-sum__price s { color: var(--ink-3); font-size: 1rem; font-weight: 600; margin-right: 8px; text-decoration: line-through; }
.geo-sum__price span { font-size: .78rem; color: var(--ink-3); margin-left: 6px; }
.geo-sum__save { font-size: .82rem; font-weight: 800; color: #fff; background: linear-gradient(135deg,#10B981,#059669); padding: 6px 12px; border-radius: 99px; box-shadow: 0 6px 14px -6px rgba(16,185,129,.6); }
.geo-mini { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 14px; margin-top: 14px; font-size: .72rem; color: var(--ink-3); }
.geo-mini b { color: var(--ink-2); }
/* Option recommandée (3 moteurs) — ancrage d'upsell */
.geo-allbtn--reco { color: #fff; background: linear-gradient(120deg,#2563EB,#7C3AED); border-color: transparent; box-shadow: 0 8px 18px -8px rgba(79,70,229,.55); margin-bottom: 8px; }
.geo-allbtn--reco:hover { background: linear-gradient(120deg,#1d4ed8,#6d28d9); }
.geo-mini .reco { color: var(--primary); font-weight: 700; }
.geo-mini .reco b { color: var(--primary); }
.geo-mini .reco i { font-style: normal; font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: #fff; background: var(--grad); padding: 1px 6px; border-radius: 99px; margin-left: 3px; }

/* ---------- Démo animée (auto-play) ---------- */
.demoreel { max-width: 760px; margin: 0 auto; border-radius: 18px; overflow: hidden;
  background: linear-gradient(140deg,#0F172A,#1E1B4B 60%,#312E81);
  box-shadow: 0 40px 90px -30px rgba(15,23,42,.55); }
.demoreel__bar { display:flex; align-items:center; gap:6px; padding:12px 16px; border-bottom:1px solid rgba(255,255,255,.08); }
.demoreel__bar .dr-dot { width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,.25); }
.demoreel__url { margin-left:10px; font-size:.74rem; color:rgba(255,255,255,.5); }
.demoreel__live { margin-left:auto; font-size:.66rem; font-weight:700; color:#34D399; letter-spacing:.05em; }
.demoreel__live::before { content:"●"; margin-right:5px; animation:pulse 2s var(--ease) infinite; }
.demoreel__screen { position:relative; height:380px; background:#F6F8FC; overflow:hidden; }
.dr-scene { position:absolute; inset:0; padding:26px 30px; display:flex; flex-direction:column; gap:18px; background:#F6F8FC;
  opacity:0; transform:translateY(12px); transition:opacity .55s var(--ease), transform .55s var(--ease); pointer-events:none; }
.dr-scene.is-active { opacity:1; transform:none; pointer-events:auto; }
.dr-stage { flex:1; display:flex; align-items:center; justify-content:center; min-height:0; }
.dr-cap { display:flex; align-items:center; gap:10px; font-size:.92rem; font-weight:600; color:var(--ink); }
.dr-cap__tag { font-size:.62rem; font-weight:800; text-transform:uppercase; letter-spacing:.06em; padding:4px 10px; border-radius:99px; white-space:nowrap; }
.dr-cap__tag--problem { background:#FEF2F2; color:#DC2626; }
.dr-cap__tag--sol { background:rgba(37,99,235,.1); color:var(--primary); }
.demoreel__dots { display:flex; gap:6px; padding:0 30px 20px; background:#F6F8FC; }
.dr-seg { flex:1; height:4px; border-radius:99px; background:var(--border); overflow:hidden; }
.dr-seg.is-on { background: var(--grad); }
/* scène chat */
.dr-chat { width:100%; max-width:440px; display:flex; flex-direction:column; gap:9px; }
.dr-bubble { padding:11px 14px; border-radius:14px; font-size:.84rem; max-width:88%; line-height:1.45; }
.dr-bubble--user { align-self:flex-end; background:var(--primary); color:#fff; border-bottom-right-radius:4px; }
.dr-bubble--ai { align-self:flex-start; background:#fff; border:1px solid var(--border); border-bottom-left-radius:4px; box-shadow:var(--shadow-sm); }
.dr-ai-tag { display:inline-block; font-size:.6rem; font-weight:800; color:#10A37F; text-transform:uppercase; letter-spacing:.06em; margin-bottom:6px; }
.dr-cite { font-size:.8rem; color:var(--ink-2); margin-top:3px; }
.dr-flag { align-self:flex-start; font-size:.76rem; font-weight:700; color:#DC2626; background:#FEF2F2; border:1px solid #FCA5A5; padding:6px 12px; border-radius:10px; }
/* scène diagnostic */
.dr-diag { display:flex; align-items:center; gap:30px; flex-wrap:wrap; justify-content:center; }
.dr-gauge { position:relative; width:124px; height:124px; border-radius:50%; flex:none;
  background:conic-gradient(var(--primary) calc(var(--p,82)*1%), var(--border) 0); display:grid; place-items:center; }
.dr-gauge::before { content:""; position:absolute; inset:13px; border-radius:50%; background:#F6F8FC; }
.dr-gauge__n { position:relative; text-align:center; line-height:1; }
.dr-gauge__n b { font-size:2rem; font-weight:800; letter-spacing:-.03em; }
.dr-gauge__n span { display:block; font-size:.66rem; color:var(--ink-3); margin-top:3px; }
.dr-engines { display:grid; gap:11px; min-width:220px; }
.dr-eng { display:grid; grid-template-columns:74px 1fr; align-items:center; gap:10px; font-size:.76rem; color:var(--ink-2); }
.dr-eng .bar { height:8px; background:var(--border); border-radius:99px; overflow:hidden; }
.dr-eng .bar i { display:block; height:100%; width:0; border-radius:99px; background:var(--grad); transition:width .9s var(--ease) .25s; }
.dr-scene.is-active .dr-eng .bar i { width:var(--w); }
/* scène benchmark */
.dr-bench { width:100%; max-width:420px; display:grid; gap:14px; }
.dr-bar { display:grid; grid-template-columns:108px 1fr 44px; align-items:center; gap:10px; font-size:.8rem; color:var(--ink-2); }
.dr-bar b { text-align:right; font-weight:700; }
.dr-bar .bar { height:10px; background:var(--border); border-radius:99px; overflow:hidden; }
.dr-bar .bar i { display:block; height:100%; width:0; border-radius:99px; background:#C7D6F4; transition:width .9s var(--ease) .25s; }
.dr-bar .bar i.you { background:var(--grad); }
.dr-scene.is-active .dr-bar .bar i { width:var(--w); }
/* scène plan */
.dr-plan { width:100%; max-width:440px; display:grid; gap:10px; }
.dr-rec { display:flex; align-items:center; gap:12px; background:#fff; border:1px solid var(--border); border-radius:12px; padding:12px 14px; font-size:.84rem; box-shadow:var(--shadow-sm); }
.dr-rec b { margin-left:auto; color:#059669; font-weight:800; }
.dr-pri { font-size:.6rem; font-weight:800; text-transform:uppercase; letter-spacing:.05em; padding:3px 8px; border-radius:7px; white-space:nowrap; }
.dr-pri--crit { background:#FEF2F2; color:#DC2626; }
.dr-pri--high { background:#FFF7ED; color:#EA580C; }
/* scène résultat */
.dr-result { text-align:center; width:100%; max-width:420px; }
.dr-result svg { width:100%; height:auto; }
.dr-result__line { stroke:#2563EB; stroke-width:3; fill:none; stroke-linecap:round; stroke-dasharray:420; stroke-dashoffset:420; }
.dr-scene.is-active .dr-result__line { transition:stroke-dashoffset 1.2s var(--ease) .2s; stroke-dashoffset:0; }
.dr-result__big { font-size:1.6rem; font-weight:800; letter-spacing:-.02em; margin-top:8px; }
.dr-result__big b { background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.dr-result__sub { font-size:.82rem; color:#059669; font-weight:600; }
@media (max-width:560px){ .demoreel__screen{height:420px;} .dr-diag{gap:18px;} }
@media (prefers-reduced-motion: reduce){ .dr-scene{position:relative;opacity:1;transform:none;} .demoreel__screen{height:auto;} }

/* ---------- FAQ ---------- */
.faq__list { display: grid; gap: 12px; }
.acc {
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.acc[open] { border-color: rgba(37,99,235,.35); box-shadow: var(--shadow-md); }
.acc summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-weight: 600; font-size: .98rem;
}
.acc summary::-webkit-details-marker { display: none; }
.acc__icon {
  position: relative; width: 22px; height: 22px; flex: none;
  border-radius: 7px; background: var(--bg-alt); border: 1px solid var(--border-soft);
}
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 10px; height: 1.8px; background: var(--primary);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease);
}
.acc__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc[open] .acc__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.acc__body { padding: 0 24px; overflow: hidden; }
.acc__body p { color: var(--ink-2); font-size: .94rem; padding-bottom: 22px; }

/* ---------- CTA final ---------- */
.cta { padding-bottom: 120px; }
.cta__box {
  position: relative; overflow: hidden;
  text-align: center;
  border-radius: 24px;
  padding: 88px 32px;
  background: linear-gradient(140deg, #0F172A 0%, #1E1B4B 55%, #312E81 100%);
  color: #fff;
  box-shadow: 0 40px 90px -30px rgba(15,23,42,.55);
}
.cta__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 25% 10%, rgba(37,99,235,.35), transparent 70%),
    radial-gradient(38% 55% at 78% 90%, rgba(124,58,237,.35), transparent 70%);
  animation: drift 12s ease-in-out infinite alternate;
}
.cta__box h2, .cta__box p, .cta__actions { position: relative; }
.cta__box h2 { max-width: 700px; margin: 0 auto 18px; }
.cta__box > p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 36px; font-size: 1.06rem; }
.cta__note { font-size: .82rem; color: rgba(255,255,255,.5) !important; margin-top: 22px !important; }

/* ---------- Footer ---------- */
.footer { background: #0F172A; color: #CBD5E1; padding: 72px 0 36px; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand p { margin-top: 16px; font-size: .88rem; color: #94A3B8; max-width: 280px; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.footer__social a:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.footer__social svg { width: 15px; height: 15px; fill: #CBD5E1; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.footer__col a { font-size: .9rem; color: #94A3B8; transition: color .25s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 28px; font-size: .8rem; color: #64748B;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .is-visible .vbar__fill, .vbar__fill { width: var(--w); }
  html { scroll-behavior: auto; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1080px) {
  .bigdash { grid-template-columns: 1fr; }
  .bigdash__side { flex-direction: row; flex-wrap: wrap; align-items: center; border-right: 0; border-bottom: 1px solid var(--border-soft); padding: 14px; }
  .bigdash__brand { margin: 0 12px 0 0; }
  .bigdash__row, .bigdash__row:last-child { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .section { padding: 80px 0; }
  .hero { padding: 64px 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__sub { max-width: none; }
  .dash3d__window { transform: none; }
  .dash3d:hover .dash3d__window { transform: none; }
  .dash3d__float--1 { top: -18px; right: 0; }
  .dash3d__float--2 { bottom: -18px; left: 0; }
  .problem__grid, .cases__grid, .quotes__grid { grid-template-columns: 1fr 1fr; }
  .feature { grid-template-columns: 1fr; gap: 32px; padding: 44px 0; }
  .feature--flip .feature__text { order: 1; }
  .feature--flip .feature__visual { order: 2; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { top: 0; bottom: 0; left: 25px; right: auto; width: 2px; height: auto;
    background: linear-gradient(180deg, rgba(37,99,235,.3), rgba(124,58,237,.3)); }
  .timeline__step { display: grid; grid-template-columns: 52px 1fr; gap: 0 20px; text-align: left; padding: 18px 0; }
  .timeline__num { margin: 0; grid-row: span 2; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .snapshot { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
  .chapters { grid-template-columns: 1fr; }
  .plan--pro { transform: none; }
  .plan--pro:hover { transform: translateY(-4px); }
  .nav__links, .nav__actions { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px;
    margin-left: auto; background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav__burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
  .nav.is-open .nav__links, .nav.is-open .nav__actions {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 16px 24px; gap: 14px;
  }
  .nav.is-open .nav__links { top: 68px; }
  .nav.is-open .nav__actions { top: 268px; padding-top: 0; }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .problem__grid, .cases__grid, .quotes__grid { grid-template-columns: 1fr; }
  .proof__stats { grid-template-columns: 1fr; }
  .bigdash__row, .bigdash__row:last-child { grid-template-columns: 1fr; }
  .table__row { grid-template-columns: 1fr; }
  .table__row > span { padding: 10px 18px; }
  .table__row > span:first-child { padding-top: 16px; font-weight: 700; }
  .table__row > span:last-child { padding-bottom: 16px; }
  .table__row--head { display: none; }
  .table__nx::before { content: "REPERA GEO · "; font-weight: 700; color: var(--primary); margin-right: 6px; }
  .table__row > span:nth-child(2)::before { content: "SEO · "; font-weight: 600; color: var(--ink-3); margin-right: 6px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__cta .btn { width: 100%; }
  .mock__row { flex-direction: column; align-items: flex-start; }
  .dash3d__body { grid-template-columns: 1fr; justify-items: center; }
  .dash3d__bars { width: 100%; }
  .cta__box { padding: 64px 20px; }
  .dash3d__float { position: static; animation: none; margin-top: 12px; }
  .dash3d__float--1 { margin-top: 16px; }
}

@media (min-width: 1700px) {
  .container { max-width: 1280px; }
}
