:root {
  --bg: #0c0c0e;
  --surface: #141418;
  --surface-2: #1c1c22;
  --border: #2a2a32;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --text: #f0ede8;
  --text-muted: #8a8894;
  --text-dim: #55545e;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 48px 96px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
}
.cta-tag {
  font-size: 14px;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  display: inline-block;
}

/* Pipeline card */
.pipeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pipeline-stage {
  padding: 14px 16px;
  background: var(--surface-2);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 3px solid var(--text-dim);
}
.stage-label { font-size: 14px; font-weight: 500; }
.stage-time { font-size: 12px; color: var(--text-muted); }
.pipeline-arrow {
  width: 2px;
  height: 20px;
  background: var(--border);
  margin: 4px auto;
}
.stage-ai { border-left-color: var(--accent); }
.stage-booked { border-left-color: #4ade80; }

.hero-stat {
  margin-top: 24px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
}
.stat-label { font-size: 13px; color: var(--text-muted); }

/* SECTIONS */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}

/* DIFFERENTIATORS */
.diff {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.diff-inner { max-width: 1200px; margin: 0 auto; }
.diff-header { margin-bottom: 56px; }
.diff-headline {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.diff-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 28px 24px;
}
.diff-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.diff-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.diff-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* SERVICES */
.services {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 0;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 36px 32px;
}
.service-tag {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* RESULTS */
.results {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.results-inner { max-width: 1200px; margin: 0 auto; }
.results-content { margin-bottom: 48px; }
.results-headline {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.results-sub { font-size: 16px; color: var(--text-muted); max-width: 560px; line-height: 1.65; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.result-item {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-align: left;
}
.result-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}
.result-label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-statement {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  max-width: 720px;
  letter-spacing: -0.5px;
}

/* FOOTER */
.footer { padding: 32px 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.footer-meta { font-size: 13px; color: var(--text-dim); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-nav { background: var(--accent); color: #0c0c0e; padding: 8px 18px; font-size: 13px; }
.btn-nav:hover { background: #ffb83d; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #0c0c0e; }
.btn-primary:hover { background: #ffb83d; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text-muted); background: var(--surface); }
.btn-ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent-dim); }
.btn-ghost:hover { background: var(--accent-dim); }
.btn-full { width: 100%; }
.btn-xl { font-size: 16px; padding: 14px 32px; border-radius: 10px; }

/* NAV — updated layout */
.nav-left { display: flex; align-items: center; gap: 16px; }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.nav-link:hover { color: var(--text); }

/* NICHES */
.niches { padding: 80px 48px; border-bottom: 1px solid var(--border); }
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-header { margin-bottom: 56px; }
.niches-headline { font-family: var(--font-display); font-size: 38px; font-weight: 700; line-height: 1.2; letter-spacing: -1px; margin-bottom: 16px; }
.niches-sub { font-size: 16px; color: var(--text-muted); max-width: 560px; line-height: 1.65; }
.niches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.niche-card { background: var(--surface); border: 1px solid var(--border); padding: 32px 28px; display: flex; flex-direction: column; }
.niche-card--featured { border-color: var(--accent); }
.niche-badge { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; color: var(--accent); margin-bottom: 16px; display: inline-block; }
.niche-icon { color: var(--accent); margin-bottom: 16px; }
.niche-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; color: var(--accent); margin-bottom: 10px; }
.niche-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.niche-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.niche-stat { font-size: 13px; color: var(--text-muted); padding-top: 16px; border-top: 1px solid var(--border); }
.niche-stat strong { color: var(--text); font-weight: 600; }
.niches-cta { margin-top: 40px; padding: 32px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.niches-cta p { font-size: 15px; color: var(--text-muted); }

/* PRICING */
.pricing { padding: 80px 48px; border-bottom: 1px solid var(--border); background: var(--surface); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-header { margin-bottom: 56px; }
.pricing-headline { font-family: var(--font-display); font-size: 38px; font-weight: 700; line-height: 1.2; letter-spacing: -1px; margin-bottom: 16px; }
.pricing-sub { font-size: 16px; color: var(--text-muted); max-width: 560px; line-height: 1.65; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.pricing-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 36px 28px; display: flex; flex-direction: column; }
.pricing-card--primary { border-color: var(--accent); background: var(--surface-2); }
.pricing-popular { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; color: #0c0c0e; background: var(--accent); padding: 4px 10px; border-radius: 20px; display: inline-block; margin-bottom: 20px; }
.pricing-tier { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.pricing-amount { font-family: var(--font-display); font-size: 44px; font-weight: 800; color: var(--text); letter-spacing: -1.5px; margin-bottom: 8px; display: flex; align-items: baseline; gap: 2px; }
.pricing-period { font-size: 18px; color: var(--text-muted); font-weight: 500; }
.pricing-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.pricing-features li { font-size: 14px; color: var(--text-muted); padding-left: 20px; position: relative; }
.pricing-features li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.pricing-ideal { font-size: 13px; color: var(--text-dim); margin-bottom: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.pricing-note { margin-top: 32px; text-align: center; font-size: 14px; color: var(--text-muted); }
.pricing-note span { color: var(--text); font-weight: 500; }

/* CLOSING — CTA block */
.closing-cta { margin-top: 48px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.closing-cta-label { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); }
.closing-cta-sub { font-size: 14px; color: var(--text-muted); max-width: 400px; line-height: 1.6; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 24px 72px; }
  .hero-headline { font-size: 38px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .diff { padding: 60px 24px; }
  .services { padding: 60px 24px; }
  .results { padding: 60px 24px; }
  .closing { padding: 72px 24px; }
  .closing-statement { font-size: 22px; }
  .nav { padding: 20px 24px; }
  .niches { padding: 60px 24px; }
  .niches-grid { grid-template-columns: 1fr; }
  .pricing { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .niches-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .diff-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-left .nav-tagline { display: none; }
}