*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1c2a2f;
  background: #f5f7f5;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #dfe5e7;
  position: sticky;
  top: 0;
  z-index: 100;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f2f3e;
}

.logo svg {
  width: 36px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1rem;
}

.nav-links a {
  font-weight: 500;
}

.nav-open .nav-links {
  display: flex;
}

.mobile-toggle {
  background: #0f2f3e;
  color: #ffffff;
  border: none;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.section {
  padding: 3.5rem 0;
  background: #f5f7f5;
}

.section-alt {
  background: #ffffff;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 2.6vw + 1.5rem, 3.4rem);
  margin: 0;
  color: #0f2f3e;
}

.hero p {
  font-size: 1.05rem;
  margin: 0;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: #1f6f78;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1f6f78;
  color: #1f6f78;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid #e2e8ea;
}

.card h3 {
  margin: 0;
  color: #0f2f3e;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.feature-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eaf2f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  background: #0f2f3e;
  color: #ffffff;
  padding: 1.6rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat strong {
  font-size: 2rem;
}

.testimonial {
  background: #fff6e8;
  border-radius: 18px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.quote {
  font-size: 1.1rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #eaf2f3;
  color: #0f2f3e;
  font-size: 0.85rem;
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8ea;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 1.2rem 1rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e8ea;
  padding: 1.2rem;
}

.comparison-row strong {
  color: #0f2f3e;
}

.footer {
  background: #0f2f3e;
  color: #ffffff;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dfe5e7;
  padding: 1.2rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 200;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 47, 62, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 300;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cookie-preferences {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: #f5f7f5;
}

.cookie-toggle button {
  border: 1px solid #1f6f78;
  background: transparent;
  color: #1f6f78;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
}

.cookie-toggle button.active {
  background: #1f6f78;
  color: #ffffff;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    padding-bottom: 0;
    gap: 1.5rem;
  }

  .mobile-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1;
  }

  .hero-visual {
    flex: 0.8;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .split {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .testimonial-grid {
    display: flex;
    gap: 1.5rem;
  }

  .testimonial {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }
}
