/* Base */
:root {
  --green:      #1B4332;
  --green-mid: #2D6A4F;
  --green-pale: #40916C;
  --cream:      #FEFAE0;
  --cream-dark: #F5EED6;
  --amber:      #E9A626;
  --amber-dark: #C8860E;
  --text:      #1A1A1A;
  --text-muted: #5A5A5A;
  --white:     #FFFFFF;
}

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

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

/* Nav */
.nav { padding: 20px 0; border-bottom: 1px solid var(--cream-dark); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; display: flex; align-items: baseline; gap: 16px; }
.nav-logo { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--green); }
.nav-tagline { font-size: 14px; color: var(--text-muted); }

/* Hero */
.hero { max-width: 1100px; margin: 0 auto; padding: 80px 32px 64px; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--green); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 40px; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-headline { font-family: 'DM Serif Display', serif; font-size: clamp(36px, 4vw, 56px); line-height: 1.1; color: var(--green); margin-bottom: 24px; }
.hero-headline em { color: var(--amber-dark); font-style: italic; }
.hero-sub { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 440px; }

.hero-stat-row { display: flex; flex-direction: column; gap: 16px; }
.hero-stat { display: flex; align-items: baseline; gap: 12px; }
.stat-number { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--green); flex-shrink: 0; }
.stat-label { font-size: 14px; color: var(--text-muted); }

/* Phone mockup */
.phone-frame {
  background: var(--green);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 32px 64px rgba(27,67,50,0.25);
  position: relative;
}
.phone-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.phone-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); }
.phone-label { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500; }

.phone-chat { display: flex; flex-direction: column; gap: 10px; }
.chat-agent { display: flex; align-items: flex-start; gap: 8px; }
.chat-customer { display: flex; justify-content: flex-end; }
.chat-agent-avatar {
  width: 26px; height: 26px; border-radius: 50%; background: var(--amber);
  color: var(--green); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.chat-bubble { max-width: 80%; padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.5; }
.chat-bubble.agent { background: rgba(255,255,255,0.12); color: #E8F5E9; border-bottom-left-radius: 4px; }
.chat-bubble.customer { background: var(--amber); color: var(--green); border-bottom-right-radius: 4px; }
.chat-bubble.confirmed { background: rgba(233,166,38,0.3); border: 1px solid var(--amber); }

.phone-badge {
  margin-top: 16px; text-align: center; font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.5); letter-spacing: 0.05em; text-transform: uppercase;
}

/* Section shared */
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber-dark); margin-bottom: 12px; }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3vw, 40px); color: var(--green); line-height: 1.2; max-width: 600px; margin-bottom: 48px; }

/* How it works */
.how-it-works { background: var(--white); padding: 96px 32px; }
.how-it-works-inner { max-width: 1100px; margin: 0 auto; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-card { position: relative; }
.step-number { font-family: 'DM Serif Display', serif; font-size: 64px; color: var(--cream-dark); margin-bottom: 16px; line-height: 1; }
.step-title { font-size: 20px; font-weight: 600; color: var(--green); margin-bottom: 12px; }
.step-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* For who */
.for-who { max-width: 1100px; margin: 0 auto; padding: 96px 32px; }
.for-who-intro { font-size: 18px; color: var(--text-muted); max-width: 560px; margin-bottom: 48px; }

.niches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.niche-card {
  border: 1.5px solid var(--cream-dark);
  border-radius: 16px;
  padding: 28px;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.niche-card:hover { border-color: var(--green-pale); box-shadow: 0 8px 24px rgba(27,67,50,0.08); }
.niche-icon { font-size: 32px; margin-bottom: 12px; }
.niche-card h3 { font-size: 16px; font-weight: 600; color: var(--green); margin-bottom: 8px; }
.niche-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Pricing philosophy */
.pricing-philosophy { background: var(--green); color: var(--white); padding: 96px 32px; }
.pricing-philosophy .section-label { color: var(--amber); }
.pricing-philosophy .section-title { color: var(--white); }

.pricing-blocks { display: grid; grid-template-columns: 1fr auto 1fr; gap: 48px; align-items: start; margin-bottom: 48px; }
.pricing-block { }
.pricing-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.pricing-amount { font-family: 'DM Serif Display', serif; font-size: clamp(36px, 4vw, 52px); color: var(--amber); margin-bottom: 16px; }
.pricing-desc { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.pricing-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

.pricing-truth { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 32px; }
.pricing-truth p { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.7; }
.pricing-truth strong { color: var(--amber); }

/* Closing */
.closing { background: var(--cream-dark); padding: 96px 32px; }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline { font-family: 'DM Serif Display', serif; font-size: clamp(32px, 3.5vw, 52px); color: var(--green); margin-bottom: 24px; max-width: 640px; }
.closing-body { font-size: 18px; color: var(--text-muted); max-width: 520px; margin-bottom: 24px; line-height: 1.7; }
.closing-tagline { font-size: 20px; font-weight: 600; color: var(--green-mid); }

/* Footer */
.footer { background: var(--green); padding: 40px 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--white); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-note { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .phone-frame { max-width: 360px; }
  .steps-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-blocks { grid-template-columns: 1fr; gap: 32px; }
  .pricing-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 20px 40px; }
  .hero-headline { font-size: 32px; }
  .niches-grid { grid-template-columns: 1fr; }
  .how-it-works, .for-who, .pricing-philosophy, .closing { padding: 64px 20px; }
}