:root {
  --bg: #f7f6f2;
  --bg-alt: #ffffff;
  --text: #1f2a24;
  --muted: #5b6b62;
  --accent: #2e7d6b;
  --accent-dark: #235e52;
  --accent-soft: #d9efe9;
  --border: #d7ded8;
  --warning: #9c6b2f;
  --shadow: 0 12px 30px rgba(17, 32, 26, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--accent);
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar {
  display: flex;
  flex-direction: row;
  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.5px;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 12px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 12px;
  display: none;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.emphasis {
  background: var(--accent-soft);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.section-header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.hero {
  padding: 56px 0 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.icon-card img {
  width: 40px;
  height: 40px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-panel {
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.6rem;
}

.quote {
  background: var(--bg-alt);
  padding: 24px;
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  font-style: italic;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-alt);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  border: none;
  background: transparent;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 20px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item span {
  font-weight: 600;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: var(--bg-alt);
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.footer {
  background: #1b2420;
  color: #f7f6f2;
  padding: 40px 0 20px;
}

.footer a {
  color: inherit;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 18, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preference {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preference-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.preference-toggle button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--bg-alt);
  font-weight: 600;
}

.preference-toggle button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (min-width: 768px) {
  .container {
    max-width: 1100px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    gap: 20px;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 20px);
  }

  .split {
    flex-direction: row;
  }

  .split-panel {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}
