* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --green-900: #0d3b2e;
  --green-700: #1d6b4d;
  --green-500: #2ea169;
  --green-200: #d9f0e4;
  --sand-100: #f6f5f1;
  --slate-900: #1c2620;
  --slate-600: #55605a;
  --slate-300: #c9d0cb;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--slate-900);
  background: var(--sand-100);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--slate-300);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-900);
}

.desktop-nav {
  display: none;
  gap: 1.5rem;
  font-weight: 500;
}

.menu-toggle {
  border: 1px solid var(--slate-300);
  background: var(--white);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.75rem 1rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--slate-300);
}

.mobile-nav.open {
  display: flex;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem 0 3rem;
}

.section {
  padding: 2.2rem 0;
}

.section.alt {
  background: var(--white);
}

.section.soft {
  background: var(--green-200);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.section-header h2 {
  font-size: 1.6rem;
  color: var(--green-900);
}

.section-header p {
  color: var(--slate-600);
  max-width: 56ch;
}

.hero {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  box-shadow: 0 12px 30px rgba(13, 59, 46, 0.08);
}

.hero h1 {
  font-size: 2.2rem;
  color: var(--green-900);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--green-700);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
}

.button.ghost {
  background: transparent;
  color: var(--green-700);
  border: 1px solid var(--green-700);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 8px 20px rgba(13, 59, 46, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.card h3 {
  color: var(--green-900);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--slate-300);
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--white);
  padding: 1.1rem;
  border-radius: 14px;
  border-left: 4px solid var(--green-500);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--green-900);
}

.quote {
  background: var(--green-900);
  color: var(--white);
  border-radius: 20px;
  padding: 2rem;
}

.quote p {
  font-size: 1.1rem;
}

.quote span {
  display: block;
  margin-top: 1rem;
  color: var(--green-200);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.comparison .card {
  border: 1px solid var(--slate-300);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial {
  background: var(--white);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid var(--slate-300);
}

.testimonial cite {
  display: block;
  margin-top: 0.7rem;
  color: var(--slate-600);
  font-style: normal;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-500);
  margin-top: 0.4rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--slate-300);
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 1rem 1.2rem;
  border: none;
  background: transparent;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-content {
  padding: 0 1.2rem 1rem;
  color: var(--slate-600);
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--slate-300);
  font-size: 0.9rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  background: var(--white);
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid var(--slate-300);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer {
  background: var(--green-900);
  color: var(--white);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(13, 59, 46, 0.18);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 59, 46, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 1.5rem;
}

.modal-backdrop.show {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 18px;
  padding: 1.6rem;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  border-radius: 12px;
  background: var(--sand-100);
}

.toggle-row button {
  border: 1px solid var(--slate-300);
  background: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 250px;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    flex: 1 1 240px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1 1 160px;
  }

  .comparison {
    flex-direction: row;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1 1 240px;
  }

  .contact-grid {
    flex-direction: row;
  }

  .info-block {
    flex: 1 1 240px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
