*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1e2432;
  background: #f8f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: #1f2a44;
  color: #ffffff;
  z-index: 10;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: #ffffff;
}

.section-muted {
  background: #eef2f3;
}

.section-header {
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #4b5d72;
  margin-bottom: 8px;
  display: block;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e0e4ea;
  position: sticky;
  top: 0;
  z-index: 5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 12px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2a44;
  letter-spacing: 0.02em;
}

.nav-toggle {
  background: #1f2a44;
  color: #ffffff;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  position: relative;
}

.nav-links {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e0e4ea;
  padding: 16px;
  border-radius: 16px;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 200px;
  box-shadow: 0 14px 30px rgba(31, 42, 68, 0.15);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: #1f2a44;
}

.hero {
  padding: 72px 0 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  color: #1f2a44;
}

.hero p {
  font-size: 1.05rem;
  margin: 0;
  max-width: 620px;
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #1f2a44;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.button.secondary {
  background: #f1b44c;
  color: #1f2a44;
}

.button.ghost {
  background: transparent;
  border: 1px solid #1f2a44;
  color: #1f2a44;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(31, 42, 68, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
}

.icon-row {
  width: 48px;
  height: 48px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #1f2a44;
  color: #ffffff;
  padding: 20px;
  border-radius: 16px;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item span {
  background: #f1b44c;
  color: #1f2a44;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid #3d8b8f;
}

.testimonial p {
  margin: 0 0 12px;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: #1f2a44;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0e4ea;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 18px;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e0e4ea;
}

.comparison-row span {
  font-weight: 600;
  color: #1f2a44;
}

.highlight-panel {
  background: #1f2a44;
  color: #ffffff;
  border-radius: 18px;
  padding: 26px;
}

.site-footer {
  background: #101622;
  color: #e6ebf2;
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #e6ebf2;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
  padding: 16px 0;
  display: none;
  z-index: 20;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 22, 34, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 30;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eef2f3;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.option-toggle[aria-pressed="true"] {
  background: #3d8b8f;
  color: #ffffff;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: #1f2a44;
}

.address-block {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(31, 42, 68, 0.08);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-checks li::before {
  content: "✓";
  color: #3d8b8f;
  font-weight: 700;
}

.legal h2 {
  margin-top: 24px;
}

.divider {
  width: 100%;
  height: 1px;
  background: #e0e4ea;
  margin: 18px 0;
}

@media (min-width: 768px) {
  .button-row {
    flex-direction: row;
    align-items: center;
  }

  .cards,
  .testimonial-list,
  .stats,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .testimonial,
  .stat,
  .comparison-row {
    flex: 1 1 calc(33% - 16px);
  }

  .feature-list {
    flex-direction: row;
  }

  .feature-item {
    flex: 1 1 0;
  }

  .info-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .header-inner {
    gap: 24px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    display: flex;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    gap: 20px;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content .highlight-panel {
    max-width: 320px;
  }

  .cookie-inner,
  .cookie-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
