* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #0f1c22;
  background: #f6f8fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #dfe6ef;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #1a5d78;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  width: 100%;
  padding: 12px 0 20px;
}

.nav-links a {
  font-weight: 500;
}

.nav-toggle {
  background: #1a5d78;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.nav-open .nav-links {
  display: flex;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 0 80px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  background: #0e2a36;
  color: #ffffff;
  padding: 40px 0;
  border-radius: 24px;
  gap: 28px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  background: #1a5d78;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button.secondary {
  background: #ffffff;
  color: #0e2a36;
}

.tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #88b3c8;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e3e9f2;
  box-shadow: 0 12px 22px rgba(14, 42, 54, 0.08);
}

.card svg {
  width: 40px;
  height: 40px;
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid #e4ebf4;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  background: #102f3f;
  color: #fff;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote {
  background: #eff6f9;
  padding: 24px;
  border-left: 4px solid #1a5d78;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pill {
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d3dce8;
  font-size: 0.85rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #d9e2ee;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  background: #f2f6fb;
  border: none;
  width: 100%;
  text-align: left;
  padding: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  display: none;
  padding: 16px;
  border-top: 1px solid #e4ebf4;
}

.faq-item.open .faq-answer {
  display: block;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f1;
}

.service-price {
  font-weight: 700;
  color: #1a5d78;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-card {
  background: #0e2a36;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.banner {
  background: #1a5d78;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer {
  background: #0e2a36;
  color: #ffffff;
  padding: 30px 0 40px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.footer-meta {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #b8c8d4;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #d7e0eb;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 20px 30px rgba(15, 28, 34, 0.2);
  z-index: 100;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 42, 54, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 120;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f0f4f9;
  padding: 12px 16px;
  border-radius: 12px;
  gap: 10px;
}

.toggle button {
  background: #1a5d78;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    padding: 0;
    width: auto;
    gap: 18px;
  }

  .hero {
    padding: 60px 40px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    max-width: 520px;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .feature-row {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .service-table {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-row {
    flex: 1 1 260px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-card {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
