:root {
  --bg: #FAFAF5;
  --bg-alt: #F0EDE6;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #52B788;
  --border: #E0DDD5;
  --white: #FFFFFF;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* Header */
.site-header {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wordmark {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.5rem;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-overline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-stat-row {
  display: flex;
  gap: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 120px;
}

/* Call Widget */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.call-widget {
  background: var(--green);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(27, 67, 50, 0.25);
}
.call-widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.call-lines { display: flex; flex-direction: column; gap: 12px; }
.call-line { display: flex; flex-direction: column; gap: 2px; }
.call-time { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
.call-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.call-status { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-top: 2px; }
.call-status.answered { color: #10B981; }
.call-status.missed { color: rgba(255,255,255,0.3); }
.call-detail { font-size: 0.8rem; color: rgba(255,255,255,0.85); padding: 8px 12px; background: rgba(255,255,255,0.08); border-radius: 8px; }
.call-detail strong { color: #F59E0B; }
.missed-compare { opacity: 0.45; text-decoration: line-through; }
.call-widget-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}

/* Proof */
.proof { background: var(--green); padding: 80px 40px; }
.proof-inner { max-width: 1140px; margin: 0 auto; }
.proof-quote-block blockquote {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #FFFFFF;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 720px;
}
.proof-quote-block cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof-quote-block cite strong { color: #F59E0B; font-size: 0.95rem; }
.proof-quote-block cite span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.proof-numbers {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.proof-number { display: flex; flex-direction: column; }
.pn-value {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 2.8rem;
  color: #F59E0B;
  line-height: 1;
  margin-bottom: 6px;
}
.pn-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }

/* Section labels */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

/* Features */
.features { padding: 80px 40px; background: var(--bg); }
.features-inner { max-width: 1140px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}
.feature-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* How */
.how { background: var(--bg-alt); padding: 80px 40px; }
.how-inner { max-width: 1140px; margin: 0 auto; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-number {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  min-width: 80px;
}
.step-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--fg); }
.step-body p { font-size: 0.9rem; color: var(--fg-muted); max-width: 600px; line-height: 1.7; }

/* Pricing */
.pricing { padding: 80px 40px; background: var(--bg); }
.pricing-inner { max-width: 1140px; margin: 0 auto; }
.pricing-context { font-size: 0.95rem; color: var(--fg-muted); max-width: 600px; line-height: 1.7; margin-bottom: 48px; }
.pricing-block { display: flex; gap: 24px; max-width: 760px; }
.pricing-tier {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  background: var(--white);
  position: relative;
}
.pricing-tier.featured { border-color: var(--green); box-shadow: 0 4px 24px rgba(27,67,50,0.12); }
.pt-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pt-header { margin-bottom: 20px; }
.pt-header h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 8px; }
.pt-price { font-family: 'Instrument Serif', Georgia, serif; font-size: 2.4rem; color: var(--fg); }
.pt-price span { font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--fg-muted); }
.pt-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pt-features li { font-size: 0.9rem; color: var(--fg-muted); padding-left: 20px; position: relative; }
.pt-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--green-light); font-weight: 700; }
.pricing-note { font-size: 0.8rem; color: var(--fg-muted); margin-top: 20px; font-style: italic; }

/* Manifesto */
.manifesto { background: var(--green); padding: 80px 40px; }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-text {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Closing */
.closing { padding: 100px 40px; background: var(--bg); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing p { font-size: 1rem; color: var(--fg-muted); line-height: 1.7; }

/* Footer */
.site-footer { background: var(--fg); padding: 32px 40px; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand .wordmark { color: var(--white); font-size: 1.3rem; }
.footer-tagline { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-meta { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { justify-content: flex-start; }
  .call-widget { max-width: 100%; }
  .hero-stat-row { gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-numbers { gap: 32px; }
  .pricing-block { flex-direction: column; }
  .step-number { font-size: 2rem; min-width: 50px; }
  .hero, .proof, .features, .how, .pricing, .manifesto, .closing, .site-header { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 480px) {
  .hero-stat-row { flex-direction: column; gap: 16px; }
  .proof-numbers { flex-direction: column; gap: 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}