* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand: #2d6a4f;
  --brand-dark: #1b4332;
  --accent: #95d5b2;
  --accent-soft: #d8f3dc;
  --ink: #1f2933;
  --muted: #5f6c7b;
  --surface: #ffffff;
  --surface-alt: #f7faf8;
  --border: #e2e8f0;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section--muted {
  background: var(--surface-alt);
}

.section--highlight {
  background: var(--accent-soft);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--brand-dark);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  color: var(--brand);
  margin-bottom: 10px;
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 760px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: transparent;
  color: var(--brand-dark);
  box-shadow: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 1.2rem;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  position: absolute;
  top: 68px;
  right: 16px;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0 12px;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--brand-dark);
  line-height: 1.2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: var(--accent);
  color: var(--brand-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card--outlined {
  box-shadow: none;
  background: transparent;
}

.card h3 {
  font-size: 1.2rem;
  color: var(--brand-dark);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-row svg {
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 12px;
  background: var(--accent-soft);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}

.stat strong {
  font-size: 1.4rem;
  color: var(--brand-dark);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.quote {
  font-size: 1.3rem;
  color: var(--brand-dark);
  font-style: italic;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-tier {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.comparison-tier h3 span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checklist li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checklist svg {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  color: var(--muted);
  transition: max-height 0.25s ease;
}

.faq-item[data-open="true"] .faq-answer {
  max-height: 220px;
  padding-bottom: 16px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--surface-alt);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner[data-visible="true"] {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal[data-open="true"] {
  display: flex;
}

.cookie-panel {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 12px;
}

.cookie-toggle button {
  border: 1px solid var(--border);
  background: var(--surface-alt);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-toggle button[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: 18px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-list span {
  color: var(--muted);
  font-weight: 600;
}

.tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-content {
    max-width: 560px;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split-panel {
    flex: 1;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 220px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-tier {
    flex: 1 1 260px;
  }

  .cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .two-col {
    flex-direction: row;
  }

  .footer {
    padding: 40px 0;
  }

  .footer-links {
    flex-direction: row;
    gap: 20px;
  }

  .footer-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
