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

:root {
  --bg: #F4EFE6;
  --bg-warm: #FEFDFB;
  --green: #1C3A2C;
  --green-light: #2A5240;
  --amber: #D4762C;
  --text: #111111;
  --text-muted: #5A5A52;
  --border: #DDD8CE;
}

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

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero */
.hero {
  background: var(--green);
  color: var(--bg);
  padding: 100px 32px 96px;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.hero-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--bg);
  margin-bottom: 36px;
  max-width: 700px;
}

.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(244, 239, 230, 0.8);
  max-width: 540px;
  line-height: 1.65;
  font-weight: 400;
}

/* Stats */
.stats {
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  flex: 1;
  text-align: center;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
}

/* Features */
.features {
  padding: 96px 32px;
}

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

.section-header {
  margin-bottom: 56px;
  max-width: 640px;
}

.section-tag {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}

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

.feature-card {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  padding: 40px 36px;
}

.feature-card--wide {
  grid-column: span 2;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  margin-bottom: 24px;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Process */
.process {
  background: var(--green);
  color: var(--bg);
  padding: 96px 32px;
}

.process-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.process .section-tag { color: var(--amber); }
.process .section-title { color: var(--bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--amber);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 4px;
  min-width: 28px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--bg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.9375rem;
  color: rgba(244, 239, 230, 0.7);
  line-height: 1.65;
}

/* Pricing */
.pricing {
  padding: 96px 32px;
  background: var(--bg-warm);
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
}

.pricing-card--featured {
  border: 2px solid var(--green);
  background: var(--green);
  color: var(--bg);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--amber);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.pricing-card--featured .pricing-tier { color: rgba(244, 239, 230, 0.6); }

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-card--featured .pricing-price { color: var(--bg); }

.pricing-period {
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0.6;
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-card--featured .pricing-desc { color: rgba(244, 239, 230, 0.7); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 0.9375rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.pricing-card--featured .pricing-features li { color: var(--bg); }
.pricing-card--featured .pricing-features li::before { background: var(--amber); }

/* Closing */
.closing {
  background: var(--bg);
  padding: 96px 32px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.closing-statement {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--text);
}

/* Footer */
.footer {
  background: var(--green);
  color: var(--bg);
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--bg);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(244, 239, 230, 0.6);
}

.footer-meta {
  font-size: 0.875rem;
  color: rgba(244, 239, 230, 0.6);
  max-width: 320px;
  text-align: right;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card--wide {
    grid-column: span 1;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    flex-direction: column;
    gap: 32px;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer-meta {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero { padding: 72px 20px 72px; }
  .hero-headline { font-size: 2.75rem; }
  .features, .process, .pricing, .closing { padding: 64px 20px; }
  .feature-card { padding: 28px 24px; }
  .pricing-card { padding: 32px 24px; }
}