* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f9f3;
  --card: #ffffff;
  --card-2: #eef5e8;
  --text: #1f2b20;
  --muted: #5b6b5d;
  --primary: #2e7d32;
  --primary-dark: #205924;
  --line: #d9e3d4;
  --shadow: 0 18px 50px rgba(31, 43, 32, 0.10);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, #ffffff 0%, #f6f9f3 45%, #edf4e9 100%);
  line-height: 1.6;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 249, 243, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 227, 212, 0.8);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2e7d32, #6ebf6e);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand {
  font-size: 1.2rem;
  font-weight: 800;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav a {
  font-weight: 600;
  color: var(--text);
}

.hero {
  padding: 72px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: start;
}

.eyebrow,
.section-tag,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e9f5e8;
  border: 1px solid #cfe4cd;
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-text {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 680px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.badges span {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.lead-card,
.info-panel,
.price-card,
.feature-card,
.cta-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-card {
  padding: 24px;
  position: sticky;
  top: 100px;
}

.card-header h2 {
  margin: 0 0 6px;
  font-size: 1.7rem;
}

.card-header p {
  margin: 0 0 18px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #cfdcc8;
  background: #fbfdf9;
  border-radius: 14px;
  padding: 14px 14px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.12);
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  font-weight: 500 !important;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 0.15s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #57a55b);
  color: #fff;
}

.btn-secondary {
  background: var(--text);
  color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
  text-decoration: none;
  opacity: 0.96;
}

.form-note,
.form-message,
.section-head p,
.info-panel,
.price-card p,
.feature-card p,
.footer p {
  color: var(--muted);
}

.form-message {
  min-height: 24px;
  font-weight: 700;
}

.form-message.success {
  color: #1f7a34;
}

.form-message.error {
  color: #b12828;
}

.trust-strip {
  padding: 0 0 8px;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-items div {
  background: var(--card-2);
  border: 1px solid #d8e7d4;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  font-weight: 700;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: rgba(233, 245, 232, 0.56);
  border-top: 1px solid rgba(217, 227, 212, 0.65);
  border-bottom: 1px solid rgba(217, 227, 212, 0.65);
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.two-col h2,
.section-head h2,
.cta-box h2 {
  margin: 14px 0;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  line-height: 1.12;
}

.info-panel {
  padding: 24px;
}

.info-panel h3 {
  margin-top: 0;
}

.info-panel ul {
  margin: 0;
  padding-left: 18px;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.pricing-grid,
.features-grid {
  display: grid;
  gap: 22px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
}

.price-card,
.feature-card {
  padding: 24px;
}

.price-card h3 {
  margin: 14px 0 10px;
  font-size: 2rem;
}

.price-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.price-card.featured {
  background: linear-gradient(180deg, #ffffff, #f2f9ef);
  transform: translateY(-6px);
}

.cta-box {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer {
  padding: 34px 0 44px;
  background: #1f2b20;
  color: rgba(255,255,255,0.92);
}

.footer a {
  color: rgba(255,255,255,0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer-brand {
  color: #fff;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 8px;
}

.policy-page {
  padding: 60px 0;
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.policy-card h1 {
  margin-top: 0;
}

.policy-card h2 {
  margin-top: 28px;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card ul {
  padding-left: 20px;
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .pricing-grid,
  .features-grid,
  .footer-grid,
  .trust-items,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .lead-card {
    position: static;
  }

  .cta-box,
  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    justify-content: center;
  }
}
