/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

:root {
  --bg: #0E0E0E;
  --bg-2: #161616;
  --bg-3: #1E1E1E;
  --fg: #F2F2F2;
  --fg-2: #A8A8A8;
  --accent: #B6F500;
  --accent-dim: rgba(182, 245, 0, 0.12);
  --border: rgba(255,255,255,0.08);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.tagline {
  font-size: 0.8rem;
  color: var(--fg-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 6rem;
}
.hero-bg-label {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-family: var(--font-head);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(182, 245, 0, 0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 2rem;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--fg-2);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  padding: 1rem 2rem;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-sep {
  width: 1px;
  height: 3rem;
  background: var(--border);
}

/* ===== SECTIONS ===== */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 3rem;
  line-height: 1.2;
}

/* ===== PROBLEM ===== */
.problem { padding: 7rem 2rem; background: var(--bg-2); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.problem-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.problem-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.problem-text {
  font-size: 1.05rem;
  color: var(--fg);
  font-style: italic;
  line-height: 1.6;
}
.problem-conclusion {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
}

/* ===== HOW ===== */
.how { padding: 7rem 2rem; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  min-width: 4rem;
  padding-top: 0.25rem;
}
.step-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.65;
  max-width: 600px;
}

/* ===== NICHES ===== */
.niches { padding: 7rem 2rem; background: var(--bg-2); }
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.niche-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
}
.niche-icon { color: var(--accent); margin-bottom: 1.25rem; }
.niche-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.niche-desc { font-size: 0.95rem; color: var(--fg-2); line-height: 1.65; }

/* ===== PRICING ===== */
.pricing { padding: 7rem 2rem; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: border-color 0.2s;
}
.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 0.25rem 1rem;
  border-radius: 99px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.price-amount {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.price-period {
  font-size: 1.2rem;
  color: var(--fg-2);
  font-weight: 400;
}
.price-features {
  list-style: none;
  margin-bottom: 1.5rem;
}
.price-features li {
  font-size: 0.9rem;
  color: var(--fg-2);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.price-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.price-note {
  font-size: 0.82rem;
  color: var(--fg-2);
  font-style: italic;
}
.pricing-cta {
  text-align: center;
  font-size: 1rem;
  color: var(--fg-2);
}

/* ===== PROCESS ===== */
.process { padding: 7rem 2rem; background: var(--bg-2); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.timeline-item:last-child { border-bottom: none; }
.tl-day {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 5rem;
  padding-top: 0.25rem;
}
.tl-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.tl-desc { font-size: 0.95rem; color: var(--fg-2); line-height: 1.6; }

/* ===== CLOSING ===== */
.closing { padding: 8rem 2rem; }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-2);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-tagline { font-size: 0.85rem; color: var(--fg-2); max-width: 300px; }
.footer-link {
  color: var(--fg-2);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--accent); }

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.cta-btn:active { transform: translateY(0); }

/* ===== INTAKE FORM PAGE ===== */
.intake-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 6rem 1.5rem 4rem;
}
.intake-container {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
.intake-header { margin-bottom: 2.5rem; }
.intake-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.intake-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.intake-sub {
  font-size: 1rem;
  color: var(--fg-2);
  line-height: 1.65;
}
.intake-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
input, select, textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: #555; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); }
select { cursor: pointer; }
textarea { resize: vertical; min-height: 80px; }
.form-error {
  font-size: 0.8rem;
  color: #ff6b6b;
  margin-top: -0.25rem;
}
.form-submit { margin-top: 0.5rem; }
.form-submit .cta-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 8px;
}
.success-banner {
  background: var(--accent-dim);
  border: 1px solid rgba(182, 245, 0, 0.3);
  border-radius: 8px;
  padding: 1.5rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.success-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.success-sub { font-size: 0.9rem; color: var(--fg-2); }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .intake-form { padding: 1.75rem 1.25rem; }
}
@media (max-width: 768px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-headline { font-size: 2.8rem; }
  .hero-stats { gap: 0.5rem; }
  .stat { padding: 0.75rem 1rem; }
  .stat-num { font-size: 1.4rem; }
  .step-number { font-size: 2rem; min-width: 3rem; }
  .how-step { gap: 1.5rem; }
  .pricing-grid { gap: 1rem; }
  .pricing-card.featured::before { top: -10px; }
  .pricing-cta { font-size: 0.9rem; }
  .closing { padding: 5rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-sep { display: none; }
  .stat { padding: 0.5rem 0; }
  .how-step { flex-direction: column; gap: 0.5rem; }
  .timeline-item { flex-direction: column; gap: 0.5rem; }
  .footer-inner { flex-direction: column; }
}