:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EDE8;
  --surface: #FFFFFF;
  --fg: #0D1F26;
  --fg-muted: #4A5568;
  --accent: #E8732A;
  --accent-warm: #F59E0B;
  --teal: #0D3B47;
  --teal-light: #1A5F72;
  --missed: #E53935;
  --recovered: #2E7D32;
  --qualified: #1565C0;
  --border: #E2DDD6;
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  line-height: 1.15;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0 40px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--teal);
  letter-spacing: -0.3px;
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.2px;
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 40px 100px;
  overflow: hidden;
  background: var(--teal);
  color: white;
}
.hero-bg-shape {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,180,60,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 600;
}
.hero-headline {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #FFFFFF;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
}
.hero-proof {
  display: flex;
  gap: 20px;
  padding-top: 8px;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof-num {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-warm);
}
.proof-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}
.proof-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* WIDGET */
.hero-widget {
  display: flex;
  justify-content: flex-end;
}
.widget-card {
  background: #0A2F3C;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.widget-header {
  background: rgba(255,255,255,0.05);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.widget-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--missed);
}
.widget-dot.missed { background: var(--missed); }
.widget-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
}
.widget-body {
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.call-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.call-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.call-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.call-time {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.call-status {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.call-status.recovered { background: rgba(46,125,50,0.3); color: #81C784; }
.call-status.booked { background: rgba(232,115,42,0.3); color: #FFAB91; }
.call-status.qualified { background: rgba(21,101,192,0.3); color: #90CAF9; }
.widget-footer {
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.widget-stat {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.widget-stat.recovered { color: #81C784; font-weight: 600; }

/* SHARED SECTION STYLES */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--fg);
  margin-bottom: 20px;
}

/* PROOF SECTION */
.proof-section {
  padding: 100px 40px;
  background: var(--bg-alt);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.proof-intro {
  max-width: 640px;
  margin-bottom: 60px;
}
.proof-intro h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.proof-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.proof-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.trio-card.accent {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.trio-card.accent .trio-desc { color: rgba(255,255,255,0.65); }
.trio-card.accent .trio-stat { color: var(--accent-warm); }
.trio-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}
.trio-card.accent .trio-icon { background: rgba(255,255,255,0.1); color: white; }
.trio-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.trio-stat {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--teal);
  margin-bottom: 12px;
}
.trio-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* HOW SECTION */
.how-section {
  padding: 100px 40px;
  background: var(--bg);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-inner .section-headline {
  margin-bottom: 60px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.step {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.step:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* OUTCOMES SECTION */
.outcomes-section {
  padding: 100px 40px;
  background: var(--teal);
  color: white;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.outcomes-copy .section-eyebrow { color: var(--accent-warm); }
.outcomes-copy .section-headline { color: white; }
.outcomes-body {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.outcome-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.outcome-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-warm);
}
.outcome-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
}
.outcome-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* NICHES SECTION */
.niches-section {
  padding: 100px 40px;
  background: var(--bg-alt);
}
.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.niches-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 48px;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.niche-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}
.niche-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* CLOSING SECTION */
.closing-section {
  padding: 100px 40px;
  background: var(--teal);
  color: white;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 16px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-bottom: 40px;
}
.closing-cta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-stat {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

/* FOOTER */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--teal);
  display: block;
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-widget { justify-content: flex-start; }
  .hero { padding: 60px 24px 80px; }
  .proof-trio { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .closing-cta { flex-direction: column; gap: 12px; }
  .footer-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (max-width: 600px) {
  .niches-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; gap: 12px; }
  .proof-divider { display: none; }
  .nav { padding: 0 24px; }
  .nav-tag { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
}