* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f5f2;
  --bg-alt: #ffffff;
  --ink: #1f2a2e;
  --muted: #5d6b72;
  --brand: #1b6b5b;
  --brand-dark: #124a3f;
  --accent: #e6b566;
  --line: #d7d9d4;
  --radius: 18px;
  --shadow: 0 12px 24px rgba(24, 34, 38, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}


[hidden] {
    display: none !important;
}


a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--brand-dark);
}

.site-nav {
  display: none;
  gap: 18px;
  font-size: 0.95rem;
}

.menu-toggle {
  background: var(--brand);
  border: none;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 12px 0;
  gap: 12px;
}

.mobile-nav a {
  padding: 6px 5%;
  font-size: 1rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 0 64px;
}

.section {
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section.alt {
  background: #eef1ee;
  box-shadow: none;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.section-header p {
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px;
  background: linear-gradient(135deg, #ffffff 0%, #e8f0ec 100%);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  color: var(--brand-dark);
  background: transparent;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.card p {
  color: var(--muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #e6f0ed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 14px;
  background: #f9f4e8;
  border: 1px solid #eddcc0;
}

.stat strong {
  font-size: 1.4rem;
}

.quote-block {
  background: var(--brand-dark);
  color: #fff;
  padding: 24px;
  border-radius: 18px;
}

.quote-block span {
  display: block;
  margin-top: 12px;
  color: #c7ddd7;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-left: 4px solid var(--accent);
  background: #fffaf0;
  border-radius: 12px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  background: var(--bg-alt);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-alt);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: transparent;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
}

.footer {
  background: #111d1b;
  color: #d2dad7;
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}

.footer small {
  color: #9fb2ad;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  background: #e6f0ed;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 90%);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 12, 0.45);
  z-index: 45;
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 90%);
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 22px;
  z-index: 50;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.cookie-option p {
  color: var(--muted);
  font-size: 0.95rem;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  padding: 18px;
  border-radius: 14px;
  background: #f2f4f1;
  border: 1px solid var(--line);
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    width: calc(50% - 8px);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-card {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .card {
    width: calc(33.333% - 11px);
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    width: calc(50% - 8px);
  }
}
