:root {
  --green: #2D6A4F;
  --green-light: #3D8B6A;
  --green-dark: #1B4332;
  --gold: #C9A96E;
  --gold-light: #E0C98A;
  --bg: #FAFAF8;
  --bg-warm: #F5F0E8;
  --bg-green: #EDF5F0;
  --text: #1A1A2E;
  --text-muted: #4A4A5A;
  --text-light: #7A7A8A;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

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

em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--green);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 24px 80px;
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-green) 50%, var(--bg-warm) 100%);
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,106,79,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--green);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  max-width: 160px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--green);
  opacity: 0.2;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 24px;
  background: var(--white);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.how h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--text);
}

.how-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid rgba(45,106,79,0.1);
  align-items: flex-start;
}

.step:last-child {
  border-bottom: 1px solid rgba(45,106,79,0.1);
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 60px;
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 24px;
  background: var(--bg);
}

.features-inner {
  max-width: 960px;
  margin: 0 auto;
}

.features-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 56px;
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(45,106,79,0.08);
  transition: box-shadow 0.25s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(45,106,79,0.08);
}

.feature-highlight {
  grid-column: 1 / -1;
  background: var(--green-dark);
  color: var(--white);
  padding: 48px 36px;
  border: none;
}

.feature-highlight h3 {
  color: var(--white);
  font-size: 1.4rem;
}

.feature-highlight p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  font-size: 1rem;
}

.feature-highlight .feature-icon {
  background: rgba(201,169,110,0.2);
  color: var(--gold-light);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--green);
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 24px;
  background: var(--white);
}

.pricing-inner {
  max-width: 480px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  border: 2px solid rgba(45,106,79,0.1);
}

.pricing-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.pricing-amount {
  margin-bottom: 12px;
}

.price {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--green);
}

.period {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.pricing-list {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(45,106,79,0.06);
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.pricing-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  background: linear-gradient(175deg, var(--bg-warm) 0%, var(--bg-green) 100%);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 24px;
  color: var(--text);
}

.closing p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 24px;
  background: var(--green-dark);
  text-align: center;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-highlight {
    grid-column: 1;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .stat-divider {
    display: none;
  }

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .pricing-card {
    padding: 36px 24px;
  }

  .hero {
    padding: 72px 20px 60px;
  }

  .how, .features, .pricing {
    padding: 72px 20px;
  }

  .closing {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    gap: 12px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}