/* WealthWhiz — Global Stylesheet
   Single file, no build step required.
   Design system: dark-first, teal-mint accent, Inter typeface.
   -------------------------------------------------------------------- */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Reset & box-sizing ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ── Design tokens ── */
:root {
  --bg:         #0f1419;
  --bg-2:        #161c24;
  --bg-3:        #1c242e;
  --bg-4:        #222d38;
  --accent:      #b4e922;
  --accent-dim:  #92be1a;
  --accent-glow: rgba(180,233,34,.12);
  --accent-glow-strong: rgba(180,233,34,.22);
  --text:        #e8edf2;
  --text-muted:  #8b96a3;
  --text-dim:    #5c6878;
  --border:      rgba(255,255,255,.07);
  --border-accent: rgba(180,233,34,.25);
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --shadow:      0 1px 3px rgba(0,0,0,.4), 0 4px 16px rgba(0,0,0,.3);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.5);
  --font:        'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:  200ms ease;
  --max-w:       1120px;
  --section-py:  96px;
}

/* ── Base ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── Typography scale ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.75; }
a  { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text); }
strong { color: var(--text); font-weight: 600; }
code {
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: .85em;
  background: var(--bg-3);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
}

/* ── Layout helpers ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-py) 0;
}
.section-sm { padding: 64px 0; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,20,25,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--bg-3);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.nav-mobile {
  display: none;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  padding: 10px 24px;
  transition: color var(--transition), background var(--transition);
}
.nav-mobile a:hover { color: var(--text); background: var(--bg-2); }
.nav-mobile .btn { margin: 12px 24px 8px; display: block; text-align: center; }
.nav-logo-img {
  height: 40px;
  width: auto;
  border-radius: 8px;
  display: block;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0a1010;
}
.btn-primary:hover {
  background: var(--accent-dim);
  color: #0a1010;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(180,233,34,.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.2);
  background: var(--bg-3);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-accent);
}
.btn-outline:hover {
  background: var(--accent-glow);
  color: var(--accent);
}
.btn-lg {
  padding: 12px 28px;
  font-size: 1rem;
}
.btn-sm {
  padding: 6px 14px;
  font-size: .8125rem;
}

/* ── Cards ── */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: rgba(180,233,34,.2);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.card-accent {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(180,233,34,.06), transparent);
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(180,233,34,.1);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── Section labels ── */
.section-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-header {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-header p { margin-top: 12px; font-size: 1.0625rem; }
.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── Hero ── */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(180,233,34,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(180,233,34,.1);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  color: var(--text-dim);
}
.hero-trust svg { color: var(--accent); }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.device-mockup {
  width: 100%;
  max-width: 460px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
  box-shadow:
    var(--shadow-lg),
    0 0 80px rgba(180,233,34,.08),
    0 0 160px rgba(180,233,34,.04);
}
.device-screen {
  background: var(--bg-3);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-height: 280px;
}
.device-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.device-title { font-size: .75rem; font-weight: 600; color: var(--text-muted); }
.device-metric { font-size: 1.6rem; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--accent); }
.device-meta { font-size: .7rem; color: var(--text-dim); margin-top: 2px; }
.sparkline {
  width: 100%;
  margin-top: 16px;
}
.device-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.device-stat {
  background: var(--bg-4);
  border-radius: var(--radius);
  padding: 12px;
}
.device-stat-label { font-size: .65rem; font-weight: 500; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }
.device-stat-val { font-size: 1rem; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--text); margin-top: 4px; }
.device-privacy-badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: var(--bg-3);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  box-shadow: var(--shadow);
}

/* ── Value props ── */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-prop {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition);
}
.value-prop:hover { border-color: rgba(180,233,34,.25); }
.value-prop-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.value-prop h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value-prop p { font-size: .9rem; }
.value-prop-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 16px;
}
.value-prop-link:hover { gap: 8px; }

/* ── How it works ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-accent) 30%, var(--border-accent) 70%, transparent);
}
.step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: .875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: .875rem; }

/* ── Features teaser grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(180,233,34,.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.feature-card-icon {
  color: var(--accent);
  margin-bottom: 12px;
}
.feature-card h4 { margin-bottom: 6px; }
.feature-card p { font-size: .8375rem; }

/* ── Pricing ── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.toggle-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
}
.toggle-label.active { color: var(--text); }
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-switch.annual { background: var(--accent-glow); border-color: var(--border-accent); }
.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform var(--transition);
}
.toggle-switch.annual .toggle-knob { transform: translateX(20px); }
.toggle-savings {
  background: rgba(180,233,34,.12);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--border-accent);
  background: linear-gradient(160deg, rgba(180,233,34,.07) 0%, var(--bg-2) 60%);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a1010;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
}
.pricing-tier { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.pricing-amount {
  font-size: 2.25rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  line-height: 1;
}
.pricing-period { font-size: .8rem; color: var(--text-muted); }
.pricing-annual-note { font-size: .75rem; color: var(--text-dim); margin-bottom: 20px; min-height: 18px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.pricing-features { list-style: none; flex: 1; margin-bottom: 24px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-muted);
  padding: 5px 0;
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%234ecdc4' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-features li.inherit { color: var(--text-dim); font-style: italic; font-size: .8rem; }
.pricing-features li.inherit::before { opacity: .4; }

/* AI Concierge callout */
.ai-concierge-card {
  background: linear-gradient(135deg, rgba(180,233,34,.06) 0%, rgba(180,233,34,.02) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 32px;
}
.lifetime-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.lifetime-info h3 { margin-bottom: 4px; }
.lifetime-price {
  font-size: 2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}
.lifetime-note { font-size: .8rem; color: var(--text-dim); margin-top: 4px; }

/* ── Pricing comparison table ── */
.pricing-compare { overflow-x: auto; margin: 48px 0; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.compare-table th, .compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--bg-2);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: sticky;
  top: 0;
}
.compare-table th.accent { color: var(--accent); }
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.compare-table td:not(:first-child) { color: var(--text-muted); text-align: center; }
.compare-table tr:hover td { background: var(--bg-2); }
.check { color: var(--accent); }
.dash { color: var(--text-dim); }

/* ── FAQ ── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-chevron { flex-shrink: 0; transition: transform var(--transition); color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.8;
}
.faq-answer a { color: var(--accent); }
.faq-item.open .faq-answer { display: block; }

/* ── Privacy / Terms pages ── */
.legal-body {
  max-width: 720px;
  margin: 0 auto;
}
.legal-body h1 { margin-bottom: 12px; }
.legal-meta { color: var(--text-dim); font-size: .875rem; margin-bottom: 48px; }
.legal-body h2 {
  font-size: 1.25rem;
  margin: 48px 0 12px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.legal-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal-body p { margin-bottom: 16px; }
.legal-body ul, .legal-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text-muted);
}
.legal-body li { margin-bottom: 8px; line-height: 1.7; }
.legal-draft {
  background: rgba(255,180,0,.08);
  border: 1px solid rgba(255,180,0,.25);
  border-radius: var(--radius);
  padding: 14px 20px;
  color: #f0c060;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ── Features page ── */
.features-section {
  border-top: 1px solid var(--border);
  padding: 56px 0;
}
.features-section:first-of-type { border-top: none; padding-top: 0; }
.features-section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}
.features-section-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.features-section-header-text h2 { font-size: 1.5rem; margin-bottom: 6px; }
.features-section-header-text p { font-size: .9rem; }
.features-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.feature-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.feature-bullet:hover { border-color: rgba(180,233,34,.2); }
.feature-bullet-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-bullet-content strong { display: block; font-size: .875rem; color: var(--text); margin-bottom: 2px; }
.feature-bullet-content span { font-size: .8125rem; color: var(--text-muted); line-height: 1.5; }

/* ── Download page ── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.platform-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: border-color var(--transition);
}
.platform-card.active {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(180,233,34,.06), transparent);
}
.platform-card:hover { border-color: rgba(180,233,34,.2); }
.platform-icon { color: var(--accent); margin-bottom: 4px; }
.platform-name { font-size: 1.05rem; font-weight: 600; color: var(--text); }
.platform-status {
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.status-available {
  background: rgba(180,233,34,.12);
  border: 1px solid var(--border-accent);
  color: var(--accent);
}
.status-soon {
  background: rgba(139,150,163,.1);
  border: 1px solid rgba(139,150,163,.15);
  color: var(--text-muted);
}
.platform-desc { font-size: .8375rem; color: var(--text-muted); }

/* ── Support page ── */
.support-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-card h3 { margin-bottom: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .875rem;
}
.contact-item:last-child { border-bottom: none; }
.contact-item svg { color: var(--accent); flex-shrink: 0; }

/* ── Closing CTA ── */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(180,233,34,.06), transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { margin-bottom: 36px; font-size: 1.0625rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: .875rem; color: var(--text-muted); margin-top: 12px; max-width: 240px; }
.footer-col h5 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-muted);
  font-size: .875rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: .8125rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); font-size: .8125rem; }
.footer-bottom a:hover { color: var(--text); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ── Dividers / spacers ── */
.hr { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .ai-concierge-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .value-props { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { text-align: left; padding: 0; margin-bottom: 32px; }
  .step-num { width: 40px; height: 40px; font-size: .8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .features-bullets { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .lifetime-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .platform-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  h1 { font-size: 1.9rem; }
  .hero { padding: 64px 0 56px; }
}

/* ── Print ── */
@media print {
  .nav, .footer, .hero-visual { display: none; }
  body { background: white; color: #111; }
}
