:root {
  --bg: #f5f1e8;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #18201b;
  --muted: #516056;
  --line: rgba(24, 32, 27, 0.08);
  --green: #1f6a45;
  --green-dark: #153c2a;
  --gold: #d5b06c;
  --shadow: 0 20px 60px rgba(22, 32, 26, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(213, 176, 108, 0.18), transparent 28%),
    linear-gradient(180deg, #f9f6ef 0%, #eff5ef 100%);
}

a { color: inherit; text-decoration: none; }

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px 0 22px;
}

.topbar nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: white;
  padding: 14px 22px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.button:hover { background: #245f44; }
.button--secondary {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid rgba(31, 106, 69, 0.2);
  box-shadow: none;
}
.button--nav { padding: 10px 16px; }
.button--full { width: 100%; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 28px;
  padding: 44px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero h1, .section h2 { margin: 0; letter-spacing: -0.05em; }
.hero h1 { font-size: clamp(2.7rem, 7vw, 5.2rem); line-height: 0.95; max-width: 11ch; }
.hero-text, .section-heading p, .benefits li, .trust-list span, .faq-grid p, .footer p, .quote-section p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badges span {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero-panel {
  display: grid;
  gap: 16px;
}
.stat-card {
  background: var(--surface-strong);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid var(--line);
}
.stat-card.accent {
  background: linear-gradient(135deg, var(--green-dark), #295941);
  color: white;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  opacity: 0.7;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0 30px;
}
.trust-strip div {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 18px;
  text-align: center;
  font-weight: 600;
}

.section {
  padding: 34px;
  margin-bottom: 24px;
}
.section-heading { max-width: 700px; margin-bottom: 24px; }

.steps, .pricing-grid, .faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.steps article, .pricing-grid article, .faq-grid article {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}
.steps span {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.1em;
}
.steps h3, .pricing-grid h3, .faq-grid h3 { margin: 12px 0 10px; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.benefits, .pricing-grid ul, .trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.benefits li, .pricing-grid li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 12px;
}
.benefits li::before, .pricing-grid li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--green);
}

.dark-card {
  background: linear-gradient(180deg, #183627 0%, #101d16 100%);
  color: white;
}
.dark-card .eyebrow,
.dark-card .trust-list span { color: rgba(255,255,255,0.76); }
.trust-list li { margin-bottom: 18px; }
.trust-list strong { display: block; margin-bottom: 6px; }

.price {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 10px 0;
}
.price span {
  font-size: 1rem;
  color: var(--muted);
  margin-left: 4px;
}
.featured-plan {
  position: relative;
  border-color: rgba(31, 106, 69, 0.24) !important;
  box-shadow: 0 24px 50px rgba(31, 106, 69, 0.14);
}
.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(31, 106, 69, 0.12);
  color: var(--green);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.quote-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.quote-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}
.quote-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.quote-item:last-of-type { margin-bottom: 18px; }
.quote-item span { color: var(--muted); font-size: 0.9rem; }
.launch-message {
  min-height: 24px;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 600;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 4px 8px;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .quote-section,
  .steps,
  .pricing-grid,
  .faq-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell { padding: 16px; }
  .hero, .section { padding: 24px; }
  .hero h1 { font-size: 2.8rem; }
  .topbar nav { gap: 12px; }
}
