* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --lime-900: #1b2e16;
  --lime-700: #2f4d22;
  --lime-500: #5b8f34;
  --lime-300: #c9e8a6;
  --sage-100: #f6f9f1;
  --cream-50: #fdfcf8;
  --ink-900: #1c1f1a;
  --ink-700: #3d4038;
  --ink-500: #5c6156;
  --accent: #f0b429;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e7eadf;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--lime-700);
}

.menu-toggle {
  background: var(--lime-500);
  color: #fff;
  border: none;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.site-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #fff;
  position: absolute;
  right: 5%;
  top: 4.4rem;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.site-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  color: var(--ink-700);
  font-weight: 600;
}

.nav-cta {
  color: #fff;
  background: var(--lime-700);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  display: inline-block;
  font-weight: 600;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2.5rem 0 4rem;
}

section {
  padding: 2.4rem 0;
}

.hero {
  background: var(--sage-100);
  border-radius: 1.5rem;
  padding: 2.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.2;
  color: var(--lime-900);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-primary {
  background: var(--lime-700);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--lime-900);
  border: 1px solid #d7dec8;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--lime-900);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.4rem;
  box-shadow: 0 12px 30px rgba(27, 46, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card h3 {
  color: var(--lime-900);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: #fff;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid #e4ead7;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--lime-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.highlight {
  background: var(--lime-700);
  color: #fff;
  border-radius: 1.4rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1rem 1.3rem;
  border-left: 6px solid var(--accent);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  background: #fff;
  border-radius: 1rem;
  padding: 1.3rem;
  box-shadow: 0 10px 26px rgba(27, 46, 22, 0.08);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid #e3e9d7;
  border-radius: 0.9rem;
  background: #fff;
}

.faq-question {
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  background: transparent;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1rem 1rem;
  display: none;
  color: var(--ink-700);
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid #e5ecd9;
}

.banner {
  background: #fff;
  border: 1px solid #e2e8d4;
  border-radius: 1.2rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  width: min(520px, 92%);
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 1rem;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.6rem;
  width: min(560px, 95%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-option {
  border: 1px solid #e6ecd8;
  border-radius: 0.9rem;
  padding: 0.8rem;
  background: #f9fbf4;
}

.footer {
  background: #172313;
  color: #dfe7d6;
  padding: 2.5rem 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.footer a {
  color: #dfe7d6;
}

.contact-block {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border: 1px solid #e5ecd9;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  background: var(--lime-300);
  color: var(--lime-900);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 1.4rem 0;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    background: transparent;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1.2;
  }

  .hero-visual {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 1rem);
    min-width: 220px;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 calc(50% - 1rem);
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
