:root {
  --bg: #faf9f6;
  --fg: #1a1a18;
  --accent: #1a4d2e;
  --accent-light: #2d7a4a;
  --amber: #c97d0c;
  --amber-light: #e8a827;
  --surface: #ffffff;
  --muted: #6b6b5f;
  --border: #e4e3de;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* HERO */
.hero {
  padding: 80px 32px 100px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
  max-width: 140px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* CALL WIDGET */
.hero-visual { display: flex; justify-content: center; }
.call-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 40px rgba(26,77,46,0.08);
}
.widget-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.call-bubble {
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.incoming { background: #f0f4f1; color: var(--fg); }
.outgoing { background: var(--accent); color: #fff; }
.call-icon { font-size: 1rem; }
.call-response { margin-bottom: 12px; }
.response-line {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: 0 12px 12px 0;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 6px;
}
.ai-thinking {
  font-size: 0.7rem;
  color: var(--amber);
  font-weight: 600;
  padding-left: 4px;
}
.widget-footer {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,77,46,0.2);
}

/* SECTION COMMONS */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

/* PROBLEM */
.problem { background: var(--surface); padding: 100px 32px; }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-header { margin-bottom: 64px; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.problem-item {}
.problem-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.problem-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.problem-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* SERVICES */
.services { padding: 100px 32px; background: var(--bg); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-heading { max-width: 600px; margin: 0 auto 16px; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 520px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,77,46,0.07);
}
.service-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #f0f7f3 0%, var(--surface) 100%);
}
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: #f0f7f3;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

/* PRICING */
.pricing { padding: 100px 32px; background: var(--accent); color: #fff; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header .section-eyebrow { color: var(--amber-light); }
.pricing-header .section-heading { color: #fff; }
.pricing-sub { font-size: 1rem; color: rgba(255,255,255,0.7); }
.pricing-model { display: flex; justify-content: center; gap: 80px; align-items: center; flex-wrap: wrap; }
.math-block { text-align: left; }
.math-row {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.math-row.total { font-size: 1.3rem; font-weight: 700; }
.math-row.annual {
  border-bottom: none;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
}
.math-label { color: rgba(255,255,255,0.6); }
.math-value { font-weight: 600; }
.pricing-note {
  max-width: 320px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* HOW */
.how { padding: 100px 32px; background: var(--surface); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-header { margin-bottom: 64px; }
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.step {
  padding: 40px 48px 40px 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.step:nth-child(even) { border-right: none; padding-right: 0; }
.step:nth-child(3), .step:nth-child(4) { border-bottom: none; }
.step-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  min-width: 56px;
}
.step-content h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.step-content p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* TESTIMONIAL */
.testimonial {
  padding: 100px 32px;
  background: var(--bg);
  text-align: center;
}
.testimonial-inner { max-width: 800px; margin: 0 auto; }
.quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}
.attribution-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}
.attr-role { font-size: 0.85rem; color: var(--muted); }

/* CLOSING */
.closing { padding: 100px 32px; background: var(--accent); color: #fff; }
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}
.closing-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* FOOTER */
.site-footer {
  padding: 64px 32px 32px;
  background: var(--fg);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .wordmark { color: #fff; font-size: 1.6rem; }
.footer-brand p { margin-top: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.4); }
.footer-services-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; color: rgba(255,255,255,0.4); }
.footer-services ul, .footer-businesses ul { list-style: none; }
.footer-services li, .footer-businesses li { font-size: 0.85rem; margin-bottom: 8px; color: rgba(255,255,255,0.6); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .header-inner { padding: 14px 20px; }
  .hero { padding: 60px 20px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .call-widget { max-width: 100%; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 2rem; }
  .problem { padding: 72px 20px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services { padding: 72px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing { padding: 72px 20px; }
  .pricing-model { flex-direction: column; gap: 40px; align-items: center; }
  .how { padding: 72px 20px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; padding: 32px 0; }
  .step:nth-child(3), .step:nth-child(4) { border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .testimonial { padding: 72px 20px; }
  .closing { padding: 72px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .tagline { display: none; }
}