* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --text: #1a1f2b;
  --muted: #4f5b6b;
  --primary: #2b4de2;
  --primary-dark: #1f3bb5;
  --accent: #18a999;
  --surface: #ffffff;
  --surface-alt: #eef1f7;
  --border: #d9e0ea;
  --shadow: 0 18px 40px rgba(26, 31, 43, 0.1);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-toggle {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  position: absolute;
  top: 72px;
  right: 4%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  font-weight: 600;
  color: var(--text);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 31, 43, 0.3);
  display: none;
}

.nav-backdrop.show {
  display: block;
}

.hero {
  background: var(--surface);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 24px;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-dark);
}

.btn.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 8px;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(43, 77, 226, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 4px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.highlight {
  background: var(--primary);
  color: #fff;
  padding: 32px;
  border-radius: 22px;
}

.highlight a {
  color: #fff;
  text-decoration: underline;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
}

.faq-item .faq-content {
  padding: 0 20px 18px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-content {
  display: block;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
}

.footer-grid h3 {
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0 32px;
  color: var(--muted);
  font-size: 0.9rem;
}

.link-button {
  background: none;
  border: none;
  padding: 0;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 31, 43, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 30;
}

.cookie-modal.show {
  display: flex;
}

.modal-content {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  width: min(720px, 92%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-option {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  cursor: pointer;
}

.modal-option.active {
  border-color: var(--primary);
  background: rgba(43, 77, 226, 0.08);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .hero-inner,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-visual {
    flex: 1;
  }

  .button-row {
    flex-direction: row;
    align-items: center;
  }

  .card-grid,
  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat {
    flex: 1;
    min-width: 220px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: 20px;
  }

  .nav-backdrop {
    display: none !important;
  }
}
