/* ── TabPulsar Landing Page ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0b10;
  --bg-card: #12141c;
  --bg-card2: #191c27;
  --bg-card3: #1e2130;
  --text: #f0f1f5;
  --text2: #9ca3b0;
  --text3: #6b7280;
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --green: #10b981;
  --amber: #f59e0b;
  --red: #ef4444;
  --purple: #8b5cf6;
  --border: #1e2233;
  --border2: #2a2e3f;
  --r: 12px;
  --r-lg: 16px;
}

html { scroll-behavior: smooth; }

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text2);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 11, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 34, 51, 0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 17px; font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.nav-logo svg { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--text2); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
  display: inline-flex !important; align-items: center;
  background: var(--blue) !important; color: white !important;
  padding: 8px 18px !important; border-radius: 8px;
  font-weight: 600 !important; transition: all 0.2s;
}
.btn-nav:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }

.mobile-menu-btn {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--text2); border-radius: 2px;
  transition: all 0.2s;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px;
  background: var(--blue); color: white;
  border: none; border-radius: var(--r);
  font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(59, 130, 246, 0.4); }
.btn-primary.large { padding: 16px 36px; font-size: 16px; }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px;
  background: var(--bg-card2); color: var(--text2);
  border: 1px solid var(--border); border-radius: var(--r);
  font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--bg-card3); color: var(--text); border-color: var(--border2); }
.btn-secondary.large { padding: 16px 36px; font-size: 16px; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px;
  background: transparent; color: var(--text2);
  border: 1px solid var(--border); border-radius: var(--r);
  font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--text3); background: rgba(255,255,255,0.03); }
.btn-ghost.large { padding: 16px 28px; font-size: 16px; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.06) 40%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 24px;
  padding: 7px 18px;
  font-size: 13px; color: var(--text2);
  font-weight: 500; margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--purple), #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px; color: var(--text2);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-trust {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-label {
  font-size: 12px; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600;
  display: block; margin-bottom: 16px;
}
.trust-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.trust-logo {
  font-size: 14px; font-weight: 600;
  color: var(--text3); opacity: 0.7;
  transition: opacity 0.2s;
}
.trust-logo:hover { opacity: 1; }
.trust-more { color: var(--blue); opacity: 0.8; }

/* ── Stats Bar ── */
.stats-bar {
  padding: 48px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex; align-items: center; justify-content: center; gap: 48px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 36px; font-weight: 800;
  color: var(--blue); letter-spacing: -0.03em;
}
.stat-desc {
  font-size: 13px; color: var(--text3);
  max-width: 180px; margin: 4px auto 0;
}
.stat-source { font-style: italic; }
.stat-divider {
  width: 1px; height: 48px;
  background: var(--border);
}

/* ── Product Demo ── */
.demo { padding: 100px 0; }
.demo-window {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.03);
}
.demo-titlebar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: var(--bg-card2);
  border-bottom: 1px solid var(--border);
}
.demo-dots { display: flex; gap: 7px; }
.dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.demo-title { font-size: 12px; color: var(--text3); }
.demo-content {
  display: flex; min-height: 360px;
}
.demo-sidebar {
  width: 180px; padding: 16px 0;
  background: rgba(0,0,0,0.15);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.demo-nav-item {
  padding: 10px 20px; font-size: 13px;
  color: var(--text3); cursor: default;
  border-left: 2px solid transparent;
  transition: all 0.15s;
}
.demo-nav-item.active {
  color: var(--text); background: rgba(59, 130, 246, 0.06);
  border-left-color: var(--blue);
}
.demo-main { flex: 1; padding: 20px; overflow-x: auto; }
.demo-header-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 20px;
}
.demo-metric-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px;
}
.demo-metric-label { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.demo-metric-value { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.demo-metric-value.waste { color: var(--red); }
.demo-metric-value.good { color: var(--green); }
.demo-metric-delta { font-size: 11px; margin-top: 4px; }
.demo-metric-delta.negative { color: var(--text3); }
.demo-metric-delta.positive { color: var(--green); }
.demo-table {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.demo-table-header, .demo-table-row {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 0.8fr;
  padding: 10px 16px; font-size: 13px; align-items: center;
}
.demo-table-header {
  color: var(--text3); font-weight: 600; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.15);
}
.demo-table-row {
  color: var(--text2);
  border-bottom: 1px solid rgba(30, 34, 51, 0.4);
  transition: background 0.15s;
}
.demo-table-row:last-child { border-bottom: none; }
.demo-table-row.highlight-waste { background: rgba(239, 68, 68, 0.04); }
.app-name { display: flex; align-items: center; gap: 8px; color: var(--text); font-weight: 500; }
.app-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.status-badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 6px; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.status-badge.keep { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.status-badge.cancel { background: rgba(239, 68, 68, 0.1); color: var(--red); }
.status-badge.review { background: rgba(245, 158, 11, 0.1); color: var(--amber); }

/* ── How It Works ── */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
}
.step-card {
  flex: 1; max-width: 300px; text-align: center;
  padding: 32px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all 0.25s;
}
.step-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.step-number {
  width: 32px; height: 32px; margin: 0 auto 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--blue);
}
.step-icon {
  color: var(--blue);
  margin-bottom: 16px;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.step-connector {
  display: flex; align-items: center;
  padding: 0 8px; color: var(--text3);
  margin-top: 60px;
}

/* ── Features ── */
.features { padding: 100px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.25s;
}
.feature-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.feature-icon.cost-icon { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.feature-icon.waste-icon { background: rgba(239, 68, 68, 0.1); color: var(--red); }
.feature-icon.share-icon { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
.feature-icon.renew-icon { background: rgba(245, 158, 11, 0.1); color: var(--amber); }
.feature-icon.privacy-icon { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ── Calculator ── */
.calculator {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.calc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}
.calc-step { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.calc-label { display: block; font-size: 17px; font-weight: 600; margin-bottom: 16px; }
.calc-options { display: flex; flex-wrap: wrap; gap: 8px; }
.calc-opt {
  padding: 10px 20px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text2); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.15s;
}
.calc-opt:hover { border-color: var(--blue); color: var(--text); }
.calc-opt.selected { background: var(--blue); border-color: var(--blue); color: white; }
.calc-progress { height: 3px; background: var(--bg-card2); border-radius: 2px; margin-top: 24px; overflow: hidden; }
.calc-progress-bar { height: 100%; background: var(--blue); border-radius: 2px; width: 0; transition: width 0.4s ease; }

/* Calculator Result */
.calc-result { text-align: center; animation: fadeIn 0.5s ease; }
.calc-result-score { margin-bottom: 28px; }
.result-label { font-size: 14px; color: var(--text3); margin-bottom: 8px; }
.result-value { font-size: 56px; font-weight: 800; color: var(--red); letter-spacing: -0.03em; }
.result-yearly { font-size: 18px; color: var(--amber); font-weight: 600; }
.result-breakdown {
  display: flex; justify-content: center; gap: 32px;
  margin-bottom: 28px; font-size: 13px; color: var(--text3);
}
.result-cta { margin-top: 24px; }
.result-cta p { font-size: 15px; color: var(--text2); margin-bottom: 16px; }
.result-share { margin-top: 16px; }
.btn-share {
  padding: 10px 20px; background: none;
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text2); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.15s;
}
.btn-share:hover { border-color: var(--blue); color: var(--blue); }

/* ── Testimonials ── */
.testimonials { padding: 100px 0; }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.25s;
}
.testimonial-card:hover { border-color: var(--border2); }
.testimonial-stars {
  color: var(--amber); font-size: 16px;
  letter-spacing: 2px; margin-bottom: 14px;
}
.testimonial-card p {
  font-size: 15px; color: var(--text2);
  line-height: 1.7; margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--text); }
.author-role { font-size: 12px; color: var(--text3); }

/* ── Pricing ── */
.pricing {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Billing toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}
.toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.toggle-label.active { color: var(--text); }
.save-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 2px 8px;
  border-radius: 12px;
}
.billing-switch {
  width: 40px; height: 22px;
  background: var(--border2);
  border: none;
  border-radius: 11px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  padding: 0;
}
.billing-switch[aria-checked="true"] { background: var(--blue); }
.billing-switch-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
}
.billing-switch[aria-checked="true"] .billing-switch-thumb {
  transform: translateX(18px);
}

.price-annual-note {
  font-size: 12px;
  color: var(--green);
  margin-bottom: 16px;
  font-weight: 500;
}

/* Stripe trust badge */
.stripe-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text3);
}
.stripe-trust-sep { opacity: 0.4; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 880px; margin: 0 auto;
}
.price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: all 0.25s;
}
.price-card:hover { border-color: var(--border2); }
.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 32px rgba(59, 130, 246, 0.1), 0 0 0 1px rgba(59, 130, 246, 0.1);
}
.price-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: white;
  font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 12px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.price-tier { font-size: 15px; font-weight: 600; color: var(--text2); margin-bottom: 4px; margin-top: 8px; }
.price-amount { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; }
.price-period { font-size: 14px; color: var(--text3); margin-bottom: 24px; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 24px; }
.price-card li {
  font-size: 14px; color: var(--text2);
  padding: 6px 0 6px 24px; position: relative;
}
.price-card li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--green); font-size: 13px; font-weight: 700;
}
.price-note { font-size: 12px; color: var(--text3); margin-top: 10px; }

/* ── FAQ ── */
.faq { padding: 100px 0; }
.faq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; max-width: 880px; margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all 0.25s;
}
.faq-item:hover { border-color: var(--border2); }
.faq-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ── Final CTA ── */
.final-cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.final-cta-glow {
  position: absolute;
  bottom: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.final-cta p {
  color: var(--text2); font-size: 17px;
  margin-bottom: 32px;
}
.final-note {
  font-size: 13px; color: var(--text3);
  margin-top: 16px;
}

/* ── Footer ── */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex; gap: 80px;
  margin-bottom: 40px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.footer-logo svg { color: var(--blue); }
.footer-tagline { font-size: 13px; color: var(--text3); line-height: 1.6; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--text3); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--text2); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.footer-copy { font-size: 12px; color: var(--text3); }
.footer-badges { display: flex; gap: 16px; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text3);
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  padding: 4px 12px; border-radius: 20px;
}
.footer-badge svg { color: var(--blue); }
.footer-legal {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 11px; color: var(--text3);
  text-align: center; line-height: 1.6;
}
.footer-legal strong { color: var(--text2); font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .feature-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .demo-sidebar { display: none; }
  .demo-header-row { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); margin: -8px 0; }
  .footer-top { flex-direction: column; gap: 32px; }
}

@media (max-width: 640px) {
  .hero { padding: 130px 0 60px; }
  .hero h1 { font-size: 30px; }
  .feature-grid, .testimonial-grid, .faq-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(10, 11, 16, 0.97);
    backdrop-filter: blur(16px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    z-index: 99;
  }
  .mobile-menu-btn { display: flex; }
  .stripe-trust { flex-wrap: wrap; gap: 6px; text-align: center; justify-content: center; }
  .stats-grid { flex-direction: column; gap: 24px; }
  .stat-divider { width: 48px; height: 1px; }
  .calc-options { flex-direction: column; }
  .calc-opt { width: 100%; }
  .hero-cta { flex-direction: column; }
  .demo-table-header, .demo-table-row { grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 0.7fr; font-size: 11px; padding: 8px 12px; }
  .result-breakdown { flex-direction: column; gap: 8px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-badges { justify-content: center; }
}
