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

:root {
  --bg: #08080d;
  --bg-surface: #0e0e16;
  --bg-surface-2: #14141f;
  --bg-card: #111119;
  --text: #eaeaf0;
  --text-secondary: #a0a0b8;
  --text-dim: #55556e;
  --accent: #6366f1;
  --accent-hover: #7c7ff5;
  --gradient-start: #3b82f6;
  --gradient-mid: #6366f1;
  --gradient-end: #8b5cf6;
  --green: #22c55e;
  --border: #1a1a2a;
  --border-accent: #2a2a44;
  --glow: rgba(99, 102, 241, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8, 8, 13, 0.9);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 20px; text-decoration: none; color: var(--text);
  letter-spacing: -0.02em;
}
.logo-shield {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  clip-path: polygon(50% 0%, 100% 15%, 95% 65%, 50% 100%, 5% 65%, 0% 15%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.logo-shield::after {
  content: '';
  width: 8px; height: 8px; background: #fff; border-radius: 50%;
  position: absolute; top: 35%;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 15px;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-btn {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)) !important;
  color: #fff !important; padding: 10px 24px; border-radius: 10px;
  font-weight: 600 !important; font-size: 14px !important;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px var(--glow); }
.mobile-toggle {
  display: none; background: none; border: none; color: var(--text);
  font-size: 26px; cursor: pointer;
}

/* === HERO === */
.hero {
  padding: 180px 32px 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.15) 0%, transparent 100%),
    radial-gradient(ellipse 60% 40% at 50% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.12));
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 8px 20px; border-radius: 100px; font-size: 14px;
  color: var(--accent-hover); margin-bottom: 40px; font-weight: 500;
}
.hero h1 {
  font-size: 72px; font-weight: 800; line-height: 1.05;
  letter-spacing: -0.04em; margin-bottom: 28px;
}
.hero h1 .line2 {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 20px; color: var(--text-secondary); max-width: 580px;
  margin: 0 auto 48px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: #fff; padding: 16px 40px; border-radius: 12px;
  font-size: 17px; font-weight: 700; text-decoration: none;
  transition: all 0.3s; box-shadow: 0 8px 32px var(--glow);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 48px rgba(99, 102, 241, 0.25); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-accent);
  color: var(--text); padding: 16px 40px; border-radius: 12px;
  font-size: 17px; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.btn-hero-secondary:hover { border-color: var(--accent); background: rgba(99, 102, 241, 0.05); }
.hero-note {
  margin-top: 24px; font-size: 14px; color: var(--text-dim);
  position: relative;
}
.hero-stats {
  margin-top: 64px;
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-size: 36px; font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 14px; color: var(--text-dim); margin-top: 4px; }
.counter { display: inline-block; }

/* === SOCIAL PROOF === */
.social-proof {
  padding: 80px 32px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.social-inner { max-width: 1200px; margin: 0 auto; }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.testimonial-stars { color: #facc15; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: #fff;
}
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--text-dim); }

/* === SECTIONS === */
section { padding: 120px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.section-title {
  font-size: 44px; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px; color: var(--text-secondary); max-width: 560px;
  margin: 0 auto; line-height: 1.7;
}

/* === FEATURES === */
.feature-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 32px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 24px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* === HOW IT WORKS === */
.how-section { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  position: relative;
}
.steps-row::before {
  content: ''; position: absolute;
  top: 48px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  opacity: 0.2;
}
.step-card { text-align: center; position: relative; z-index: 2; }
.step-number {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 800; color: #fff;
  margin: 0 auto 24px;
  box-shadow: 0 0 48px var(--glow);
}
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-width: 280px; margin: 0 auto; }

/* === PRIVACY === */
.privacy-hero {
  position: relative; text-align: center;
  padding: 120px 32px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 100%);
}
.privacy-hero .big-lock {
  font-size: 64px; margin-bottom: 32px;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3)); }
  50% { filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.6)); }
}
.comparison-table {
  max-width: 800px; margin: 48px auto 0;
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.comparison-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row.header { background: var(--bg-surface-2); }
.comparison-cell {
  padding: 16px 24px; font-size: 14px;
  display: flex; align-items: center;
}
.comparison-row.header .comparison-cell { font-weight: 700; font-size: 15px; }
.comparison-cell:not(:first-child) { justify-content: center; }
.check-yes { color: var(--green); font-size: 18px; }
.check-no { color: #ef4444; font-size: 18px; }
.privacy-checklist {
  max-width: 620px; margin: 56px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px;
  text-align: left;
}
.privacy-check-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.5;
}
.privacy-check-icon {
  color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 3px;
  font-weight: 700;
}

/* === PRICING === */
.pricing-section { background: var(--bg-surface); border-top: 1px solid var(--border); }
.pricing-toggle-wrap {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 48px;
}
.pricing-toggle-wrap span { font-size: 15px; color: var(--text-dim); font-weight: 500; }
.pricing-toggle-wrap span.active { color: var(--text); }
.p-toggle {
  width: 52px; height: 28px; border-radius: 14px;
  background: var(--border-accent); position: relative;
  cursor: pointer; transition: background 0.2s;
}
.p-toggle.on { background: var(--accent); }
.p-toggle-knob {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; position: absolute; top: 3px; left: 3px;
  transition: left 0.2s;
}
.p-toggle.on .p-toggle-knob { left: 27px; }
.save-tag {
  background: rgba(34, 197, 94, 0.12); color: var(--green);
  padding: 4px 12px; border-radius: 100px; font-size: 13px; font-weight: 700;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  max-width: 820px; margin: 0 auto;
}
.price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: all 0.3s;
}
.price-card.highlight {
  border-color: var(--accent);
  box-shadow: 0 0 80px var(--glow);
}
.price-card.highlight::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}
.price-tier { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.price-popular {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: #fff; padding: 4px 12px; border-radius: 6px; font-size: 12px; font-weight: 700;
}
.price-amount {
  font-size: 56px; font-weight: 800; letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 4px;
}
.price-amount .dollar { font-size: 28px; vertical-align: top; }
.price-amount .cents { font-size: 28px; }
.price-period { font-size: 14px; color: var(--text-dim); margin-bottom: 8px; }
.price-note { font-size: 13px; color: var(--text-dim); margin-bottom: 32px; }
.price-features { list-style: none; margin-bottom: 36px; }
.price-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-secondary); padding: 8px 0;
}
.price-features li .icon { color: var(--accent); }
.btn-price {
  display: block; width: 100%; text-align: center;
  padding: 16px; border-radius: 12px; font-size: 16px;
  font-weight: 700; text-decoration: none; transition: all 0.3s;
}
.btn-price.fill {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: #fff;
}
.btn-price.fill:hover { box-shadow: 0 8px 32px var(--glow); transform: translateY(-2px); }
.btn-price.outline {
  background: transparent; border: 1px solid var(--border-accent); color: var(--text);
}
.btn-price.outline:hover { border-color: var(--accent); }

/* === FAQ === */
.faq-section { padding: 120px 32px; }
.faq-grid { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: 14px;
  margin-bottom: 12px; overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-accent); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer;
  background: none; border: none; color: var(--text);
  font-size: 16px; font-weight: 600; text-align: left; width: 100%;
}
.faq-q .chevron {
  font-size: 12px; color: var(--text-dim); transition: transform 0.3s;
}
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }
.faq-a p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* === LEGAL === */
.legal-section {
  padding: 80px 32px; border-top: 1px solid var(--border);
}
.legal-inner { max-width: 720px; margin: 0 auto; }
.legal-inner h2 {
  font-size: 32px; font-weight: 800; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.legal-inner .legal-date { font-size: 14px; color: var(--text-dim); margin-bottom: 32px; }
.legal-inner h3 { font-size: 18px; font-weight: 700; margin: 28px 0 12px; }
.legal-inner p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.legal-inner ul { padding-left: 20px; margin-bottom: 12px; }
.legal-inner li { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 8px; }
.legal-inner a { color: var(--accent-hover); }

/* === CTA BANNER === */
.cta-banner {
  text-align: center; padding: 100px 32px;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 100%);
  position: relative;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 100%);
  pointer-events: none;
}
.cta-banner h2 { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 18px; color: var(--text-secondary); margin-bottom: 36px; position: relative; }

/* === FOOTER === */
footer {
  background: var(--bg-surface); border-top: 1px solid var(--border);
  padding: 56px 32px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand p { font-size: 13px; color: var(--text-dim); margin-top: 16px; line-height: 1.7; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-dim); text-decoration: none; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-dim); flex-wrap: wrap; gap: 16px;
}

/* === ABOUT PAGE === */
.about-hero {
  padding: 160px 32px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero .hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.12) 0%, transparent 100%),
    radial-gradient(ellipse 60% 40% at 50% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 100%);
  pointer-events: none;
}
.about-content {
  max-width: 760px; margin: 0 auto; padding: 0 32px 80px;
}
.about-content h2 {
  font-size: 28px; font-weight: 800; letter-spacing: -0.02em;
  margin: 56px 0 20px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-content p {
  font-size: 17px; color: var(--text-secondary); line-height: 1.85;
  margin-bottom: 20px;
}
.about-content .highlight-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin: 32px 0;
}
.about-content .highlight-box p {
  font-size: 18px; font-weight: 500; color: var(--text);
  font-style: italic; margin: 0;
}
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin: 32px 0;
}
.about-value {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.about-value-icon { font-size: 28px; margin-bottom: 12px; }
.about-value h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.about-value p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin: 0; }
.about-family-stat {
  display: flex; align-items: center; gap: 24px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 32px 0;
}
.about-family-stat .big-num {
  font-size: 56px; font-weight: 800;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-family-stat .stat-text {
  font-size: 17px; color: var(--text-secondary); line-height: 1.6;
}
.about-family-stat .stat-text strong {
  color: var(--text); font-weight: 700;
}

/* === PAGE HERO (for non-home pages) === */
.page-hero {
  padding: 140px 32px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.12) 0%, transparent 100%),
    radial-gradient(ellipse 60% 40% at 50% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 100%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: 48px; font-weight: 800; letter-spacing: -0.03em;
  position: relative; z-index: 2; margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px; color: var(--text-secondary);
  position: relative; z-index: 2; max-width: 560px; margin: 0 auto;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(8, 8, 13, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column; padding: 24px 32px; gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.show { display: flex; }
  .mobile-toggle { display: block; }
  .hero { padding: 140px 24px 100px; }
  .hero h1 { font-size: 44px; }
  .hero p { font-size: 17px; }
  .hero-stats { gap: 32px; }
  .feature-cards { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 40px; }
  .steps-row::before { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .comparison-row { grid-template-columns: 1fr 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .privacy-checklist { grid-template-columns: 1fr; }
  section { padding: 80px 24px; }
  .section-title { font-size: 32px; }
  .page-hero h1 { font-size: 36px; }
  .about-values { grid-template-columns: 1fr; }
  .about-family-stat { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero { padding: 140px 20px 80px; }
  .hero h1 { font-size: 36px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .comparison-cell { padding: 12px 16px; font-size: 13px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 28px; }
}
