:root {
  --bg: #FAF5EF;
  --fg: #1A2B2B;
  --accent: #E8644A;
  --teal: #0B3D3D;
  --teal-light: #0F5555;
  --cream: #FAF5EF;
  --muted: #6B7B7B;
  --border: #E0D9D0;
  --widget-bg: #ffffff;
}

* { 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;
}

/* Header */
.site-header {
  padding: 20px 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 8px; }
.logo-mark { color: var(--accent); font-size: 18px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 600; color: var(--teal); }

/* Hero */
.hero { padding: 80px 48px 80px; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.hero-headline { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 58px); font-weight: 700; line-height: 1.1; color: var(--teal); margin-bottom: 24px; }
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 460px; }

/* Widget */
.hero-widget { position: relative; }
.widget-card { background: var(--widget-bg); border-radius: 16px; box-shadow: 0 4px 32px rgba(11,61,61,0.10); overflow: hidden; border: 1px solid var(--border); }
.widget-header { background: var(--teal); padding: 12px 16px; display: flex; align-items: center; gap: 6px; }
.widget-dot { width: 10px; height: 10px; border-radius: 50%; }
.widget-dot.red { background: #FF5F57; }
.widget-dot.yellow { background: #FEBC2E; }
.widget-dot.green { background: #28C840; }
.widget-title { color: rgba(255,255,255,0.7); font-size: 12px; margin-left: 8px; font-weight: 500; }
.widget-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--border); }
.stat { padding: 16px 12px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--teal); }
.stat-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.widget-contacts { padding: 12px; }
.contact-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-avatar { width: 32px; height: 32px; background: var(--teal); color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; flex-shrink: 0; }
.contact-info { flex: 1; }
.contact-name { display: block; font-size: 13px; font-weight: 600; color: var(--fg); }
.contact-status { font-size: 11px; color: var(--muted); }
.contact-badge { font-size: 10px; padding: 2px 8px; border-radius: 20px; background: var(--accent); color: #fff; font-weight: 600; }
.contact-badge.confirmed { background: #28C840; }
.contact-badge.hot { background: var(--teal); }
.widget-ai-badge { position: absolute; bottom: -16px; left: 24px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 500; padding: 6px 14px; border-radius: 20px; display: flex; align-items: center; gap: 6px; }
.ai-icon { font-size: 10px; }

/* Features */
.features { padding: 80px 48px; background: #fff; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { margin-bottom: 56px; }
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 600; color: var(--teal); line-height: 1.2; max-width: 600px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card { }
.feature-icon { color: var(--accent); font-size: 20px; margin-bottom: 16px; }
.feature-title { font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Proof */
.proof { padding: 80px 48px; background: var(--teal); }
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof .section-eyebrow { color: rgba(255,255,255,0.5); }
.proof .section-title { color: #fff; max-width: 700px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 56px; }
.pain-item { border-left: 2px solid var(--accent); padding-left: 24px; }
.pain-stat { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--accent); line-height: 1; }
.pain-desc { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 8px; line-height: 1.6; }

/* How It Works */
.howitworks { padding: 80px 48px; }
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.steps { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.step { display: flex; align-items: flex-start; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--border); flex-shrink: 0; width: 80px; }
.step-title { font-size: 20px; font-weight: 600; color: var(--teal); margin-bottom: 8px; }
.step-desc { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 500px; }

/* Closing */
.closing { padding: 100px 48px; background: var(--bg); }
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 48px); font-weight: 600; color: var(--teal); line-height: 1.2; margin-bottom: 24px; }
.closing-sub { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 600px; margin: 0 auto 40px; }
.closing-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.tag { background: var(--teal); color: #fff; font-size: 13px; font-weight: 500; padding: 8px 20px; border-radius: 24px; }

/* Footer */
.site-footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-logo { color: var(--accent); }
.footer-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: var(--teal); }
.footer-tagline { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.footer-copy { font-size: 12px; color: var(--muted); }

/* Mobile */
@media (max-width: 768px) {
  .site-header, .hero, .features, .proof, .howitworks, .closing, .site-footer { padding-left: 24px; padding-right: 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-widget { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; gap: 32px; }
  .step-num { font-size: 32px; width: 48px; }
}