* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1f2b;
  --muted: #5b6475;
  --accent: #1b6c7a;
  --accent-dark: #134a54;
  --surface: #f4f6f8;
  --panel: #ffffff;
  --border: #d9dee5;
  --highlight: #eef5f6;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfcfd;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--surface);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  gap: 8px;
  transition: background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: var(--highlight);
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 12px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: none;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent-dark);
}

.mobile-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  right: 16px;
  left: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 50px rgba(26, 31, 43, 0.12);
  z-index: 20;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--ink);
  font-weight: 600;
}

.hero {
  padding: 70px 0 60px;
  background: linear-gradient(135deg, #f7fafb 0%, #eef3f6 100%);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.card p {
  margin-bottom: 0;
}

.action-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-actions {
  margin-top: 24px;
}

.stacked-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.align-center {
  display: flex;
  align-items: center;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.stat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat strong {
  font-size: 1.3rem;
}

.quote {
  background: var(--accent);
  color: #fff;
  padding: 28px;
  border-radius: 18px;
}

.quote p {
  color: #e6f2f4;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.icon-card {
  flex: 1 1 220px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.icon-card svg {
  width: 34px;
  height: 34px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 12px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  flex: 1 1 260px;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.faq-item button span {
  color: var(--muted);
}

.faq-content {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

.highlight-panel {
  background: var(--highlight);
  border-radius: 18px;
  padding: 24px;
}

.footer {
  background: #101822;
  color: #d8dee6;
  padding: 40px 0;
}

.footer a {
  color: #d8dee6;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer .muted {
  color: #9aa3b2;
}

.tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: #e7f1f3;
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  gap: 10px;
}

.comparison-row strong {
  font-size: 1.05rem;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(26, 31, 43, 0.2);
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 34, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.modal.open {
  display: flex;
}

.modal-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-card label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .mobile-toggle,
  .mobile-menu {
    display: none;
  }

  .hero-grid,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .hero-grid > div,
  .split > div {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .comparison-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .info-grid {
    flex-direction: row;
  }
}
