* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1f2a44;
  --ocean: #2f5f8f;
  --sky: #e6f0f8;
  --mint: #d9f2e6;
  --amber: #f2b94b;
  --stone: #f6f5f2;
  --ink: #1a1a1a;
  --slate: #4c5563;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(31, 42, 68, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 10;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--stone);
}

.section-accent {
  background: var(--sky);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--ocean);
  margin-bottom: 0.75rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: var(--ocean);
}

.button.ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.button.small {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.site-nav {
  display: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-weight: 500;
}

.menu-toggle {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid #ececec;
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.icon {
  width: 32px;
  height: 32px;
  fill: var(--amber);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3 {
  font-size: 1.1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ocean);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--white);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 1.6rem;
  color: var(--navy);
}

.testimonial {
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e1e5ea;
  border-radius: 12px;
  padding: 1rem;
  background: var(--white);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  display: none;
  margin-top: 0.75rem;
  color: var(--slate);
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.comparison-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: none;
  z-index: 30;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  background: var(--white);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 40;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  width: min(600px, 100%);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.icon-button {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ececec;
}

.cookie-option:last-child {
  border-bottom: none;
}

.pill {
  background: var(--mint);
  color: var(--navy);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.toggle {
  background: var(--sky);
  border: none;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}

.toggle[aria-pressed="true"] {
  background: var(--navy);
  color: var(--white);
}

@media (min-width: 768px) {
  .site-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-card {
    max-width: 360px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .comparison-card,
  .stat {
    flex: 1 1 240px;
  }

  .stats {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-card {
    flex: 1 1 260px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
