/* Growth Recon AI — Tactical / Data-Forward Theme */
:root {
  --bg: #0a0e1a;
  --bg-elev: #0f1524;
  --bg-card: #131a2c;
  --border: #1f2942;
  --border-bright: #2a3656;
  --text: #e6ebf5;
  --text-dim: #97a3bd;
  --text-muted: #6b7794;
  --accent: #3b82f6;        /* electric blue */
  --accent-bright: #60a5fa;
  --accent-dim: #1e3a8a;
  --success: #10b981;
  --warn: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 10px 30px rgba(0,0,0,0.4);
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent-bright); text-decoration: none; }
a:hover { color: var(--accent); }

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

/* ───── Nav ───── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 700; letter-spacing: 0.5px;
}
.nav-logo svg { width: 30px; height: 30px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--text-dim); font-size: 14px; font-weight: 500;
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent); color: white !important; padding: 10px 18px;
  border-radius: 8px; font-weight: 600; font-size: 14px;
  transition: background .15s ease, transform .15s ease;
}
.nav-cta:hover { background: var(--accent-bright); transform: translateY(-1px); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text); padding: 8px 12px; border-radius: 8px; cursor: pointer;
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg-elev); padding: 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: inline-flex; align-items: center; gap: 8px; }
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 10px;
  font-weight: 600; font-size: 15px; cursor: pointer; border: 1px solid transparent;
  transition: all .15s ease;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-1px); color: white; }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-bright); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ───── Section ───── */
section { padding: 80px 0; }
@media (max-width: 700px) { section { padding: 56px 0; } }
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  color: var(--accent-bright); text-transform: uppercase;
  background: rgba(59,130,246,0.12);
  padding: 6px 12px; border-radius: 100px;
  border: 1px solid rgba(59,130,246,0.25);
}
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; line-height: 1.15; margin: 0 0 16px; }
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.015em; }
h3 { font-size: 22px; font-weight: 700; }
h4 { font-size: 17px; font-weight: 600; }
p { color: var(--text-dim); margin: 0 0 16px; }
.lead { font-size: 18px; color: var(--text-dim); }

/* ───── Hero ───── */
.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(circle at 20% 0%, rgba(59,130,246,0.18), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(59,130,246,0.10), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero h1 strong { color: var(--accent-bright); font-weight: 800; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 40px; }
.trusted-row {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
}
.trusted-label { color: var(--text-muted); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
.trusted-list { display: flex; gap: 24px; flex-wrap: wrap; }
.trusted-list span { color: var(--text-dim); font-weight: 600; font-size: 14px; }

/* ───── Stats Bar ───── */
.stats {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stats-grid > div {
  padding: 36px 20px; text-align: center;
  border-right: 1px solid var(--border);
}
.stats-grid > div:last-child { border-right: 0; }
.stat-num {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  color: var(--accent-bright); letter-spacing: -0.02em; line-height: 1;
}
.stat-label { color: var(--text-dim); margin-top: 8px; font-size: 14px; font-weight: 500; }
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid > div { border-bottom: 1px solid var(--border); }
  .stats-grid > div:nth-child(2) { border-right: 0; }
  .stats-grid > div:nth-child(3), .stats-grid > div:nth-child(4) { border-bottom: 0; }
}

/* ───── Tier row (5 cards on home Growth System) ───── */
.tier-row {
  display: grid; gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) { .tier-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .tier-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .tier-row { grid-template-columns: 1fr; } }

/* ───── Cards ───── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .15s ease, transform .15s ease;
}
.card:hover { border-color: var(--border-bright); }
.card-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.card-grid-4 { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .card-grid, .card-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .card-grid, .card-grid-2, .card-grid-4 { grid-template-columns: 1fr; } }

/* ───── Wall of Wins (Tabs) ───── */
.wow-tabs {
  display: flex; gap: 4px; flex-wrap: wrap;
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: 10px; padding: 6px; margin-bottom: 32px;
}
.wow-tab {
  flex: 1 1 auto; min-width: 120px;
  background: transparent; color: var(--text-dim);
  border: none; padding: 12px 16px; border-radius: 7px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: all .15s ease;
}
.wow-tab:hover { color: var(--text); }
.wow-tab.active { background: var(--accent); color: white; }
.wow-panel { display: none; }
.wow-panel.active { display: block; }
.wow-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
}
.wow-headline {
  font-size: clamp(22px, 3vw, 32px); font-weight: 800;
  color: var(--accent-bright); letter-spacing: -0.01em; margin-bottom: 8px;
}
.wow-sub { color: var(--text-dim); font-weight: 500; margin-bottom: 24px; }
.wow-list { list-style: none; padding: 0; margin: 0 0 20px; }
.wow-list li {
  padding: 10px 0; border-bottom: 1px solid var(--border);
  color: var(--text); display: flex; justify-content: space-between; gap: 16px;
}
.wow-list li:last-child { border-bottom: 0; }
.wow-callout {
  background: rgba(59,130,246,0.08);
  border-left: 3px solid var(--accent);
  padding: 16px 20px; border-radius: 6px; margin: 20px 0;
  color: var(--text);
}
.wow-quote {
  font-style: normal; font-size: 17px; color: var(--text);
  border-left: 3px solid var(--accent); padding: 12px 20px; margin: 20px 0;
}
.wow-quote cite { display: block; margin-top: 8px; font-size: 14px; color: var(--text-muted); font-style: normal; }
.disclaimer { color: var(--text-muted); font-size: 12px; margin-top: 16px; line-height: 1.5; }
.au-table {
  width: 100%; border-collapse: collapse; margin: 16px 0;
  font-size: 14px;
}
.au-table th, .au-table td {
  padding: 10px 12px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.au-table th { color: var(--text-muted); font-weight: 600; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.au-table tr:last-child td { border-bottom: 0; font-weight: 700; color: var(--accent-bright); }

/* ───── Comparison ───── */
.compare-grid {
  display: grid; gap: 20px; grid-template-columns: 1fr 1fr;
}
.compare-col h3 { color: var(--text); margin-bottom: 16px; }
.compare-col.us { background: rgba(59,130,246,0.05); border: 1px solid rgba(59,130,246,0.25); padding: 28px; border-radius: var(--radius); }
.compare-col.them { background: var(--bg-elev); border: 1px solid var(--border); padding: 28px; border-radius: var(--radius); }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li { padding: 10px 0 10px 28px; position: relative; color: var(--text-dim); border-bottom: 1px solid var(--border); }
.compare-col li:last-child { border-bottom: 0; }
.compare-col.us li::before { content: "✓"; position: absolute; left: 0; top: 10px; color: var(--success); font-weight: 700; }
.compare-col.them li::before { content: "✕"; position: absolute; left: 0; top: 10px; color: var(--danger); font-weight: 700; }
@media (max-width: 800px) { .compare-grid { grid-template-columns: 1fr; } }

/* ───── Pricing Cards ───── */
.tier-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; position: relative;
}
.tier-card.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.tier-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.tier-badge.new { background: var(--success); }
.tier-badge.best { background: var(--warn); color: #1a1100; }
.tier-name { font-size: 13px; color: var(--text-muted); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.tier-title { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.tier-price { font-size: 32px; font-weight: 800; color: var(--accent-bright); margin: 12px 0 4px; letter-spacing: -0.02em; }
.tier-setup { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; }
.tier-features { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.tier-features li { padding: 8px 0 8px 24px; position: relative; color: var(--text-dim); font-size: 14px; }
.tier-features li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }

/* ───── Form ───── */
.form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  max-width: 640px; margin: 0 auto;
}
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.form-field { display: block; margin-bottom: 16px; }
.form-field label, .form-label { display: block; color: var(--text); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-field input, .form-field select, input.form-input, select.form-input {
  width: 100%; padding: 12px 14px;
  background: var(--bg-elev); border: 1px solid var(--border-bright);
  border-radius: 8px; color: var(--text); font-size: 15px;
  font-family: inherit;
}
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--accent); }
.form-footer { color: var(--text-muted); font-size: 13px; text-align: center; margin-top: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ───── FAQ accordion ───── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-q {
  cursor: pointer; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; color: var(--accent); font-size: 22px; font-weight: 400; line-height: 1; flex-shrink: 0; }
details[open] .faq-q::after { content: "−"; }
.faq-a { color: var(--text-dim); margin-top: 12px; }

/* ───── Process ───── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: var(--bg-card); border: 1px solid var(--border); padding: 28px; border-radius: var(--radius); }
.step-num { font-size: 32px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }

/* ───── ICP cols ───── */
.icp-grid { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
.icp-col { padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-card); }
.icp-col.yes { border-color: rgba(16,185,129,0.4); background: rgba(16,185,129,0.04); }
.icp-col.no { border-color: rgba(239,68,68,0.3); background: rgba(239,68,68,0.03); }
.icp-col h3 { color: var(--text); }
.icp-col ul { list-style: none; padding: 0; margin: 0; }
.icp-col li { padding: 10px 0 10px 28px; position: relative; color: var(--text-dim); border-bottom: 1px solid var(--border); }
.icp-col li:last-child { border-bottom: 0; }
.icp-col.yes li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.icp-col.no li::before { content: "✕"; position: absolute; left: 0; color: var(--danger); font-weight: 700; }
@media (max-width: 800px) { .icp-grid { grid-template-columns: 1fr; } }

/* ───── Compare table ───── */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  font-size: 14px; min-width: 800px;
}
.compare-table th, .compare-table td {
  padding: 12px 14px; border-bottom: 1px solid var(--border);
  text-align: center;
}
.compare-table th { background: var(--bg-elev); color: var(--text); font-weight: 700; font-size: 13px; }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; color: var(--text); }
.compare-table tr:last-child td { border-bottom: 0; font-weight: 700; color: var(--accent-bright); }
.compare-table .muted { color: var(--text-muted); }

/* ───── Footer ───── */
.footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer p, .footer a { font-size: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 4px 0; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  color: var(--text-muted); font-size: 13px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ───── Utilities ───── */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 24px; }
.text-accent { color: var(--accent-bright); }
.text-dim { color: var(--text-dim); }
.text-muted { color: var(--text-muted); }
.bg-elev { background: var(--bg-elev); }
.divider { height: 1px; background: var(--border); margin: 40px 0; }
