@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500&display=swap');

:root {
  --bg: #0c0c0f;
  --bg-surface: #16161a;
  --bg-elevated: #1e1e24;
  --fg: #e8e6e3;
  --fg-muted: #94918c;
  --accent: #f5a623;
  --accent-glow: rgba(245, 166, 35, 0.15);
  --accent-dark: #c4841c;
  --green: #4ade80;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

/* ── HERO ── */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: var(--bg-elevated);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  color: var(--fg);
}

.hero h1 span {
  color: var(--accent);
}

.hero .lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  background: var(--bg-surface);
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.how-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 64px;
  max-width: 600px;
}

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

.step {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s;
}

.step:hover {
  border-color: rgba(245, 166, 35, 0.3);
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(245, 166, 35, 0.12);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

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

/* ── SERVICES ── */
.services-section {
  padding: 100px 0;
}

.services-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.services-section > .container > p {
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 64px;
  font-size: 1.05rem;
}

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

.service-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.2s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 166, 35, 0.2);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.service-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-content p {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

/* ── WHO WE SERVE ── */
.who-section {
  padding: 100px 0;
  background: var(--bg-surface);
}

.who-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.who-section > .container > p {
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 64px;
  font-size: 1.05rem;
}

.verticals-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.vertical-tag {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 14px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  transition: border-color 0.3s, background 0.3s;
}

.vertical-tag:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* ── CLOSING ── */
.closing-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.closing-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing-section h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  margin-bottom: 20px;
  position: relative;
}

.closing-section p {
  color: var(--fg-muted);
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}

/* ── FOOTER ── */
footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-brand span {
  color: var(--accent);
}

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

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(12, 12, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-nav .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-right: auto;
}

.nav-brand span { color: var(--accent); }

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

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

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

.nav-cta {
  background: var(--accent);
  color: #0c0c0f;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #ffb74d;
  transform: translateY(-1px);
}

/* ── PRICING ── */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-surface);
  scroll-margin-top: 70px;
}

.pricing-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.pricing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 64px;
}

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

.pricing-card {
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.3s, transform 0.2s;
}

.pricing-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-2px);
}

.pricing-card--featured {
  border-color: rgba(245,166,35,0.4);
  background: linear-gradient(160deg, rgba(245,166,35,0.06) 0%, var(--bg) 60%);
  transform: translateY(-6px);
}

.pricing-card--featured:hover {
  transform: translateY(-10px);
}

.plan-badge {
  display: inline-block;
  background: var(--accent);
  color: #0c0c0f;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-price {
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fg);
}

.price-period {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-left: 4px;
}

.plan-tagline {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  min-height: 36px;
}

.plan-features {
  list-style: none;
  margin-bottom: 36px;
}

.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--fg);
  font-size: 0.92rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.plan-features li:last-child { border-bottom: none; }

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

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.plan-cta--primary {
  background: var(--accent);
  color: #0c0c0f;
}

.plan-cta--primary:hover {
  background: #ffb74d;
  transform: translateY(-1px);
}

.plan-cta--outline {
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--accent);
}

.plan-cta--outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

/* ── INTAKE FORM ── */
.intake-section {
  padding: 100px 0;
  background: var(--bg);
  scroll-margin-top: 70px;
}

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

.intake-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.intake-copy p {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.intake-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.intake-perks li {
  color: var(--green);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.intake-form-wrap {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 40px;
}

.intake-form .form-row {
  margin-bottom: 20px;
}

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

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

.form-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(245,166,35,0.5);
  background: rgba(245,166,35,0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(148,145,140,0.6);
}

/* Plan selector radio */
.plan-selector {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.plan-option {
  cursor: pointer;
  flex: 1;
  min-width: 140px;
}

.plan-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-option-label {
  display: block;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  background: var(--bg-elevated);
}

.plan-option--selected .plan-option-label,
.plan-option input:checked + .plan-option-label {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #0c0c0f;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 24px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover {
  background: #ffb74d;
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.82rem;
  margin-top: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .pricing-card--featured {
    transform: none;
  }
  .intake-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 14px 0;
  }
  .nav-links { display: none; }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 32px;
  }
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .form-row--half {
    grid-template-columns: 1fr;
  }
  .intake-form-wrap {
    padding: 28px 24px;
  }
  .plan-selector {
    flex-direction: column;
  }
}
