:root {
  --bg: #0c0c0c;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --fg: #f5f5f5;
  --fg-muted: #888;
  --accent: #ff5c00;
  --accent-dim: rgba(255,92,0,0.15);
  --border: rgba(255,255,255,0.08);
  --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(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,12,12,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

/* Section base */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--fg);
  max-width: 580px;
}

/* Hero */
.hero {
  padding: 80px 24px 100px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.eyebrow-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-eyebrow span:last-child {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}

/* Hero card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 0 1px rgba(255,92,0,0.08), 0 24px 48px rgba(0,0,0,0.4);
}
.card-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.card-items { display: flex; flex-direction: column; gap: 14px; }
.card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--fg);
  font-weight: 400;
}
.item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.video-icon  { background: rgba(255,92,0,0.15); color: var(--accent); }
.reel-icon   { background: rgba(139,92,246,0.15); color: #a78bfa; }
.graphic-icon{ background: rgba(34,197,94,0.12); color: #22c55e; }
.ad-icon     { background: rgba(59,130,246,0.12); color: #3b82f6; }

/* Who it's for */
.whoitsfor { padding: 90px 0; }
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.client-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 15px;
  color: var(--fg);
  transition: background 0.2s;
}
.client-card:hover { background: var(--bg-card-hover); }
.client-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* What you get */
.whatyouget { padding: 90px 0; background: #0f0f0f; }
.deliverable-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.deliverable {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.deliverable:first-child { border-top: 1px solid var(--border); }
.del-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  padding-top: 4px;
}
.del-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.del-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 520px;
}

/* Process */
.process { padding: 90px 0; }
.steps-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 0;
  margin-top: 56px;
}
.step { padding: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  height: 1px;
  background: var(--border);
  position: relative;
}

/* Pricing */
.pricing { padding: 90px 0; background: #0f0f0f; }
.pricing-card {
  margin-top: 56px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  max-width: 560px;
  box-shadow: 0 0 0 1px rgba(255,92,0,0.06), 0 32px 64px rgba(0,0,0,0.3);
}
.pricing-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.pricing-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-price { display: flex; align-items: baseline; gap: 6px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1;
}
.price-period {
  font-size: 15px;
  color: var(--fg-muted);
}
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 32px; }
.pricing-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pricing-features li {
  font-size: 15px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
}
.pricing-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* Proof */
.proof {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof .section-inner {
  display: flex;
  gap: 80px;
  align-items: center;
}
.proof-stat { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -3px;
}
.stat-label {
  font-size: 15px;
  color: var(--fg-muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* Closing */
.closing { padding: 100px 0; }
.closing .section-inner { text-align: center; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.25;
  letter-spacing: -1px;
  max-width: 680px;
  margin: 0 auto 20px;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
}

/* CTA button (closing section) */
.closing-cta { margin-top: 32px; }
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.1s;
}
.cta-btn:hover { background: #e65100; }
.cta-btn:active { transform: scale(0.98); }

/* Footer */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}
.footer-sub {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px 70px;
  }
  .hero-right { order: -1; }
  .client-grid { grid-template-columns: 1fr 1fr; }
  .steps-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-connector { display: none; }
  .step { border-bottom: 1px solid var(--border); padding: 24px 0; }
  .step:last-child { border-bottom: none; }
  .pricing-card { padding: 32px 24px; }
  .pricing-features { grid-template-columns: 1fr; }
  .pricing-top { flex-direction: column; gap: 8px; }
  .proof .section-inner { flex-direction: column; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .client-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 56px; }
}