:root {
  --bg: #FAF7F0;
  --bg-alt: #F0EBE1;
  --fg: #1A1A2E;
  --fg-muted: #5C5C6E;
  --accent: #E8520A;
  --accent-dark: #C4430A;
  --accent-amber: #F5A623;
  --white: #FFFFFF;
  --border: #E2DDD4;
  --font-display: 'Plus Jakarta Sans', 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;
}

/* NAV */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-body);
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg-muted);
}
.stat-arrow {
  font-size: 20px;
  color: var(--accent);
  font-weight: 700;
}
.stat-result {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

/* Hero Cards */
.hero-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.06);
  position: relative;
}
.hero-card-1 { transform: rotate(0deg); }
.hero-card-2 { transform: rotate(1deg); }
.hero-card-3 { transform: rotate(-0.5deg); }
.card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
.card-metric {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.card-bar {
  height: 4px;
  background: var(--bg-alt);
  border-radius: 2px;
  overflow: hidden;
}
.card-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* SECTIONS */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 40px;
}

/* SERVICES */
.services {
  padding: 80px 40px;
  background: var(--white);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}
.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.service-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PROOF */
.proof {
  padding: 60px 40px;
  background: var(--fg);
  color: var(--white);
}
.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.proof-stat {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
}
.proof-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* PRICING */
.pricing {
  padding: 80px 40px;
  background: var(--bg);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
}
.pricing-card-featured {
  border-color: var(--accent);
  border-width: 2px;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.pricing-period {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* PROCESS */
.process {
  padding: 80px 40px;
  background: var(--white);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: var(--border);
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--fg);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}
.closing-cta {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  font-style: italic;
}

/* FOOTER */
.footer {
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--fg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: right;
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .hero { padding: 48px 20px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 36px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .services, .pricing, .process { padding: 60px 20px; }
  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .proof-inner { flex-direction: column; gap: 32px; }
  .proof-divider { width: 60px; height: 1px; }
  .closing { padding: 64px 20px; }
  .closing-headline { font-size: 30px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-note { text-align: center; }
}