* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1f2a2e;
  --muted: #516068;
  --primary: #3a6f6c;
  --primary-dark: #2b5351;
  --accent: #d7b07a;
  --bg: #f5f3ef;
  --bg-alt: #ffffff;
  --border: #d9d5cf;
}

body {
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-muted {
  background: #ebe7e1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(245, 243, 239, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--primary-dark);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-alt);
  position: absolute;
  top: 64px;
  right: 4%;
  width: min(260px, 90%);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(24, 32, 37, 0.12);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

.nav-links a {
  font-weight: 600;
}

.menu-toggle {
  border: 1px solid var(--primary-dark);
  background: transparent;
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 27, 31, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

body.nav-open .nav-links {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero-card {
  background: var(--bg-alt);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--primary);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  padding: 18px;
  border-radius: 14px;
  background: #f0ece7;
  border: 1px solid var(--border);
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.testimonial {
  background: var(--bg-alt);
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-alt);
  padding: 18px;
}

.section-quote {
  border-left: 4px solid var(--primary);
  padding-left: 18px;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.footer {
  background: #1f2a2e;
  color: #f8f6f1;
  padding: 40px 0;
}

.footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer small {
  color: rgba(248, 246, 241, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(22, 28, 31, 0.18);
  width: min(520px, 92%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(22, 28, 31, 0.5);
  z-index: 50;
}

.cookie-modal.show {
  display: flex;
}

.modal-content {
  background: var(--bg-alt);
  padding: 24px;
  border-radius: 18px;
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-clean {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag {
  display: inline-block;
  background: var(--accent);
  color: #3b2e1c;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .menu-toggle,
  .menu-backdrop {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .stats {
    flex-direction: row;
  }

  .stat-card {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-grid .card {
    flex: 1 1 280px;
  }
}
