:root {
  color-scheme: light;
  --bg: #f7f5f2;
  --text: #1c1f24;
  --muted: #5b616c;
  --brand: #2f6f6e;
  --brand-dark: #244e4d;
  --accent: #f2b650;
  --surface: #ffffff;
  --line: #e2e0dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-highlight {
  background: #e7efe9;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--brand-dark);
  font-weight: 600;
}

.headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0.6rem 0 1rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 720px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.grid-split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 12px 28px rgba(28, 31, 36, 0.08);
}

.card-compact {
  padding: 1.2rem;
}

.card span {
  color: var(--muted);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stat {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.3rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--brand-dark);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.list-check li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  border: none;
  font-weight: 600;
}

.button-secondary {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid var(--brand);
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.55rem;
  border-radius: 12px;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--brand-dark);
  display: block;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--surface);
  position: absolute;
  right: 4%;
  top: 64px;
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid var(--line);
  min-width: 210px;
  box-shadow: 0 20px 40px rgba(20, 20, 20, 0.12);
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: var(--brand-dark);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-card {
  background: var(--surface);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  box-shadow: 0 18px 36px rgba(26, 32, 36, 0.08);
}

.highlight-panel {
  background: #fff3dd;
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  border: 1px solid #f0d3a1;
}

.testimonial {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.testimonial em {
  color: var(--muted);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.comparison-item {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--brand-dark);
  text-align: left;
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.is-open p {
  display: block;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #e9f1f1;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.site-footer {
  background: #11171b;
  color: #f5f6f7;
  padding: 2.8rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-grid a {
  color: #f5f6f7;
}

.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  width: min(920px, 90%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 40;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 50;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  width: min(620px, 90%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border: 1px solid var(--line);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-options label {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media (min-width: 760px) {
  .grid-split {
    flex-direction: row;
    align-items: center;
  }

  .grid-split > * {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .stats {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 1.4rem;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    min-width: unset;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
  }
}
