/* ============================================
   VOXA by Riskora — Design System
   Palette: Deep navy + Electric cyan + Signal amber
   Type: Syne (display) + Inter (body)
   Signature: Animated pulse rings on score elements
============================================ */

:root {
  --navy-950: #060d1a;
  --navy-900: #0a1628;
  --navy-800: #0f2040;
  --navy-700: #162b54;
  --navy-600: #1e3a6e;
  --cyan-500: #00d4ff;
  --cyan-400: #33ddff;
  --cyan-300: #80eaff;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --green-500: #10b981;
  --red-500: #ef4444;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --white: #f8fafc;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6, 13, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo-voxa {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--cyan-500);
  letter-spacing: -0.5px;
}
.logo-by {
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  color: var(--slate-300);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--cyan-500);
  color: var(--navy-950);
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-display);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav:hover { background: var(--cyan-400); transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  padding: 160px 24px 100px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--cyan-400);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--cyan-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(0,212,255,0.4); }
  50% { opacity: 0.8; transform: scale(1.1); box-shadow: 0 0 0 6px rgba(0,212,255,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: var(--white);
}
.hero-title em {
  font-style: normal;
  color: var(--cyan-500);
  position: relative;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--slate-300);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.btn-primary {
  background: var(--cyan-500);
  color: var(--navy-950);
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 15px;
  transition: all var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: var(--cyan-400); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,212,255,0.25); }
.btn-large { padding: 20px 44px; font-size: 17px; }
.btn-ghost {
  background: transparent;
  color: var(--slate-300);
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ---- SEARCH ---- */
.search-section {
  background: var(--navy-900);
  border-top: 1px solid rgba(0,212,255,0.1);
  border-bottom: 1px solid rgba(0,212,255,0.1);
  padding: 60px 24px;
}
.search-label {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-500);
  font-weight: 600;
  margin-bottom: 20px;
}
.search-box {
  display: flex;
  max-width: 680px;
  margin: 0 auto;
  gap: 0;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  transition: border-color var(--transition);
}
.search-box:focus-within { border-color: var(--cyan-500); }
.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 18px 24px;
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
}
.search-box input::placeholder { color: var(--slate-400); }
.btn-search {
  background: var(--cyan-500);
  color: var(--navy-950);
  border: none;
  padding: 18px 28px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.btn-search:hover { background: var(--cyan-400); }
.search-result {
  max-width: 680px;
  margin: 24px auto 0;
  background: var(--navy-800);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius);
  padding: 28px;
}
.search-result.hidden { display: none; }
.result-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.result-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.result-score-wrap { text-align: right; }
.result-score { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--cyan-500); line-height: 1; }
.result-score-label { font-size: 12px; color: var(--slate-400); }
.result-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 16px; overflow: hidden; }
.result-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--cyan-500), var(--cyan-300)); transition: width 1s cubic-bezier(0.4,0,0.2,1); }
.result-summary { font-size: 14px; color: var(--slate-300); margin-bottom: 16px; }
.result-cta { font-size: 13px; color: var(--cyan-400); text-decoration: none; font-weight: 600; }
.result-cta:hover { color: var(--cyan-300); }

/* ---- HOW ---- */
.how-section { padding: 120px 24px; }
.section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan-500);
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 64px;
}
.section-sub {
  text-align: center;
  color: var(--slate-300);
  font-size: 17px;
  margin-top: -44px;
  margin-bottom: 64px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.how-card {
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.how-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-4px); }
.how-card--accent {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,212,255,0.02));
  border-color: rgba(0,212,255,0.2);
}
.how-icon { font-size: 28px; margin-bottom: 12px; color: var(--cyan-500); }
.how-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.how-card p { font-size: 14px; color: var(--slate-300); line-height: 1.7; }

/* ---- DEMO DASHBOARD ---- */
.demo-section {
  padding: 120px 24px;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.dashboard {
  background: var(--navy-800);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,212,255,0.05);
}
.dash-header {
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.02);
}
.dash-institution { display: flex; align-items: center; gap: 14px; }
.dash-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--cyan-500), var(--navy-600));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 18px;
  color: var(--navy-950);
}
.dash-name { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.dash-meta { font-size: 12px; color: var(--slate-400); margin-top: 2px; }
.dash-period { display: flex; gap: 4px; }
.period-btn {
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 6px;
  color: var(--slate-400);
  cursor: pointer;
  transition: all var(--transition);
}
.period-btn.active { background: rgba(0,212,255,0.15); color: var(--cyan-400); }
.dash-score-row {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dash-score-main {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.score-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-400); margin-bottom: 16px; }
.score-ring { position: relative; width: 120px; height: 120px; margin-bottom: 16px; }
.ring-svg { transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 10; }
.ring-fill { fill: none; stroke: var(--cyan-500); stroke-width: 10; stroke-linecap: round; filter: drop-shadow(0 0 8px rgba(0,212,255,0.5)); }
.score-value {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: baseline; gap: 2px;
}
.score-num { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
.score-max { font-size: 13px; color: var(--slate-400); }
.score-badge {
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 8px;
}
.score-badge.warning { background: rgba(245,158,11,0.15); color: var(--amber-400); border: 1px solid rgba(245,158,11,0.2); }
.score-change { font-size: 12px; }
.score-change.negative { color: var(--red-500); }
.score-change.positive { color: var(--green-500); }
.dash-metrics { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.metric-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}
.metric-icon { font-size: 10px; flex-shrink: 0; }
.metric-icon.positive { color: var(--green-500); }
.metric-icon.negative { color: var(--red-500); }
.metric-icon.neutral { color: var(--slate-400); }
.metric-icon.alert { color: var(--amber-500); }
.metric-body { flex: 1; }
.metric-label { font-size: 12px; color: var(--slate-400); margin-bottom: 4px; }
.metric-value { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.metric-bar { height: 4px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; }
.metric-fill { height: 100%; border-radius: 2px; }
.metric-fill.positive { background: var(--green-500); }
.metric-fill.negative { background: var(--red-500); }
.metric-fill.neutral { background: var(--slate-400); }
.metric-fill.alert { background: var(--amber-500); }
.dash-benchmark {
  padding: 24px;
  border-left: 1px solid rgba(255,255,255,0.07);
}
.bench-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-400); margin-bottom: 20px; font-weight: 600; }
.bench-list { display: flex; flex-direction: column; gap: 14px; }
.bench-item { display: grid; grid-template-columns: 110px 1fr 32px; align-items: center; gap: 10px; }
.bench-name { font-size: 12px; color: var(--slate-300); }
.bench-bar-wrap { height: 6px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.bench-bar { height: 100%; border-radius: 3px; }
.bench-bar.you { background: linear-gradient(90deg, var(--cyan-500), var(--cyan-300)); }
.bench-bar.avg { background: var(--slate-400); }
.bench-bar.best { background: var(--green-500); }
.bench-bar.worst { background: var(--red-500); }
.bench-score { font-size: 13px; font-weight: 700; text-align: right; color: var(--slate-300); }
.bench-score.you-score { color: var(--cyan-400); }
.dash-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.dash-alerts { padding: 28px; border-right: 1px solid rgba(255,255,255,0.07); }
.alerts-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.alert-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.alert-item:last-child { border-bottom: none; }
.alert-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px;
}
.alert-item.critical .alert-dot { background: var(--red-500); box-shadow: 0 0 8px rgba(239,68,68,0.5); }
.alert-item.warning .alert-dot { background: var(--amber-500); }
.alert-item.positive .alert-dot { background: var(--green-500); }
.alert-body { flex: 1; }
.alert-text { font-size: 13px; color: var(--white); line-height: 1.4; margin-bottom: 4px; }
.alert-meta { font-size: 11px; color: var(--slate-400); }
.alert-impact { font-family: var(--font-display); font-size: 13px; font-weight: 700; flex-shrink: 0; }
.alert-item.critical .alert-impact { color: var(--red-500); }
.alert-item.warning .alert-impact { color: var(--amber-400); }
.alert-item.positive .alert-impact { color: var(--green-500); }
.dash-roadmap { padding: 28px; }
.roadmap-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.roadmap-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.roadmap-item:last-of-type { border-bottom: none; }
.roadmap-tag {
  font-size: 10px; font-weight: 800; padding: 4px 10px;
  border-radius: 100px; flex-shrink: 0; margin-top: 2px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.tag-30 { background: rgba(0,212,255,0.15); color: var(--cyan-400); }
.tag-60 { background: rgba(245,158,11,0.15); color: var(--amber-400); }
.tag-90 { background: rgba(16,185,129,0.15); color: var(--green-500); }
.roadmap-text { font-size: 13px; color: var(--slate-300); line-height: 1.5; }
.roadmap-proyection {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 10px;
  font-size: 13px;
  color: var(--slate-300);
}
.proj-score { color: var(--cyan-400); font-size: 20px; }

/* ---- VERTICALS ---- */
.verticals-section { padding: 120px 24px; }
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.vertical-card {
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
}
.vertical-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-4px); }
.vertical-card.active { border-color: rgba(0,212,255,0.25); background: linear-gradient(135deg, rgba(0,212,255,0.06), var(--navy-900)); }
.vertical-icon { font-size: 32px; margin-bottom: 16px; }
.vertical-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.vertical-card p { font-size: 13px; color: var(--slate-300); line-height: 1.7; margin-bottom: 16px; }
.vertical-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(0,212,255,0.15); color: var(--cyan-400);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.vertical-tag.coming { background: rgba(148,163,184,0.1); color: var(--slate-400); }

/* ---- PRICING ---- */
.pricing-section {
  padding: 120px 24px;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: border-color var(--transition);
}
.price-card.featured {
  border-color: var(--cyan-500);
  background: linear-gradient(135deg, rgba(0,212,255,0.06), var(--navy-800));
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--cyan-500); color: var(--navy-950);
  font-size: 11px; font-weight: 800;
  padding: 4px 16px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.04em;
  white-space: nowrap;
}
.price-name {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--slate-400);
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800;
  color: var(--white); line-height: 1;
  margin-bottom: 4px;
}
.price-period { font-size: 12px; color: var(--slate-400); margin-bottom: 28px; }
.price-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 13px; color: var(--slate-300); }
.price-features li.muted { color: rgba(148,163,184,0.4); }
.btn-price-primary {
  display: block; text-align: center;
  background: var(--cyan-500); color: var(--navy-950);
  padding: 14px; border-radius: 8px;
  text-decoration: none; font-weight: 700;
  font-family: var(--font-display); font-size: 13px;
  transition: all var(--transition);
}
.btn-price-primary:hover { background: var(--cyan-400); transform: translateY(-1px); }
.btn-price-ghost {
  display: block; text-align: center;
  background: transparent; color: var(--slate-300);
  padding: 14px; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 13px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.btn-price-ghost:hover { border-color: rgba(255,255,255,0.25); color: var(--white); }

/* ---- CTA FINAL ---- */
.cta-section { padding: 120px 24px; }
.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--navy-900);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}
.cta-pulse {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -1px;
  margin-bottom: 16px; position: relative;
}
.cta-box p {
  color: var(--slate-300); font-size: 16px;
  margin-bottom: 36px; position: relative;
}
.cta-sub {
  margin-top: 20px; font-size: 13px;
  color: var(--slate-400); position: relative;
}
.cta-sub a { color: var(--cyan-400); text-decoration: none; }
.cta-sub a:hover { color: var(--cyan-300); }

/* ---- FOOTER ---- */
.footer {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 60px 24px 32px;
}
.footer-inner { display: flex; gap: 80px; flex-wrap: wrap; margin-bottom: 48px; }
.footer-brand { max-width: 260px; }
.footer-brand .logo-voxa { font-size: 28px; }
.footer-brand p { font-size: 13px; color: var(--slate-400); margin-top: 12px; line-height: 1.6; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; flex: 1; justify-content: flex-end; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-400); font-weight: 700; margin-bottom: 4px; }
.footer-col a { color: var(--slate-300); text-decoration: none; font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px; color: var(--slate-400);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .dash-score-row { grid-template-columns: 1fr; }
  .dash-benchmark { border-left: none; border-top: 1px solid rgba(255,255,255,0.07); }
  .dash-bottom { grid-template-columns: 1fr; }
  .dash-alerts { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { justify-content: flex-start; }
  .hero { padding: 120px 24px 80px; }
}
@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .search-box { flex-direction: column; border-radius: var(--radius); }
  .search-box input { border-radius: var(--radius) var(--radius) 0 0; }
  .btn-search { border-radius: 0 0 var(--radius) var(--radius); text-align: center; }
  .cta-box { padding: 48px 24px; }
}
