* {
  box-sizing: border-box;
}

:root {
  --green-900: #1f3b2c;
  --green-700: #2f5b41;
  --green-500: #4a7d55;
  --green-200: #dfe9de;
  --stone-100: #f6f5f1;
  --stone-300: #e3e0d8;
  --sun-400: #f1b74c;
  --text-900: #1b1e1c;
  --text-600: #4a4f4b;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-900);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-700);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--stone-300);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: var(--green-900);
}

.menu-toggle {
  border: 1px solid var(--green-700);
  background: var(--white);
  color: var(--green-900);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}

.primary-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--white);
  padding: 1rem 0;
}

.primary-nav a {
  font-weight: 600;
  color: var(--text-600);
}

.nav-open .primary-nav {
  display: flex;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--stone-100);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--green-500);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--green-900);
}

p {
  margin: 0 0 1rem 0;
  color: var(--text-600);
}

.hero {
  background: linear-gradient(120deg, var(--stone-100), var(--green-200));
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 20px 40px rgba(31, 59, 44, 0.1);
}

.hero-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-700);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--green-700);
  color: var(--green-900);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--stone-300);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1 1 240px;
}

.card strong {
  color: var(--green-900);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 26px;
  height: 26px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item span {
  font-weight: 700;
  color: var(--green-700);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--stone-300);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--green-900);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote {
  background: var(--green-900);
  color: var(--white);
  padding: 2rem;
  border-radius: 1.25rem;
}

.quote p {
  color: var(--white);
}

.quote span {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--green-200);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-item strong {
  min-width: 72px;
  color: var(--green-700);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--stone-300);
  border-radius: 0.9rem;
  padding: 1rem;
}

.comparison-row span {
  font-weight: 600;
  color: var(--green-900);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--stone-300);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  cursor: pointer;
}

.faq-panel {
  display: none;
  padding: 0 1.25rem 1.25rem;
  background: var(--white);
}

.faq-item.is-open .faq-panel {
  display: block;
}

.cta {
  background: var(--green-700);
  color: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta p {
  color: var(--white);
}

.site-footer {
  background: var(--green-900);
  color: var(--white);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--green-200);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 200;
  display: none;
}

.cookie-banner.is-visible {
  display: flex;
}

.banner-inner {
  background: var(--white);
  border-radius: 1.2rem;
  border: 1px solid var(--stone-300);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(31, 59, 44, 0.12);
}

.banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 59, 44, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 300;
}

.modal.is-visible {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  width: min(600px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-close {
  align-self: flex-end;
  border: none;
  background: var(--stone-100);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-option {
  background: var(--stone-100);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cookie-toggle {
  align-self: flex-start;
  margin-top: 0.3rem;
  border: 1px solid var(--green-700);
  background: var(--white);
  color: var(--green-900);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-weight: 600;
}

.cookie-toggle.is-active {
  background: var(--green-700);
  color: var(--white);
}

@media (min-width: 768px) {
  .primary-nav {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1 1 55%;
  }

  .hero-highlights {
    flex: 1 1 45%;
  }

  .cards,
  .stats,
  .testimonials,
  .split,
  .banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .timeline-item {
    align-items: center;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .banner-actions {
    align-items: center;
  }
}
