:root {
  --bg: #0C0C0E;
  --surface: #141416;
  --surface2: #1C1C1F;
  --fg: #F0EEE8;
  --fg-muted: #8A8880;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --border: rgba(240, 238, 232, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 99px;
}

/* Hero */
.hero {
  padding: 100px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
}

/* Proofbar */
.proofbar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.proofbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 40px;
}
.proofbar-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.proofbar-number {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}
.proofbar-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}
.proofbar-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Features */
.features {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 60px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.features-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  max-width: 520px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-icon {
  color: var(--accent);
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.feature-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Process */
.process {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.process-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  max-width: 520px;
  margin-bottom: 60px;
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -2px;
}
.step-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-arrow {
  width: 60px;
  height: 1px;
  background: var(--border);
  position: relative;
  flex-shrink: 0;
}
.step-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 6px solid var(--border);
}

/* Outcomes */
.outcomes {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.outcomes-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.outcomes-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.outcome-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.outcome-item:last-child { border-bottom: none; }
.outcome-metric {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}
.outcome-desc {
  font-size: 14px;
  color: var(--fg-muted);
}

/* Closing */
.closing {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.closing-statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.5px;
  max-width: 760px;
  color: var(--fg);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
}
.footer-sub {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 16px;
}

/* Nav CTA */
.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: var(--fg); background: var(--surface2); }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.15s;
}
.nav-cta:hover { background: #ff5a20; }

/* Pricing */
.pricing {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.pricing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.pricing-card--featured {
  background: var(--surface2);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), inset 0 0 60px var(--accent-dim);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 99px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--fg);
  line-height: 1;
}
.pricing-period { font-size: 20px; font-weight: 400; color: var(--fg-muted); }
.pricing-tagline { font-size: 14px; color: var(--fg-muted); line-height: 1.5; margin-bottom: 8px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.pricing-features li { font-size: 14px; color: var(--fg); display: flex; align-items: center; gap: 10px; }
.pricing-features .check { color: var(--accent); font-size: 16px; flex-shrink: 0; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  margin-top: 16px;
}
.pricing-cta:hover { background: var(--surface2); border-color: var(--fg-muted); }
.pricing-cta--featured { background: var(--accent); border-color: var(--accent); color: #fff; }
.pricing-cta--featured:hover { background: #ff5a20; border-color: #ff5a20; }
.pricing-note { text-align: center; font-size: 13px; color: var(--fg-muted); margin-top: 32px; }

/* Clients */
.clients {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients-inner { max-width: 1100px; margin: 0 auto; }
.clients-header { margin-bottom: 56px; }
.clients-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  max-width: 520px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.client-card { background: var(--surface2); padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; }
.client-icon {
  color: var(--accent);
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-name { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; }
.client-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* Case Study */
.casestudy {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.casestudy-header { margin-bottom: 48px; }
.casestudy-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  max-width: 560px;
}
.casestudy-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.casestudy-meta { display: flex; border-bottom: 1px solid var(--border); background: var(--surface2); }
.casestudy-client { flex: 1; padding: 20px 28px; display: flex; flex-direction: column; gap: 4px; border-right: 1px solid var(--border); }
.casestudy-client:last-child { border-right: none; }
.casestudy-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.casestudy-value { font-size: 14px; font-weight: 600; color: var(--fg); }
.casestudy-results { display: grid; grid-template-columns: 1fr 1px 1fr; padding: 40px 0; }
.cs-before, .cs-after { padding: 0 40px; }
.cs-divider { background: var(--border); width: 1px; }
.cs-before-label, .cs-after-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-muted); display: block; margin-bottom: 20px; }
.cs-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cs-list li { font-size: 15px; color: var(--fg-muted); display: flex; align-items: baseline; gap: 8px; }
.cs-list li strong { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--accent); }
.cs-quote { padding: 32px 40px; border-top: 1px solid var(--border); background: var(--surface2); }
.cs-quote blockquote { font-size: 16px; font-style: italic; color: var(--fg); line-height: 1.65; margin-bottom: 12px; }
.cs-quote cite { font-size: 13px; color: var(--fg-muted); font-style: normal; }

/* Contact */
.contact {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 40px;
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-sub { font-size: 15px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--fg-muted); }
.contact-item svg { color: var(--accent); flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--fg); }
.form-group .optional { font-weight: 400; color: var(--fg-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  transition: border-color 0.15s;
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--fg-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select { cursor: pointer; appearance: none; }
.form-group select option { background: var(--surface); color: var(--fg); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.15s;
  text-align: center;
}
.form-submit:hover { background: #ff5a20; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success { display: flex; align-items: center; gap: 10px; padding: 16px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: 10px; font-size: 14px; color: #22c55e; }
.form-success svg { flex-shrink: 0; }
.form-error { display: flex; align-items: center; gap: 10px; padding: 16px; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); border-radius: 10px; font-size: 14px; color: #ef4444; }
.hidden { display: none !important; }

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-cta-wrap { gap: 4px; }
  .nav-link { display: none; }
  .hero { padding: 60px 20px 50px; }
  .hero-headline { letter-spacing: -1px; }
  .proofbar-inner { flex-direction: column; gap: 24px; }
  .proofbar-divider { display: none; }
  .features { padding: 60px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 60px 20px; }
  .process-steps { flex-direction: column; gap: 32px; }
  .step-arrow { display: none; }
  .outcomes { padding: 60px 20px; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing { padding: 60px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .clients { padding: 60px 20px; }
  .clients-grid { grid-template-columns: 1fr; }
  .casestudy { padding: 60px 20px; }
  .casestudy-results { grid-template-columns: 1fr; }
  .casestudy-meta { flex-direction: column; }
  .cs-divider { display: none; }
  .cs-before, .cs-after { padding: 0 20px; }
  .cs-quote { padding: 24px 20px; }
  .contact { padding: 60px 20px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 60px 20px; }
  .footer { padding: 32px 20px; }
}