* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f8f5;
  --bg-alt: #eef3ee;
  --text: #1f2a24;
  --muted: #4a5a52;
  --primary: #1f7a4a;
  --primary-dark: #165a36;
  --accent: #5bbf84;
  --card: #ffffff;
  --border: #d7e2d8;
  --shadow: 0 12px 30px rgba(24, 36, 28, 0.08);
}

body {
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
  position: absolute;
  right: 20px;
  top: 70px;
  width: 220px;
  box-shadow: var(--shadow);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  padding: 6px 0;
}

.hero {
  padding: 64px 0 48px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.2rem;
}

.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.highlight {
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 24px;
}

.highlight p {
  color: #f0fff7;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.stat {
  background: var(--card);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
}

.quote {
  background: #1f3d2b;
  color: #e9f7ef;
  padding: 32px;
  border-radius: 16px;
  margin-top: 24px;
}

.quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  color: #c7e8d6;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.step span {
  background: var(--accent);
  color: #1b2b23;
  font-weight: 700;
  border-radius: 10px;
  padding: 6px 10px;
  min-width: 34px;
  text-align: center;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial strong {
  color: var(--primary-dark);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  text-align: left;
  padding: 16px;
  border: none;
  background: transparent;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-content {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-content {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.comparison-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta {
  background: #163a27;
  color: #eaf6ef;
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cta p {
  color: #cfe7da;
}

.footer {
  padding: 32px 0;
  background: #0f2419;
  color: #d7e4dd;
  margin-top: 40px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 18px;
  display: none;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 21, 16, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--card);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 520px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.cookie-option label {
  font-weight: 600;
}

.text-muted {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e5efe8;
  color: #1f3d2b;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.list svg {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.table-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    border: none;
    padding: 0;
    box-shadow: none;
    width: auto;
    gap: 18px;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .button-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 240px;
  }

  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial {
    flex: 1 1 280px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
  }

  .table-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
