* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0f1b2d;
  --muted: #4a5a6a;
  --accent: #2f7aa4;
  --accent-soft: #e7f2f8;
  --warm: #f4efe9;
  --card: #ffffff;
  --border: #d8e2ea;
  --shadow: 0 12px 28px rgba(15, 27, 45, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #f9fbfd;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.1rem;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.site-nav {
  position: fixed;
  top: 60px;
  right: 4%;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  min-width: 210px;
}

.site-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 45, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.menu-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.nav-link {
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  background: var(--accent-soft);
}

.section {
  padding: 56px 0;
}

.section--alt {
  background: var(--warm);
}

.section--panel {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}

h1, h2, h3 {
  line-height: 1.25;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

p + p {
  margin-top: 12px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon {
  width: 44px;
  height: 44px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-item span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: #ffffff;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.faq-panel {
  padding: 0 16px 16px;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
}

.list li {
  list-style: disc;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 18px;
}

footer {
  padding: 32px 0 48px;
  background: #0f1b2d;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  width: min(720px, 92%);
  box-shadow: var(--shadow);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 45, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 40;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  width: min(620px, 95%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.toggle-row label {
  font-weight: 600;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .menu-backdrop {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid .card {
    flex: 1 1 calc(33% - 12px);
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > div {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > div {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}
