/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --navy:    #0A1628;
  --navy-2:  #0D1F38;
  --navy-3:  #132544;
  --navy-4:  #1A3356;
  --teal:    #00C9A7;
  --teal-dim:#00A889;
  --white:   #FFFFFF;
  --off:     #E8EEF4;
  --muted:   #8899AA;
  --border:  rgba(255,255,255,0.08);
  --radius:  8px;
  --max:     1100px;
}

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

body {
  background: var(--navy);
  color: var(--off);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

h1,h2,h3,h4 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

img { max-width: 100%; display: block; }

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--teal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); text-decoration: none; }
.btn-primary {
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--teal-dim); text-decoration: none; color: var(--navy); }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.2);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 .teal { color: var(--teal); }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── PAIN ────────────────────────────────────────────── */
.pain-section {
  padding: 60px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--navy-2);
}
.pain-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 32px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--teal);
  vertical-align: middle;
  margin-right: 10px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
}
.pain-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pain-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0,201,167,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.pain-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}
.pain-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── SERVICES ────────────────────────────────────────── */
.services-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 40px;
}
.services-section h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 12px;
}
.services-section > p {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.service-tier {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.service-price {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.service-price strong { color: var(--white); }
.service-features {
  list-style: none;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-features li {
  font-size: 13px;
  color: var(--off);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.service-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── NICHES ──────────────────────────────────────────── */
.niches-section {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.niches-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.niches-intro {
  text-align: center;
  margin-bottom: 48px;
}
.niches-intro h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 16px;
}
.niches-intro p {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.niche-card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.niche-card:hover { border-color: var(--teal); }
.niche-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--white);
}
.niche-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── SOCIAL PROOF ────────────────────────────────────── */
.proof-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}
.proof-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 8px;
}
.proof-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
}
.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.proof-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.proof-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.proof-card .stars { color: #F59E0B; font-size: 14px; margin-bottom: 12px; }
.proof-card blockquote {
  font-size: 14px;
  color: var(--off);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}
.proof-card cite {
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
}

/* ─── LEAD FORM ───────────────────────────────────────── */
.form-section {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 80px 40px;
}
.form-inner {
  max-width: 680px;
  margin: 0 auto;
}
.form-section h2 {
  font-size: clamp(26px, 3vw, 36px);
  text-align: center;
  margin-bottom: 12px;
}
.form-section > .form-inner > p {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 40px;
}
.lead-form {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--off);
}
input, select, textarea {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  transition: border-color 0.15s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
}
select { cursor: pointer; }
textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--teal);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--teal-dim); }
.form-privacy {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success h3 { font-size: 24px; margin-bottom: 12px; color: var(--teal); }
.form-success p { color: var(--muted); }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 40px;
}
.faq-section h2 {
  font-size: clamp(26px, 3vw, 36px);
  text-align: center;
  margin-bottom: 48px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
}
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.faq-item h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--white);
}
.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand .footer-logo {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand .footer-logo span { color: var(--teal); }
.footer-brand p {
  font-size: 12px;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: var(--muted); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-bottom a { font-size: 12px; color: var(--muted); }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px 40px; }
  .hero-image { order: -1; }
  .services-grid,
  .niches-grid,
  .proof-cards,
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .pain-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .proof-cards { grid-template-columns: 1fr; }
}