:root {
  --bg: #faf8f5;
  --bg-alt: #f0ece4;
  --fg: #1a1a18;
  --fg-muted: #6b6760;
  --accent: #2a5c41;
  --accent-light: #e8f0eb;
  --amber: #c8872a;
  --amber-light: #fdf3e3;
  --white: #ffffff;
  --border: #e2ddd6;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
}

/* HERO */
.hero {
  padding: 80px 48px 96px;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat {}
.hero-stat-value {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.hero-stat-label {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* Review card stack */
.hero-visual {
  position: relative;
}
.review-card-stack {
  position: relative;
  height: 380px;
}
.review-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  width: 280px;
}
.review-card-1 {
  top: 0; left: 0;
  transform: rotate(-2deg);
  z-index: 1;
}
.review-card-2 {
  top: 60px; left: 60px;
  transform: rotate(1.5deg);
  z-index: 2;
}
.review-card-3 {
  top: 120px; left: 30px;
  transform: rotate(-0.5deg);
  z-index: 3;
}
.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.review-stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 1px;
}
.review-source {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.review-text {
  font-size: 13px;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}
.review-footer {
  display: flex;
  justify-content: space-between;
}
.review-author {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
}
.review-business {
  font-size: 11px;
  color: var(--fg-muted);
}

/* SECTIONS */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* HOW */
.how {
  background: var(--accent);
  color: var(--white);
  padding: 96px 48px;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how .section-label { color: rgba(255,255,255,0.6); }
.how .section-headline { color: var(--white); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.how-step {}
.how-step-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  margin-bottom: 16px;
  line-height: 1;
}
.how-step-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.how-step-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* FEATURES */
.features {
  padding: 96px 48px;
  background: var(--bg);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.feature-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PROOF */
.proof {
  padding: 80px 48px;
  background: var(--bg-alt);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.proof .section-headline { margin-bottom: 12px; }
.proof .section-sub { margin: 0 auto 48px; }
.proof-types {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.proof-type {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.proof-type-icon {
  font-size: 16px;
}

/* PRICING */
.pricing {
  padding: 96px 48px;
  background: var(--bg);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pricing .section-headline { margin-bottom: 48px; }
.pricing-card {
  display: inline-block;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 48px 56px;
  text-align: left;
  position: relative;
  max-width: 400px;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-plan {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.pricing-price {
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
}
.pricing-period {
  font-size: 18px;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-note {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}
.pricing-enterprise {
  margin-top: 32px;
  font-size: 15px;
  color: var(--fg-muted);
}
.pricing-enterprise strong { color: var(--fg); }

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--fg);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: var(--fg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-logo {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { display: none; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 40px 32px; }
}
@media (max-width: 640px) {
  .hero { padding: 56px 24px 72px; }
  .how { padding: 64px 24px; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .proof { padding: 64px 24px; }
  .pricing { padding: 64px 24px; }
  .closing { padding: 72px 24px; }
  .nav { padding: 20px 24px; }
  .footer { padding: 24px; }
  .hero-stats { gap: 24px; }
  .hero-stat-value { font-size: 26px; }
}