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

:root {
  --bg:   #03060e;
  --bg2:  #060d1a;
  --bg3:  #0a1628;
  --card: rgba(255,255,255,0.025);
  --border: rgba(255,255,255,0.06);
  --border-hi: rgba(16,136,248,0.3);
  --primary: #1088f8;
  --primary2: #0066cc;
  --primary-dim: rgba(16,136,248,0.08);
  --accent: #00e676;
  --text:  #eaf0fb;
  --text2: #94a3b8;
  --muted: #475569;
  --mono: 'JetBrains Mono', monospace;
  --g1: linear-gradient(135deg, #1088f8, #0066cc);
  --g2: linear-gradient(135deg, #1088f8, #60b8ff);
  --glow: 0 0 40px rgba(16,136,248,0.15);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,136,248,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,136,248,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient glow orbs */
.orb { position: fixed; border-radius: 50%; filter: blur(110px); pointer-events: none; z-index: 0; }
.o1 { width: 700px; height: 700px; background: #1088f8; opacity: 0.07; top: -250px; left: -200px; }
.o2 { width: 500px; height: 500px; background: #0044aa; opacity: 0.08; bottom: -150px; right: -100px; }
.o3 { width: 300px; height: 300px; background: #60b8ff; opacity: 0.05; top: 55%; left: 55%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.section { padding: 100px 0; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(16,136,248,0.02), transparent); }

/* GRADIENTS */
.g-text {
  background: var(--g2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 1px solid rgba(16,136,248,0.3);
  background: rgba(16,136,248,0.06);
  color: #60b8ff;
  margin-bottom: 20px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

/* SECTION HEADER */
.sh { text-align: center; margin-bottom: 64px; }
.sh h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  line-height: 1.1;
}
.sh p { font-size: 17px; color: var(--text2); max-width: 540px; margin: 0 auto; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 14px 0;
  background: rgba(3,6,14,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 34px; width: auto; filter: brightness(1.05); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; gap: 10px; align-items: center; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}
.btn-ghost {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.12); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(16,136,248,0.3);
}
.btn-primary:hover {
  background: var(--primary2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(16,136,248,0.4);
}
.btn-lg { padding: 13px 26px; font-size: 15px; border-radius: 10px; }
.btn-xl { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ─────────────── HERO ─────────────── */
.hero {
  padding: 120px 0 80px;
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
}
.hero-content { min-width: 0; }
.hero h1 {
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.hero-desc {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.trust-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.trust-logos { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.trust-co { font-size: 12px; font-weight: 800; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; opacity: 0.7; }

/* Live scan widget */
.scan-widget {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(16,136,248,0.18);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 0 0 1px rgba(16,136,248,0.06), 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(16,136,248,0.06);
  backdrop-filter: blur(8px);
}
.widget-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}
.w-dot { width: 10px; height: 10px; border-radius: 50%; }
.w-r { background: #ff5f57; }
.w-y { background: #febc2e; }
.w-g { background: #28c840; }
.widget-title { font-size: 11px; color: var(--muted); flex: 1; text-align: center; font-family: var(--mono); }
.scan-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--border);
  font-family: var(--mono);
  transition: all 0.3s;
}
.scan-row.active {
  background: rgba(16,136,248,0.06);
  border-color: rgba(16,136,248,0.18);
}
.s-status { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.s-done { background: var(--accent); }
.s-run { background: var(--primary); animation: blink 0.9s infinite; }
.s-wait { background: var(--muted); }
.s-name { flex: 1; color: var(--text2); }
.s-badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}
.sb-crit { background: rgba(239,68,68,0.12); color: #f87171; }
.sb-warn { background: rgba(251,191,36,0.1); color: #fbbf24; }
.sb-ok   { background: rgba(0,230,118,0.08); color: var(--accent); }
.sb-run  { color: var(--text2); }
.ai-box {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(16,136,248,0.06);
  border: 1px solid rgba(16,136,248,0.15);
  border-radius: 9px;
}
.ai-box-title { font-size: 11px; font-weight: 700; color: #60b8ff; margin-bottom: 3px; font-family: var(--mono); }
.ai-box-text  { font-size: 11px; color: var(--muted); font-family: var(--mono); }
.widget-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.wstat {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 10px 8px;
  text-align: center;
}
.wstat-num { font-size: 18px; font-weight: 800; letter-spacing: -0.5px; }
.wstat-lbl { font-size: 10px; color: var(--muted); margin-top: 2px; font-family: var(--mono); }

/* ─────────────── TICKER ─────────────── */
.ticker {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ticker-track {
  display: flex;
  gap: 40px;
  animation: slide 35s linear infinite;
  white-space: nowrap;
}
.ticker-item { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ticker-num { font-size: 22px; font-weight: 800; letter-spacing: -1px; }
.ticker-lbl { font-size: 13px; color: var(--text2); font-weight: 500; }
.ticker-sep { color: var(--border); font-size: 18px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────── HOW IT WORKS (Architecture) ─────────────── */
.arch-diagram {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding: 4px;
}
.arch-step {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.arch-step::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-100%);
  font-size: 18px;
  color: var(--primary);
  z-index: 2;
  font-weight: 700;
}
.arch-step:last-child::after { display: none; }
.arch-node {
  background: var(--card);
  border: 1px solid var(--border-hi);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  width: 100%;
  margin: 0 12px;
  transition: all 0.3s;
}
.arch-node:hover {
  background: rgba(16,136,248,0.04);
  border-color: rgba(16,136,248,0.4);
  box-shadow: 0 0 20px rgba(16,136,248,0.08);
  transform: translateY(-2px);
}
.arch-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.arch-title { font-size: 13px; font-weight: 700; margin-bottom: 5px; }
.arch-sub { font-size: 11px; color: var(--text2); line-height: 1.5; }

/* Code block pipeline */
.pipeline-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.ptab {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text2);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-family: var(--mono);
  border-radius: 6px 6px 0 0;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.ptab.active { color: var(--primary); border-bottom-color: var(--primary); }
.ptab:hover { color: var(--text); }
.code-panel {
  display: none;
  background: #010810;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 24px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.8;
  overflow-x: auto;
}
.code-panel.active { display: block; }
.c-comment { color: #475569; }
.c-key { color: #60b8ff; }
.c-val { color: #86efac; }
.c-str { color: #fde68a; }
.c-num { color: #f9a8d4; }
.c-kw  { color: #a78bfa; }
.code-wrap {
  background: #010810;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.code-bar {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.c-dot { width: 10px; height: 10px; border-radius: 50%; }
.c-r { background: #ff5f57; }
.c-y { background: #febc2e; }
.c-g { background: #28c840; }
.code-filename { font-size: 12px; color: var(--muted); font-family: var(--mono); flex: 1; text-align: center; }

/* ─────────────── SCANNERS TECHNICAL TABLE ─────────────── */
.scan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.scan-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.scan-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  vertical-align: middle;
}
.scan-table tr:hover td { background: rgba(16,136,248,0.02); }
.scan-table tr:last-child td { border-bottom: none; }
.scan-name-cell { font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 10px; }
.scan-emoji { font-size: 16px; }
.plan-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.pd-free { background: var(--accent); }
.pd-prem { background: var(--primary); }
.pd-ult  { background: #f59e0b; }
.plan-dots { display: flex; gap: 4px; }
.tech-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(16,136,248,0.06);
  border: 1px solid rgba(16,136,248,0.15);
  color: #60b8ff;
  margin: 1px;
}
.table-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.table-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.table-header h3 { font-size: 15px; font-weight: 700; }
.table-legend { display: flex; gap: 16px; }
.legend-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text2); }

/* ─────────────── TECH FEATURES GRID ─────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width:900px) { .tech-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px) { .tech-grid { grid-template-columns: 1fr; } }
.tech-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.25s;
}
.tech-card:hover {
  border-color: var(--border-hi);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}
.tech-icon { font-size: 26px; margin-bottom: 14px; display: block; }
.tech-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.tech-card p { font-size: 13px; color: var(--text2); line-height: 1.65; }
.tech-metrics {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(16,136,248,0.05);
  border: 1px solid rgba(16,136,248,0.1);
  border-radius: 8px;
  padding: 8px 14px;
  min-width: 60px;
}
.metric-val { font-size: 16px; font-weight: 800; letter-spacing: -0.5px; color: #60b8ff; }
.metric-lbl { font-size: 10px; color: var(--muted); white-space: nowrap; }

/* ─────────────── COMPLIANCE ─────────────── */
.comp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.comp-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  transition: all 0.2s;
}
.comp-pill:hover {
  border-color: var(--border-hi);
  color: #60b8ff;
  background: rgba(16,136,248,0.04);
  transform: translateY(-2px);
}

/* ─────────────── CLIENTS LOGOS ─────────────── */
.clients-section { padding: 72px 0; }
.logos-label { text-align: center; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); margin-bottom: 32px; }
.logos-marquee { overflow: hidden; position: relative; }
.logos-marquee::before,
.logos-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
.logos-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.logos-marquee::after  { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.logos-track {
  display: flex;
  gap: 40px;
  animation: slide 25s linear infinite;
  white-space: nowrap;
}
.co-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 100px;
  text-align: center;
  transition: all 0.2s;
}
.co-logo:hover { color: var(--text2); border-color: rgba(16,136,248,0.2); }

/* ─────────────── TESTIMONIALS ─────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width:768px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.25s;
}
.testi-card:hover {
  border-color: var(--border-hi);
  box-shadow: var(--glow);
}
.testi-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text2);
  margin-bottom: 20px;
  font-style: italic;
}
.testi-quote::before { content: '"'; color: var(--primary); font-size: 24px; font-style: normal; line-height: 0; vertical-align: -8px; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--g1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { font-size: 12px; color: var(--text2); }

/* ─────────────── TEAM ─────────────── */
.team-section { padding: 100px 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.advisors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width:900px) {
  .team-grid { grid-template-columns: 1fr; }
  .advisors-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:560px) { .advisors-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.25s;
}
.team-card:hover {
  border-color: var(--border-hi);
  box-shadow: var(--glow);
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--g1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  letter-spacing: -1px;
}
.team-info h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.3px; }
.team-role {
  font-size: 13px;
  font-weight: 700;
  color: #60b8ff;
  margin-bottom: 10px;
}
.team-bio { font-size: 13px; color: var(--text2); line-height: 1.65; margin-bottom: 14px; }
.team-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}
.team-link:hover { color: var(--primary); border-color: var(--border-hi); }
.advisor-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.25s;
}
.advisor-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
}
.adv-avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0a1628, #1088f8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: white;
  margin: 0 auto 12px;
  letter-spacing: -1px;
}
.adv-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.adv-role { font-size: 11px; color: var(--text2); line-height: 1.5; margin-bottom: 10px; }
.adv-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.adv-link:hover { color: var(--primary); }

/* ─────────────── PRICING ─────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width:768px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.price-card.featured {
  background: rgba(16,136,248,0.04);
  border-color: rgba(16,136,248,0.28);
  box-shadow: 0 0 60px rgba(16,136,248,0.07);
}
.price-pop {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--g1);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 16px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.price-tier { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text2); margin-bottom: 16px; }
.price-amt { font-size: 50px; font-weight: 900; letter-spacing: -2px; line-height: 1; margin-bottom: 6px; }
.price-cadence { font-size: 13px; color: var(--text2); margin-bottom: 28px; }
.price-divider { height: 1px; background: var(--border); margin: 20px 0; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-feats li { display: flex; gap: 9px; font-size: 13px; color: var(--text2); align-items: flex-start; }
.pf-ok { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.price-btn { display: block; width: 100%; text-align: center; justify-content: center; padding: 13px; border-radius: 9px; }

/* ─────────────── CTA ─────────────── */
.cta-wrap {
  background: linear-gradient(135deg, rgba(16,136,248,0.06), rgba(0,68,170,0.06));
  border: 1px solid rgba(16,136,248,0.15);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16,136,248,0.1), transparent);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
.cta-z { position: relative; z-index: 1; }
.cta-wrap h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.cta-wrap p { font-size: 17px; color: var(--text2); margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-footnote { margin-top: 20px; font-size: 12px; color: var(--muted); display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta-footnote span::before { content: '✓ '; color: var(--accent); font-weight: 700; }

/* ─────────────── FOOTER ─────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width:768px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-brand p { font-size: 13px; color: var(--text2); margin-top: 16px; max-width: 260px; line-height: 1.7; }
.foot-logo { display: flex; align-items: center; text-decoration: none; }
.foot-logo img { height: 30px; filter: brightness(1.05); }
.foot-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 13px; color: #334155; text-decoration: none; transition: color 0.15s; }
.foot-col a:hover { color: var(--primary); }
.foot-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-copy { font-size: 12px; color: var(--muted); }
.socials { display: flex; gap: 8px; }
.soc {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.15s;
}
.soc:hover { border-color: var(--border-hi); color: var(--primary); background: rgba(16,136,248,0.06); }

/* UTILITY */
.divider-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 700;
}
.divider-label::before, .divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width:1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .scan-widget { display: none; }
}
@media (max-width:768px) {
  .nav-links { display: none; }
  .nav-right  { display: none; }
  .section { padding: 70px 0; }
}

/* ─── HAMBURGER BUTTON ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: transform .28s ease, opacity .22s ease, background .2s;
}
.nav-hamburger.ham-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px);  background: var(--text); }
.nav-hamburger.ham-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.ham-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--text); }
@media (max-width:768px) { .nav-hamburger { display: flex; } }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; right: 0;
  top: 61px;   /* height of nav bar */
  bottom: 0;
  background: rgba(3,6,14,.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow-y: auto;
  z-index: 198;
  border-top: 1px solid var(--border);
  overscroll-behavior: contain;
}
.mobile-menu.mob-open { display: block; }
.mobile-menu-inner { padding: 8px 22px 56px; }

.mob-section-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 22px 0 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 2px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .15s;
}
.mobile-menu a:hover,
.mobile-menu a:active { color: var(--text); }

.mob-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.mob-cta .btn { width: 100%; padding: 13px; font-size: 15px; border-radius: 10px; }

/* ─── ARCHITECTURE DIAGRAM — MOBILE VERTICAL STACK ─── */
@media (max-width: 680px) {
  .arch-diagram {
    flex-direction: column;
    overflow-x: visible;
    gap: 0;
  }
  .arch-step {
    flex: none;
    width: 100%;
    min-width: 0;
  }
  /* Turn horizontal → arrow into vertical ↓ arrow */
  .arch-step::after {
    content: '↓';
    position: static;
    display: block;
    text-align: center;
    margin: 6px 0;
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    transform: none;
    top: auto;
    right: auto;
  }
  .arch-node { margin: 0; }
}

/* ─── SCANNER HUB DIAGRAM — MOBILE ─── */
/* Scale down node text/size on medium-small screens */
@media (max-width: 600px) {
  .hub-node { width: 68px; height: 50px; gap: 3px; }
  .hub-node img  { width: 32px; height: 32px; }
  .hub-node span { font-size: 8.5px; }
  .hub-center { width: 86px; height: 86px; }
  .hub-center-icon  { font-size: 20px; }
  .hub-center-title { font-size: 8.5px; }
}
/* Hide the orbital diagram entirely on phones; show simple grid instead */
@media (max-width: 480px) {
  .scanner-hub-wrap     { display: none !important; }
  .scanner-hub-fallback { display: grid !important; }
}

/* ─── PROFILE IMAGE SUPPORT ─── */
.team-avatar { overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block; }
.adv-avatar { overflow: hidden; }
.adv-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; }
.testi-avatar { overflow: hidden; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }

/* ─── SCANNER HUB DIAGRAM ─── */
.scanner-hub-section { padding: 100px 0; }
.scanner-hub-wrap {
  position: relative;
  width: 700px;
  height: 700px;
  margin: 0 auto;
  max-width: 100%;
}
.scanner-hub-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hub-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(16,136,248,0.07);
  border: 2px solid rgba(16,136,248,0.35);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  z-index: 10;
  box-shadow: 0 0 40px rgba(16,136,248,0.18), 0 0 80px rgba(16,136,248,0.08);
}
.hub-center-icon { font-size: 26px; margin-bottom: 4px; }
.hub-center-title { font-size: 10px; font-weight: 800; letter-spacing: 0.3px; color: #60b8ff; line-height: 1.3; }
.hub-node {
  position: absolute;
  width: 86px; height: 60px;
  background: var(--card);
  border: 1px solid var(--border-hi);
  border-radius: 10px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  transform: translate(-50%, -50%);
  z-index: 5;
  transition: all 0.25s;
  cursor: default;
}
.hub-node:hover {
  border-color: rgba(16,136,248,0.55);
  background: rgba(16,136,248,0.07);
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 20px rgba(16,136,248,0.18);
  z-index: 20;
}
.hub-node img { width: 32px; height: 32px; object-fit: contain; }
.hub-node span { font-size: 10px; font-weight: 700; color: var(--text2); }
@media (max-width: 760px) {
  .scanner-hub-wrap { width: 100%; height: auto; aspect-ratio: 1; }
}

/* ─── COMPLIANCE CARDS ─── */
.comp-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 640px) { .comp-cards-grid { grid-template-columns: 1fr; } }
.comp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.25s;
}
.comp-card:hover { border-color: var(--border-hi); box-shadow: var(--glow); transform: translateY(-2px); }
.comp-card-title { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.comp-card-desc { font-size: 13px; color: var(--text2); margin-bottom: 16px; line-height: 1.65; }
.comp-card-img { width: 100%; border-radius: 10px; border: 1px solid var(--border); display: block; }

/* ─── COMPANY LOGOS (image-based) ─── */
.co-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-shrink: 0;
  min-width: 90px;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.co-logo-wrap:hover { border-color: rgba(16,136,248,0.22); background: rgba(255,255,255,0.04); }
.co-logo-img {
  height: 22px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.2s;
}
.co-logo-wrap:hover .co-logo-img { opacity: 0.75; }

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.1; }
.contact-info p { font-size: 16px; color: var(--text2); line-height: 1.75; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(16,136,248,0.07);
  border: 1px solid rgba(16,136,248,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.contact-detail-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 3px; }
.contact-detail-val { font-size: 14px; color: var(--text2); }
.contact-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px;
  color: var(--text2); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: rgba(16,136,248,0.03);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-select option { background: #0a1628; }
.form-success {
  display: none;
  padding: 18px;
  background: rgba(0,230,118,0.06);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 10px;
  text-align: center;
  font-size: 14px; font-weight: 600;
  color: var(--accent);
  margin-top: 14px;
}
.form-error {
  display: none;
  padding: 12px 14px;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 8px;
  font-size: 13px;
  color: #f87171;
  margin-top: 10px;
}
.form-legal { font-size: 12px; color: var(--muted); margin: 12px 0 18px; line-height: 1.6; }
.form-legal a { color: var(--primary); text-decoration: none; }
.form-legal a:hover { text-decoration: underline; }
.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border-radius: 9px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(16,136,248,0.3);
}
.btn-submit:hover { background: var(--primary2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(16,136,248,0.4); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ─── NAV DROPDOWN ─────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.dd-caret {
  font-size: 9px;
  opacity: .55;
  transition: transform .25s;
  display: inline-block;
  line-height: 1;
}
.nav-dropdown:hover > a .dd-caret,
.nav-dd-open > a .dd-caret { transform: rotate(180deg); }

/* The outer wrapper sits flush at top:100% with padding-top as the
   "gap" — this keeps the hover zone connected so the menu never
   disappears while moving the cursor from the trigger to the menu. */
.nav-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding-top: 10px;   /* visual gap — hover area stays connected */
  z-index: 9999;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  /* prevent narrow viewports from clipping left edge */
  min-width: 520px;
}

/* JS adds .nav-dd-open to <li>; CSS :hover kept as fallback */
.nav-dd-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* The visible card lives inside the outer wrapper */
.nav-dd-inner {
  background: rgba(5, 12, 26, 0.97);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 10px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 28px 72px rgba(0,0,0,.55), 0 0 0 1px rgba(16,136,248,.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.nav-dd-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border-radius: 9px;
  text-decoration: none;
  color: rgba(148,163,184,.85);
  font-size: 13px;
  font-weight: 500;
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.nav-dd-item:hover {
  background: rgba(16,136,248,.08);
  color: #eaf0fb;
}
.nav-dd-icon {
  font-size: 14px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}
.nav-dd-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 4px 0;
}
.nav-dd-label {
  grid-column: 1 / -1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(148,163,184,.32);
  padding: 6px 11px 2px;
}

@media (max-width: 960px) {
  .nav-dropdown-menu { min-width: 300px; left: 0; transform: none; }
  .nav-dd-inner { grid-template-columns: 1fr; }
}

/* Testimonial LinkedIn link */
.testi-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  margin-top: 5px;
  transition: color 0.15s;
}
.testi-linkedin:hover { color: var(--primary); }

/* Extended testimonials grid */
.testi-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testi-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .testi-grid-3 { grid-template-columns: 1fr; } }

/* ── Cookie banner ─────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 760px;
  background: #0d1f3c;
  border: 1px solid rgba(16,136,248,.35);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  animation: cookieSlide .35s ease;
}
@keyframes cookieSlide {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
#cookie-banner p {
  color: #b0bdd4;
  font-size: .9rem;
  line-height: 1.5;
}
.cookie-actions button {
  white-space: nowrap;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
}
.cookie-actions button:hover { opacity: .85; }
@media (max-width: 560px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; bottom: 16px; }
}

/* ── FAQ tabs ── */
    .faq-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 40px;
      justify-content: center;
    }
    .faq-tab {
      padding: 7px 16px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.12);
      background: transparent;
      color: var(--text-muted, #8b9cb0);
      font-size: .8rem;
      font-weight: 500;
      cursor: pointer;
      transition: all .2s;
      font-family: inherit;
    }
    .faq-tab:hover {
      border-color: rgba(16,136,248,.5);
      color: var(--text, #e2eaf4);
    }
    .faq-tab.active {
      background: rgba(16,136,248,.15);
      border-color: rgba(16,136,248,.6);
      color: #60b8ff;
    }

    /* ── FAQ category label ── */
    .faq-cat-lbl {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-muted, #8b9cb0);
      padding: 32px 0 12px;
      border-top: 1px solid rgba(255,255,255,.06);
      margin-top: 8px;
    }
    .faq-cat-lbl:first-of-type {
      border-top: none;
      padding-top: 0;
    }

    /* ── FAQ item ── */
    .faq-item {
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 12px;
      background: rgba(255,255,255,.03);
      margin-bottom: 10px;
      overflow: hidden;
      transition: border-color .2s;
    }
    .faq-item[open],
    .faq-item:hover {
      border-color: rgba(16,136,248,.25);
    }
    .faq-item[open] {
      background: rgba(16,136,248,.04);
    }

    /* ── FAQ question (summary) ── */
    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 22px;
      font-size: .95rem;
      font-weight: 600;
      color: var(--text, #e2eaf4);
      cursor: pointer;
      list-style: none;
      user-select: none;
    }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q::after {
      content: '+';
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      font-weight: 400;
      color: #60b8ff;
      line-height: 1;
      text-align: center;
      transition: transform .25s, background .2s;
    }
    .faq-item[open] .faq-q::after {
      content: '−';
      background: rgba(16,136,248,.2);
      border-color: rgba(16,136,248,.4);
      transform: rotate(180deg);
    }

    /* ── FAQ answer ── */
    .faq-a {
      padding: 0 22px 20px;
      font-size: .88rem;
      line-height: 1.75;
      color: var(--text-muted, #8b9cb0);
    }
    .faq-a p { margin: 0 0 12px; }
    .faq-a p:last-child { margin-bottom: 0; }
    .faq-a ul, .faq-a ol {
      margin: 8px 0 12px 20px;
      padding: 0;
    }
    .faq-a li { margin-bottom: 6px; }
    .faq-a strong { color: var(--text, #e2eaf4); }
    .faq-a a { color: #60b8ff; text-decoration: none; }
    .faq-a a:hover { text-decoration: underline; }
    .faq-a code {
      background: rgba(255,255,255,.07);
      border-radius: 4px;
      padding: 1px 6px;
      font-family: 'JetBrains Mono', monospace;
      font-size: .82rem;
      color: #a8d8ff;
    }

    /* ── hidden items (filter) ── */
    .faq-item.faq-hidden,
    .faq-cat-lbl.faq-hidden {
      display: none;
    }

    @media (max-width: 600px) {
      .faq-q { font-size: .88rem; padding: 16px 16px; }
      .faq-a  { padding: 0 16px 16px; font-size: .84rem; }
      .faq-tabs { gap: 6px; }
      .faq-tab  { font-size: .75rem; padding: 6px 12px; }
    }