* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d2b24;
  --muted: #5a6f63;
  --surface: #f7f4ef;
  --panel: #ffffff;
  --accent: #2f6a3c;
  --accent-dark: #214a2b;
  --accent-soft: #e3f1e6;
  --sand: #efe6da;
  --border: #dde4dc;
  --shadow: 0 12px 30px rgba(29, 43, 36, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--panel);
}

.section--soft {
  background: var(--accent-soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.heading {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 12px 0 24px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 680px;
}

.site-header {
  background: var(--panel);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 12px rgba(29, 43, 36, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.menu-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.primary-nav {
  display: none;
  gap: 18px;
  font-weight: 500;
}

.primary-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus {
  border-color: var(--accent);
}

.mobile-nav {
  position: fixed;
  top: 64px;
  right: 0;
  left: 0;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  transform: translateY(-120%);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow);
  z-index: 15;
}

.mobile-nav.is-open {
  transform: translateY(0);
}

.mobile-nav a {
  font-weight: 600;
  font-size: 1.05rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: var(--panel);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  font-weight: 600;
  gap: 8px;
  transition: all 0.2s ease;
}

.button--primary {
  background: var(--accent);
  color: #fff;
}

.button--ghost {
  background: transparent;
  color: var(--accent);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(47, 106, 60, 0.2);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--panel);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card--accent {
  background: var(--accent-soft);
  border-color: transparent;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent-dark);
  border-left: 4px solid var(--accent);
  padding-left: 18px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--panel);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.2rem;
}

.testimonial {
  background: var(--panel);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.testimonial span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.9rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--panel);
}

.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.comparison-row strong {
  font-size: 1.05rem;
}

.cta-panel {
  background: var(--accent);
  color: #fff;
  padding: 36px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  padding: 32px 0 48px;
  background: #1b2d24;
  color: #f6f5f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  background: var(--panel);
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-banner {
  bottom: 0;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner .button {
  width: 100%;
}

.cookie-modal {
  top: 12%;
  margin: 0 auto;
  width: min(600px, 92%);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .primary-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 220px;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner .button {
    width: auto;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
}
