:root {
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --fg: #f0f0f0;
  --fg-muted: #888888;
  --accent: #ff4d00;
  --accent-glow: rgba(255, 77, 0, 0.15);
  --border: #222222;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

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

.hero-grid {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.strike {
  text-decoration: line-through;
  color: var(--fg-muted);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 180px;
}

.hero-accent {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* ── PROBLEM ── */
.problem {
  padding: 120px 48px;
  background: var(--bg-secondary);
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem-tag,
.services-tag,
.niches-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 56px;
}

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

.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.card-icon {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── SERVICES ── */
.services {
  padding: 120px 48px;
}

.services-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.services-title,
.niches-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 56px;
  max-width: 700px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.service-item {
  background: var(--bg);
  padding: 40px;
}

.service-item:last-child {
  grid-column: span 2;
}

.service-number {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-item p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 400px;
}

/* ── NICHES ── */
.niches {
  padding: 120px 48px;
  background: var(--bg-secondary);
}

.niches-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.niche-list {
  display: flex;
  flex-direction: column;
}

.niche-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 28px 0;
}

.niche-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
}

.niche-desc {
  font-size: 14px;
  color: var(--fg-muted);
  text-align: right;
  max-width: 340px;
}

.niche-divider {
  height: 1px;
  background: var(--border);
}

/* ── CLOSING ── */
.closing {
  padding: 140px 48px;
  text-align: center;
  position: relative;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-detail p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ── FOOTER ── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

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

/* ── HERO ACTIONS ── */
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-btn {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.hero-btn--primary {
  background: var(--accent);
  color: #fff;
}

.hero-btn--primary:hover {
  background: #e84500;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.hero-btn--ghost {
  color: var(--fg);
  border: 1px solid var(--border);
  background: transparent;
}

.hero-btn--ghost:hover {
  border-color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
}

/* ── CLOSING ACTIONS ── */
.closing-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--fg);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 8px 18px;
  border-radius: 5px;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* ── INNER PAGES ── */
.inner-page {
  padding-top: 64px; /* nav height */
  min-height: 100vh;
}

.inner-page--centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 48px 56px;
}

.page-header--narrow {
  max-width: 680px;
}

.page-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.page-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ── PACKAGES ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1080px;
  margin: 0 auto 0;
  padding: 0 48px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.package-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  transition: background 0.2s ease;
}

.package-card--featured {
  background: var(--bg-secondary);
  border-left: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.package-badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(255, 77, 0, 0.3);
  padding: 4px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 20px;
}

.package-tier {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.price-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--fg);
}

.price-period {
  font-size: 16px;
  color: var(--fg-muted);
}

.package-pitch {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  min-height: 48px;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.5;
}

.package-features li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.feat-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}

.feat-muted {
  color: var(--border);
  flex-shrink: 0;
  font-size: 13px;
}

.pkg-btn {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 6px;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.pkg-btn--primary {
  background: var(--accent);
  color: #fff;
}

.pkg-btn--primary:hover {
  background: #e84500;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.pkg-btn--secondary {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.pkg-btn--secondary:hover {
  border-color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
}

.packages-footnote {
  text-align: center;
  padding: 40px 48px 0;
  font-size: 15px;
  color: var(--fg-muted);
}

.footnote-link {
  color: var(--accent);
  text-decoration: none;
}

.footnote-link:hover {
  text-decoration: underline;
}

.packages-faq {
  max-width: 800px;
  margin: 80px auto 0;
  padding: 0 48px 120px;
}

.faq-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-a {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── INTAKE FORM ── */
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px 120px;
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: grid;
  gap: 20px;
}

.form-row--2 {
  grid-template-columns: 1fr 1fr;
}

.form-row--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

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

.form-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.3px;
}

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

.form-section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.3px;
  margin-bottom: -12px;
}

.form-section-note {
  color: var(--fg-muted);
  font-weight: 400;
  font-size: 12px;
}

.form-input {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder {
  color: #444;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: #1a1a1a;
  color: var(--fg);
}

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

.input-prefix-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 14px;
  color: var(--fg-muted);
  font-size: 15px;
  pointer-events: none;
  z-index: 1;
}

.form-input--prefix {
  padding-left: 28px;
}

.intake-submit {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
  letter-spacing: 0.3px;
}

.intake-submit:hover {
  background: #e84500;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.form-fine-print {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: -12px;
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.portfolio-card {
  background: var(--bg);
  padding: 48px 44px;
  transition: background 0.2s ease;
}

.portfolio-card:hover {
  background: var(--bg-secondary);
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-niche {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: uppercase;
}

.portfolio-timeframe {
  font-size: 12px;
  color: var(--fg-muted);
}

.portfolio-result {
  margin-bottom: 20px;
}

.result-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  display: block;
}

.result-label {
  font-size: 14px;
  color: var(--fg-muted);
  display: block;
  margin-top: 6px;
}

.portfolio-story {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.portfolio-breakdown {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.breakdown-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.breakdown-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

.breakdown-key {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 120px;
  line-height: 1.4;
}

.portfolio-cta {
  text-align: center;
  padding: 100px 48px;
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.portfolio-cta-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── THANK YOU ── */
.thankyou-wrap {
  max-width: 600px;
  padding: 100px 48px;
  text-align: center;
}

.thankyou-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid rgba(255, 77, 0, 0.4);
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thankyou-next {
  margin-top: 40px;
  text-align: left;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 32px;
}

.thankyou-hint {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.thankyou-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
}

.thankyou-steps li::before {
  content: '→ ';
  color: var(--accent);
  font-weight: 700;
}

/* ── FOOTER NAV ── */
.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-nav-link--accent {
  color: var(--accent);
}

.footer-nav-link--accent:hover {
  color: #ff6a24;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 60px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .problem,
  .services,
  .niches,
  .closing {
    padding: 80px 24px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item:last-child {
    grid-column: span 1;
  }

  .niche-item {
    flex-direction: column;
    gap: 6px;
  }

  .niche-desc {
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .package-card--featured {
    border-left: none;
    border-right: none;
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
  }

  .page-header {
    padding: 48px 24px 40px;
  }

  .form-wrap {
    padding: 0 24px 80px;
  }

  .form-row--2,
  .form-row--3 {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .portfolio-cta {
    padding: 60px 24px;
  }

  .packages-faq {
    padding: 0 24px 80px;
  }

  .thankyou-wrap {
    padding: 60px 24px;
  }

  .closing-actions {
    flex-direction: column;
    align-items: center;
  }
}