:root {
  --bg: #0a0a0f;
  --bg-secondary: #111118;
  --fg: #e8e8ed;
  --fg-muted: #8b8b9e;
  --accent: #4ade80;
  --accent-dim: rgba(74, 222, 128, 0.12);
  --accent-glow: rgba(74, 222, 128, 0.25);
  --border: rgba(255,255,255,0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* HERO */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin-bottom: 32px;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero .lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.6;
}

/* PROBLEM SECTION */
.problem {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.problem-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.problem p {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.stat-card .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* SERVICES */
.services {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.services-header {
  margin-bottom: 64px;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.services-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 500px;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 40px;
  background: var(--bg);
  align-items: start;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  padding-top: 2px;
}

.service-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.service-desc strong {
  color: var(--fg);
  font-weight: 500;
}

/* EDGE */
.edge {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.edge h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 64px;
}

.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.edge-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
}

.edge-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.edge-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.edge-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* CLOSING */
.closing {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 650px;
  margin: 0 auto 20px;
  line-height: 1.12;
}

.closing h2 em {
  font-style: normal;
  color: var(--accent);
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* FOOTER */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

footer p {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

footer .brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stat-cards {
    grid-template-columns: 1fr 1fr;
  }
  .service-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px;
  }
  .edge-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }
}

@media (max-width: 480px) {
  .stat-cards {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   NAV
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  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: 60px;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-cta {
  color: var(--accent) !important;
  font-weight: 500;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.15);
  color: var(--fg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--bg-secondary);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s;
  margin-top: 24px;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.15);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* Hero actions row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

/* Closing actions */
.closing-actions {
  margin-top: 40px;
}

/* Service links in list */
.service-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}

.service-link {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.service-link:hover {
  color: var(--fg);
}

.service-link-cta {
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.15s;
}

.service-link-cta:hover {
  opacity: 0.8;
}

.service-name a {
  color: var(--fg);
  text-decoration: none;
  transition: color 0.15s;
}

.service-name a:hover {
  color: var(--accent);
}

/* ============================================
   FOOTER (full)
   ============================================ */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  padding: 60px 28px 40px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 6px;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--fg);
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.3;
}

.service-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  width: fit-content;
}

.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 600px;
}

.service-hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.service-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

.service-main {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.service-block {}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-overview {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.check-icon {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
  font-weight: 700;
}

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-top: 14px;
}

.sidebar-label:first-child {
  margin-top: 0;
}

.sidebar-value {
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 500;
  margin-bottom: 4px;
}

.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0 8px;
}

.sidebar-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
}

.also-consider {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 0.9rem;
  transition: color 0.15s;
}

.related-link:last-child {
  border-bottom: none;
}

.related-link:hover {
  color: var(--fg);
}

.related-arrow {
  color: var(--accent);
  font-size: 0.85rem;
}

/* Outcomes */
.service-outcomes {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.outcome-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}

.outcome-stat {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.outcome-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ============================================
   INTAKE FORM
   ============================================ */
.intake-hero {
  min-height: calc(100vh - 60px);
  padding: 80px 0;
}

.intake-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.intake-left {
  position: sticky;
  top: 100px;
}

.intake-left h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 24px;
}

.intake-left .lede {
  margin-bottom: 40px;
}

.intake-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.trust-check {
  color: var(--accent);
  font-weight: 700;
}

/* Form */
.intake-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  color: var(--fg);
  font-weight: 500;
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b8b9e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(74, 222, 128, 0.4);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.form-error {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #f87171;
  margin-bottom: 8px;
}

.form-success {
  background: var(--bg-secondary);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0 auto 24px;
  font-weight: 700;
}

.form-success h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    position: static;
  }
  .sidebar-card, .also-consider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .sidebar-divider, .sidebar-note {
    grid-column: 1 / -1;
  }
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .intake-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intake-left {
    position: static;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-nav {
    flex-direction: column;
    gap: 32px;
  }
  .footer-inner {
    padding: 40px 28px;
  }
}

@media (max-width: 480px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .sidebar-card, .also-consider {
    grid-template-columns: 1fr;
  }
}
