:root {
  --bg: #0a0e1a;
  --bg-surface: #111827;
  --bg-elevated: #1a2235;
  --fg: #f1f5f9;
  --fg-muted: #94a3b8;
  --fg-subtle: #64748b;
  --accent: #f59e0b;
  --accent-dim: #d97706;
  --border: rgba(255,255,255,0.08);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.navbar-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* Section common */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero */
.hero {
  padding: 140px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-compatibility {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.compat-label {
  font-size: 0.78rem;
  color: var(--fg-subtle);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compat-item {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Email mockup */
.hero-email-mockup {
  position: relative;
}
.email-window {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.email-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.email-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--fg-subtle);
  opacity: 0.4;
}
.email-body {
  padding: 20px 24px;
}
.email-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.email-from {
  display: flex;
  align-items: center;
  gap: 10px;
}
.email-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
  flex-shrink: 0;
}
.email-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}
.email-title {
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.email-date {
  font-size: 0.72rem;
  color: var(--fg-subtle);
  margin-top: 4px;
}
.email-subject {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.email-preview {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.email-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.email-content p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.email-signature-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.sig-thumbnail-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-elevated);
}
.sig-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sig-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sig-play-btn {
  width: 28px;
  height: 28px;
  background: rgba(245, 158, 11, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: white;
  padding-left: 3px;
}
.sig-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: white;
  background: var(--accent);
  padding: 1px 4px;
  border-radius: 3px;
}
.sig-details {
  padding-top: 2px;
}
.sig-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
}
.sig-role {
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-top: 1px;
}
.sig-contact {
  font-size: 0.7rem;
  color: var(--fg-subtle);
  margin-top: 4px;
}
.sig-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.sig-social span {
  font-size: 0.65rem;
  color: var(--fg-subtle);
  border-bottom: 1px solid var(--fg-subtle);
  padding-bottom: 1px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 14px 16px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* How it works */
.how-it-works {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 32px;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.step-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  flex-shrink: 0;
  margin-top: 36px;
}
.compat-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--fg-subtle);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}
.compat-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Why it matters */
.why-it-matters {
  padding: 100px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-lead {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 20px 0 36px;
}
.why-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.why-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.why-stat-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
}
.why-source {
  font-size: 0.72rem;
  color: var(--fg-subtle);
  margin-top: 16px;
}
.why-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 16px;
}
.why-card-spacer { height: 16px; }
.why-card-quote p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-style: italic;
}
.why-card-attr {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.attr-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
  flex-shrink: 0;
}
.attr-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg);
}
.attr-role {
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.why-card-elevated {
  border-color: rgba(245, 158, 11, 0.15);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
}
.why-card-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.metric-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}
.metric-label {
  font-size: 0.88rem;
  color: var(--fg-muted);
}
.why-card-context {
  font-size: 0.8rem;
  color: var(--fg-subtle);
  line-height: 1.6;
}

/* Audience */
.audience {
  padding: 100px 0;
}
.audience .section-header {
  margin-bottom: 48px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.audience-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  transition: border-color 0.2s ease;
}
.audience-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
}
.audience-icon {
  margin-bottom: 16px;
}
.audience-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.audience-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.audience-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Closing */
.closing {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(245, 158, 11, 0.04) 100%);
  border-top: 1px solid var(--border);
}
.closing-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-subtle);
}
.footer-note {
  font-size: 0.78rem;
  color: var(--fg-subtle);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .steps { flex-direction: column; gap: 0; }
  .step-connector { width: 1px; height: 40px; margin: 0 auto; background: linear-gradient(180deg, transparent, var(--border), transparent); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .audience-grid { grid-template-columns: 1fr; }
  .navbar { padding: 0 20px; }
  .section-inner { padding: 0 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
/* ── Language switcher ───────────────────────────────────────────────────────── */

.navbar-lang {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}
.lang-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  background: none;
  border: none;
  padding: 3px 7px;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  font-family: var(--font-body);
}
.lang-btn:hover { color: var(--fg); background: rgba(255,255,255,0.06); }
.lang-btn.lang-active { color: var(--accent); background: rgba(245, 158, 11, 0.08); }
.lang-sep { color: var(--fg-subtle); font-size: 0.7rem; opacity: 0.4; }

/* ── Nav links ────────────────────────────────────────────────────────────────── */

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
}
.navbar-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.navbar-link:hover { color: var(--fg); background: rgba(255,255,255,0.05); }

.navbar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0a0e1a;
}
.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}

.btn-cta {
  background: var(--accent);
  color: #0a0e1a;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.btn-cta:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.35);
}
.btn-cta-secondary {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  padding: 13px 24px;
}
.btn-cta-secondary:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

/* CTA row */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* ── Scroll reveal ─────────────────────────────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ── FAQ ───────────────────────────────────────────────────────────────────────── */

.faq-section {
  padding: 100px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  gap: 16px;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  transition: transform 0.25s ease, color 0.15s;
}
.faq-open .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.faq-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── Pricing ──────────────────────────────────────────────────────────────────── */

.pricing-section {
  padding: 100px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.1);
}
.pricing-card-pro {
  border-color: rgba(245, 158, 11, 0.25);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, var(--bg-surface) 60%);
}
.pricing-card-pro:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 16px 48px rgba(245, 158, 11, 0.12);
}
.pricing-badge {
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 4px;
}
.pricing-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--fg);
  line-height: 1;
}
.pricing-period {
  font-size: 0.8rem;
  color: var(--fg-subtle);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.pricing-feature-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}
.pricing-cta {
  width: 100%;
  display: block;
  text-align: center;
}
.pricing-card-pro .pricing-amount { color: var(--accent); }

/* ── Closing CTA ──────────────────────────────────────────────────────────────── */

.closing-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ── Mobile menu ──────────────────────────────────────────────────────────────── */

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--fg-muted);
}
.mobile-menu {
  display: none;
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-actions { display: none; }
  .mobile-menu-toggle { display: flex; align-items: center; justify-content: center; }
  .mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
  }
  .mobile-menu.mobile-menu-open { display: flex; }
  .mobile-nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--fg-muted);
    text-decoration: none;
    border-radius: 10px;
    transition: color 0.15s, background 0.15s;
  }
  .mobile-nav-link:hover { color: var(--fg); background: rgba(255,255,255,0.05); }
  .mobile-nav-ctas {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .mobile-nav-ctas .btn { width: 100%; justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-pro { order: -1; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 40px; height: 1px; }
}