:root {
  --bg: #F8F6F1;
  --bg-alt: #F0EDE6;
  --fg: #1A1A18;
  --fg-muted: #6B6B66;
  --accent: #E85D2B;
  --accent-dark: #C44E22;
  --border: #D8D4CC;
  --white: #FFFFFF;
}

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.hero-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 48px;
}
.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* HERO WIDGET */
.hero-visual {
  position: relative;
  padding-top: 16px;
}
.hero-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.widget-header {
  background: #F5F3EE;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.widget-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.widget-dot.missed { background: #F59E0B; }
.widget-label { font-size: 13px; font-weight: 500; color: var(--fg); }
.widget-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.widget-inbound { font-size: 14px; font-weight: 600; color: var(--fg); }
.widget-action { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-muted); }
.widget-spinner { width: 14px; height: 14px; border: 2px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.widget-response { background: #F0EDE6; padding: 10px 14px; border-radius: 8px; font-size: 13px; color: var(--fg); font-style: italic; border-left: 3px solid var(--accent); }
.widget-replied { background: #F0F7F4; padding: 10px 14px; border-radius: 8px; font-size: 13px; color: #2D6A4F; }
.widget-booked { font-size: 13px; font-weight: 600; color: var(--accent); }
.hero-badge {
  position: absolute;
  bottom: -12px;
  right: -8px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 0.04em;
}

/* SECTION SHARED */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 720px;
  margin-bottom: 56px;
}

/* PROBLEMS */
.problems {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  border-top: 1px solid var(--border);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.problem-card {
  background: var(--white);
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-card:nth-child(3n) { border-right: none; }
.problem-card:nth-last-child(-n+3) { border-bottom: none; }
.problem-icon { font-size: 28px; margin-bottom: 16px; }
.problem-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 10px; }
.problem-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* SOLUTIONS */
.solutions {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  background: var(--fg);
  color: white;
}
.solutions .section-label { color: #E8A87C; }
.solutions .section-headline { color: white; }
.solutions-list { display: flex; flex-direction: column; }
.solution-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.solution-row:last-child { border-bottom: none; }
.solution-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  padding-top: 4px;
}
.solution-content h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 10px; color: white; }
.solution-content p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* PROCESS */
.process {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  border-top: 1px solid var(--border);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-step-num { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 12px; }
.process-step h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* OUTCOMES */
.outcomes {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
}
.outcome-card {
  background: var(--white);
  padding: 36px 28px;
}
.outcome-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: var(--accent);
  margin-bottom: 8px;
}
.outcome-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.outcome-detail { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 80px 32px;
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 24px;
}
.closing-body { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 540px; line-height: 1.65; margin-bottom: 40px; }
.closing-stack { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.closing-stack > span:first-child { font-size: 12px; color: rgba(255,255,255,0.5); }
.stack-badge { background: rgba(255,255,255,0.15); color: white; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px; }
.closing-note { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 480px; }

/* FOOTER */
.footer {
  background: var(--fg);
  padding: 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: white;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex: 1;
}
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.25); margin-left: auto; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 56px 24px; }
  .hero-headline { font-size: 38px; }
  .hero-stat-row { grid-template-columns: 1fr; gap: 16px; }
  .hero-visual { display: none; }
  .problems { padding: 56px 24px; }
  .problems-grid { grid-template-columns: 1fr; }
  .problem-card { border-right: none; border-bottom: 1px solid var(--border); }
  .problem-card:last-child { border-bottom: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .section-headline { font-size: 30px; }
  .closing-headline { font-size: 36px; }
  .footer-links { display: none; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 30px; }
  .process-steps { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .solution-row { grid-template-columns: 1fr; gap: 8px; }
}