* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f8f6f2;
  --text: #1f2a22;
  --muted: #5d6a61;
  --primary: #35644a;
  --primary-dark: #244536;
  --accent: #e7b94c;
  --soft: #ffffff;
  --border: #d9ddd7;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  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;
}

.site-header {
  background: var(--soft);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft);
  font-weight: 700;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--soft);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  position: absolute;
  top: 70px;
  right: 4%;
  width: 240px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.nav-links a {
  font-weight: 600;
  color: var(--primary-dark);
}

.nav-links.is-open {
  display: flex;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--soft);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.hero-panel {
  background: var(--soft);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.card {
  background: var(--soft);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(53, 100, 74, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--primary);
  display: block;
}

.quote {
  background: var(--primary);
  color: var(--soft);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--soft);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: var(--accent);
  color: #1c1c1c;
}

.button:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.tag {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(53, 100, 74, 0.12);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--soft);
  overflow: hidden;
}

.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem;
  background: var(--soft);
}

.highlight {
  background: rgba(231, 185, 76, 0.2);
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(231, 185, 76, 0.4);
}

.site-footer {
  background: #1e2b23;
  color: #ecf2ed;
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #ecf2ed;
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--soft);
  border: 1px solid var(--border);
  padding: 1rem 1.2rem;
  width: min(540px, 92%);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 0.9rem;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.modal-overlay.is-visible {
  display: flex;
}

.modal {
  background: var(--soft);
  border-radius: 18px;
  padding: 1.5rem;
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal h3 {
  font-size: 1.4rem;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.option-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.option-row input {
  margin-top: 0.2rem;
}

.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) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-panel {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 1.2rem);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-card {
    flex: 1;
  }

  .button-row,
  .cookie-actions {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
