*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #08060f;
  --surface: #0f0c1a;
  --surface-2: #161225;
  --border: #1f1a30;
  --border-2: #2a2440;
  --accent: #7c3aed;
  --accent-mid: #6d28d9;
  --accent-light: #a78bfa;
  --accent-glow: rgba(124, 58, 237, 0.15);
  --accent-glow-strong: rgba(124, 58, 237, 0.28);
  --text: #ede9f8;
  --text-muted: #6b6090;
  --text-dim: #3d3460;
  --green: #10b981;
  --orange: #f59e0b;
  --red: #ef4444;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
}

[data-theme="light"] {
  --bg: #f5f3ff;
  --surface: #ffffff;
  --surface-2: #ede9fb;
  --border: #d8d0f5;
  --border-2: #c4baee;
  --accent: #7c3aed;
  --accent-mid: #6d28d9;
  --accent-light: #7c3aed;
  --accent-glow: rgba(124,58,237,0.07);
  --accent-glow-strong: rgba(124,58,237,0.14);
  --text: #0d0a1e;
  --text-muted: #5a5080;
  --text-dim: #c4baee;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Gradient text ── */
.grad {
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Header ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 70px;
  background: rgba(8, 6, 15, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

[data-theme="light"] header { background: rgba(245,243,255,0.9); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo__img {
  height: 38px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

nav { display: flex; align-items: center; gap: 40px; }

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 450;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

nav a:hover { color: var(--text); }

.nav__cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  box-shadow: 0 0 24px var(--accent-glow-strong);
  transition: opacity 0.2s !important;
}

.nav__cta:hover { opacity: 0.85; }

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}

.theme-toggle:hover { border-color: var(--accent); color: var(--accent-light); }

.icon-sun { display: none; }
[data-theme="light"] .icon-sun { display: block; }
[data-theme="light"] .icon-moon { display: none; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 35%, rgba(124,58,237,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 75%, rgba(109,40,217,0.10) 0%, transparent 55%),
    linear-gradient(170deg, var(--surface) 0%, var(--bg) 60%);
  pointer-events: none;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 40%, black 20%, transparent 100%);
}

.hero__inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 130px 64px 90px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 8px var(--accent-light);
}

.hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin-bottom: 22px;
  text-transform: none;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 500px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Dashboard mock ── */
.dashboard {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(124,58,237,0.1),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.dashboard__bar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.d-dot { width: 9px; height: 9px; border-radius: 50%; }
.d-dot:nth-child(1) { background: #ef4444; }
.d-dot:nth-child(2) { background: #f59e0b; }
.d-dot:nth-child(3) { background: #22c55e; }

.dashboard__bar-title {
  margin-left: 8px;
  font-size: 0.73rem;
  color: var(--text-muted);
  font-weight: 500;
}

.dashboard__kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.kpi {
  background: var(--surface);
  padding: 18px 22px;
}

.kpi__val {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.kpi__lbl { font-size: 0.73rem; color: var(--text-muted); }

.dashboard__feed {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.feed__head {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.feed__row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  background: var(--surface-2);
  border-radius: var(--radius);
  font-size: 0.79rem;
}

.f-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.feed__row span { flex: 1; color: var(--text-muted); }
.feed__row small { font-size: 0.7rem; color: var(--text-dim); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow-strong);
}

.btn--primary:hover { background: var(--accent-mid); transform: translateY(-1px); box-shadow: 0 8px 32px var(--accent-glow-strong); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}

.btn--ghost:hover { border-color: var(--accent); color: var(--accent-light); background: var(--accent-glow); }

/* ── Stats strip ── */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats-strip__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  padding: 48px 32px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-item__num {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item__label {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 220px;
}

/* ── Container ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 16px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}

/* ── Solutions ── */
.solutions { padding: 112px 0; }

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.sol-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.sol-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-light), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.sol-card:hover {
  border-color: rgba(124,58,237,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(124,58,237,0.12);
}

.sol-card:hover::after { opacity: 1; }

.sol-card__icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--accent-glow);
  border: 1px solid rgba(124,58,237,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-light);
  margin-bottom: 22px;
}

.sol-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.sol-card__badge--on {
  background: rgba(16,185,129,0.1);
  color: var(--green);
  border: 1px solid rgba(16,185,129,0.2);
}

.sol-card__badge--soon {
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.sol-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.sol-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.sol-card__list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.sol-card__list li {
  font-size: 0.81rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 9px;
}

.sol-card__list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-light);
  flex-shrink: 0;
}

/* ── Why ── */
.why {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 112px 0;
}

.why__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.why__points {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why__point {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.why__point:last-child { border-bottom: none; }
.why__point:hover { background: var(--surface-2); }

.why__idx { font-size: 0.7rem; font-weight: 700; color: var(--accent-light); padding-top: 3px; flex-shrink: 0; width: 20px; }
.why__point h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 4px; }
.why__point p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.metrics { display: flex; flex-direction: column; gap: 12px; }

.metric {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 18px;
  transition: border-color 0.2s;
}

.metric:hover { border-color: rgba(124,58,237,0.3); }

.metric__ico {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.metric__ico--v { background: var(--accent-glow); color: var(--accent-light); border: 1px solid rgba(124,58,237,0.2); }
.metric__ico--g { background: rgba(16,185,129,0.1); color: var(--green); border: 1px solid rgba(16,185,129,0.2); }
.metric__ico--r { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }

.metric__val {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.metric__lbl { font-size: 0.79rem; color: var(--text-muted); }

/* ── CTA ── */
.cta-section { padding: 112px 0; }

.cta-box {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, var(--accent-glow-strong) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--accent) 50%, transparent 90%);
  opacity: 0.6;
}

.cta-box h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.cta-box p { color: var(--text-muted); font-size: 1rem; margin-bottom: 44px; }

.cta-box__btns { display: flex; gap: 14px; justify-content: center; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy { font-size: 0.8rem; color: var(--text-muted); }

footer nav { display: flex; align-items: center; gap: 28px; }
footer nav a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
footer nav a:hover { color: var(--text); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.theme-transition * { transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s !important; }

/* ── Pricing (produits.html) ── */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.pricing__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: border-color 0.2s;
}

.pricing__card:hover { border-color: rgba(124,58,237,0.4); }

.pricing__card--featured {
  border-color: rgba(124,58,237,0.5);
  background: var(--surface-2);
}

.pricing__card--featured::before {
  content: 'Recommandé';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

.pricing__name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 12px; }
.pricing__price { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.05em; line-height: 1; margin-bottom: 4px; }
.pricing__price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0; }
.pricing__price--tbd { font-size: 1.4rem; color: var(--text-muted); }
.pricing__desc { font-size: 0.84rem; color: var(--text-muted); margin: 14px 0 24px; line-height: 1.6; padding-bottom: 24px; border-bottom: 1px solid var(--border); }

.pricing__features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.pricing__features li { font-size: 0.84rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 9px; }
.pricing__features li svg { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.pricing__features li.disabled { opacity: 0.35; }
.pricing__features li.disabled svg { color: var(--text-muted); }

.pricing__cta { display: block; text-align: center; padding: 11px; border-radius: var(--radius); font-size: 0.87rem; font-weight: 500; text-decoration: none; border: 1px solid var(--border-2); color: var(--text); transition: all 0.2s; }
.pricing__cta:hover { border-color: var(--accent); color: var(--accent-light); }
.pricing__cta--featured { background: var(--accent); color: #fff; border-color: var(--accent); }
.pricing__cta--featured:hover { background: var(--accent-mid); color: #fff; }

.product__status { display: inline-flex; align-items: center; gap: 6px; font-size: 0.76rem; color: var(--green); background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); padding: 4px 12px; border-radius: 99px; margin-bottom: 20px; }
.product__status::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.product__status--soon { color: var(--text-muted); background: var(--surface-2); border-color: var(--border); }
.product__status--soon::before { background: var(--text-muted); }

.faq__list { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 48px; }
.faq__item { border-bottom: 1px solid var(--border); padding: 24px 30px; }
.faq__item:last-child { border-bottom: none; }
.faq__q { font-size: 0.94rem; font-weight: 600; margin-bottom: 7px; }
.faq__a { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ── Quiz (quiz.html) ── */
.quiz-wrapper { min-height: 100vh; padding: 96px 24px 60px; display: flex; flex-direction: column; align-items: center; }

.intro { text-align: center; max-width: 580px; margin-bottom: 52px; }
.intro__badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border: 1px solid var(--border-2); border-radius: 99px; font-size: 0.76rem; color: var(--text-muted); margin-bottom: 22px; background: var(--surface); }
.intro h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 14px; }
.intro h1 span { color: var(--accent-light); }
.intro p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.7; margin-bottom: 30px; }

.progress-bar { width: 100%; max-width: 700px; margin-bottom: 28px; }
.progress-bar__meta { display: flex; justify-content: space-between; font-size: 0.77rem; color: var(--text-muted); margin-bottom: 7px; }
.progress-bar__track { height: 3px; background: var(--border); border-radius: 99px; overflow: hidden; }
.progress-bar__fill { height: 100%; background: var(--accent); border-radius: 99px; transition: width 0.4s ease; }

.email-card { width: 100%; max-width: 700px; background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; }
.email-card__toolbar { display: flex; align-items: center; gap: 6px; padding: 11px 16px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.email-card__dot { width: 9px; height: 9px; border-radius: 50%; }
.email-card__dot:nth-child(1) { background: #ef4444; }
.email-card__dot:nth-child(2) { background: #f59e0b; }
.email-card__dot:nth-child(3) { background: #22c55e; }
.email-card__label { margin-left: 8px; font-size: 0.73rem; color: var(--text-muted); }
.email-card__header { padding: 18px 26px; border-bottom: 1px solid var(--border); }
.email-card__row { display: flex; gap: 8px; font-size: 0.82rem; margin-bottom: 4px; }
.email-card__row:last-child { margin-bottom: 0; }
.email-card__key { color: var(--text-muted); min-width: 44px; flex-shrink: 0; }
.email-card__val { color: var(--text); }
.email-card__subject { padding: 14px 26px; border-bottom: 1px solid var(--border); font-size: 0.97rem; font-weight: 600; letter-spacing: -0.01em; }
.email-card__body { padding: 22px 26px; font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; }
.email-card__body p { margin-bottom: 10px; }
.email-card__body p:last-child { margin-bottom: 0; }
.email-link { color: var(--accent-light); text-decoration: underline; cursor: default; }
.email-badge { display: inline-block; font-size: 0.7rem; padding: 2px 8px; border-radius: 4px; font-weight: 500; }
.email-badge--warn { background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }

.quiz-actions { width: 100%; max-width: 700px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.quiz-btn { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 15px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; cursor: pointer; border: 1px solid var(--border-2); background: var(--surface); color: var(--text); transition: all 0.18s; }
.quiz-btn--phishing:hover { border-color: #ef4444; color: #ef4444; background: rgba(239,68,68,0.06); }
.quiz-btn--legit:hover { border-color: var(--green); color: var(--green); background: rgba(16,185,129,0.06); }

.feedback { width: 100%; max-width: 700px; border-radius: var(--radius); padding: 18px 22px; display: none; margin-bottom: 14px; font-size: 0.86rem; line-height: 1.6; }
.feedback--correct { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.22); color: #4ade80; }
.feedback--wrong { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.22); color: #f87171; }
.feedback__title { font-weight: 600; margin-bottom: 5px; }
.feedback__body { color: var(--text-muted); }
.feedback__signals { margin-top: 10px; display: flex; flex-direction: column; gap: 5px; }
.feedback__signal { display: flex; align-items: flex-start; gap: 7px; font-size: 0.8rem; color: var(--text-muted); }
.feedback__signal::before { content: '→'; color: var(--accent-light); flex-shrink: 0; }

.btn-next { display: none; width: 100%; max-width: 700px; padding: 13px; background: var(--accent); color: #fff; border: none; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: background 0.2s; margin-bottom: 48px; }
.btn-next:hover { background: var(--accent-mid); }

.score-screen { display: none; width: 100%; max-width: 700px; text-align: center; }
.score-screen.visible { display: block; }
.score-circle { width: 130px; height: 130px; border-radius: 50%; border: 2px solid var(--accent); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 28px; box-shadow: 0 0 40px var(--accent-glow-strong); }
.score-circle__num { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.05em; color: var(--accent-light); line-height: 1; }
.score-circle__label { font-size: 0.72rem; color: var(--text-muted); }
.score-screen h2 { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 10px; }
.score-screen > p { color: var(--text-muted); margin-bottom: 36px; font-size: 0.93rem; }

.score-recap { text-align: left; margin-bottom: 36px; }
.score-recap__title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 14px; }
.score-recap__list { display: flex; flex-direction: column; gap: 1px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.recap-item { display: flex; align-items: center; gap: 10px; padding: 12px 18px; background: var(--surface); font-size: 0.83rem; }
.recap-item__icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.68rem; }
.recap-item__icon--ok { background: rgba(16,185,129,0.12); color: #4ade80; }
.recap-item__icon--ko { background: rgba(239,68,68,0.12); color: #f87171; }
.recap-item__subject { flex: 1; color: var(--text); }
.recap-item__type { font-size: 0.72rem; padding: 2px 10px; border-radius: 99px; }
.recap-item__type--phishing { background: rgba(239,68,68,0.1); color: #f87171; }
.recap-item__type--legit { background: rgba(16,185,129,0.1); color: #4ade80; }

.score-cta { background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--radius-lg); padding: 36px; position: relative; overflow: hidden; }
.score-cta::before { content: ''; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); width: 300px; height: 200px; background: radial-gradient(ellipse, var(--accent-glow-strong) 0%, transparent 70%); pointer-events: none; }
.score-cta h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 9px; }
.score-cta p { color: var(--text-muted); font-size: 0.86rem; margin-bottom: 22px; line-height: 1.6; }
.score-cta__actions { display: flex; gap: 10px; justify-content: center; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  header { padding: 0 24px; }
  nav { display: none; }
  .hero__inner { grid-template-columns: 1fr; padding: 130px 24px 64px; }
  .dashboard { display: none; }
  .stats-strip__grid { grid-template-columns: 1fr; padding: 0 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 0; }
  .stat-item:last-child { border-bottom: none; }
  .container { padding: 0 24px; }
  .solutions__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .why__layout { grid-template-columns: 1fr; gap: 48px; }
  .cta-box { padding: 48px 28px; }
  .cta-box__btns { flex-direction: column; align-items: center; }
  footer { flex-direction: column; gap: 20px; padding: 32px 24px; text-align: center; }
  .quiz-actions { grid-template-columns: 1fr; }
  .score-cta__actions { flex-direction: column; }
}
