*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2430;
  --muted: #5c667a;
  --brand: #2f5a9e;
  --brand-dark: #22406e;
  --brand-soft: #e7eef9;
  --accent: #f2a451;
  --bg: #f7f7fb;
  --white: #ffffff;
  --border: #d9dfea;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.site-nav {
  display: none;
  gap: 1.5rem;
}

.site-nav a {
  font-weight: 600;
  color: var(--muted);
}

.nav-toggle {
  background: var(--brand);
  color: var(--white);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 0 1rem;
  gap: 0.75rem;
}

.mobile-nav a {
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}

.mobile-nav.is-open {
  display: flex;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--white);
}

.section.soft {
  background: var(--brand-soft);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12rem;
  color: var(--brand);
  font-weight: 700;
}

.hero {
  padding: 3.5rem 0 2.5rem;
  background: var(--white);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  background: var(--brand);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.button.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.stat span {
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 1.2rem;
}

.testimonial {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item svg {
  flex-shrink: 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: var(--muted);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
}

.comparison-row strong {
  color: var(--brand-dark);
}

.cta-panel {
  background: var(--brand-dark);
  color: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(31, 36, 48, 0.12);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 36, 48, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 30;
}

.modal.is-visible {
  display: flex;
}

.modal-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.modal-row:last-child {
  border-bottom: none;
}

.input-toggle {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.input-toggle input {
  width: 18px;
  height: 18px;
}

.page-hero {
  background: var(--white);
  padding: 2.5rem 0 1.5rem;
}

.info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--brand-dark);
  font-weight: 600;
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content > div {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
  }

  .split > div {
    flex: 1;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 200px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1 1 250px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
