* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f24;
  background: #f7f6f2;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e6e1d7;
  position: sticky;
  top: 0;
  z-index: 10;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #22233b;
}

.nav-links {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 24px;
}

.nav-links a {
  font-weight: 500;
  color: #22233b;
}

.menu-toggle {
  border: 1px solid #22233b;
  background: transparent;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-top: 1px solid #e6e1d7;
  padding: 16px 0 24px;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  font-weight: 600;
  color: #2b2f3f;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: #ffffff;
}

.section.highlight {
  background: #1f3a5f;
  color: #ffffff;
}

.section.muted {
  background: #efe9dd;
}

.section-title {
  margin: 0 0 16px;
  font-size: 2rem;
  color: inherit;
}

.section-lead {
  margin: 0 0 24px;
  max-width: 720px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
  color: #1f3a5f;
}

.hero p {
  max-width: 680px;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid #1f3a5f;
  background: #1f3a5f;
  color: #ffffff;
  transition: transform 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn.secondary {
  background: transparent;
  color: #1f3a5f;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(24, 33, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.icon-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.icon-row svg {
  width: 32px;
  height: 32px;
  color: #1f3a5f;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #d5cfc3;
  font-size: 0.9rem;
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat strong {
  font-size: 1.4rem;
  color: #1f3a5f;
}

.testimonial {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial blockquote {
  margin: 0;
  font-style: italic;
}

.quote-author {
  font-weight: 600;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
}

.comparison-row span {
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  margin: 12px 0 0;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  background: #151826;
  color: #f7f6f2;
  padding: 32px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(24, 33, 51, 0.2);
  width: min(520px, 92%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 18, 28, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 30;
}

.modal-overlay.is-visible {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  width: min(560px, 95%);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #e6e1d7;
  border-radius: 12px;
}

.cookie-toggle button {
  border-radius: 999px;
  border: 1px solid #1f3a5f;
  background: transparent;
  padding: 6px 14px;
  cursor: pointer;
}

.notice {
  padding: 18px;
  background: #ffffff;
  border-radius: 14px;
}

.service-price {
  font-weight: 700;
  color: #1f3a5f;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-block {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .split {
    flex-direction: row;
  }

  .card-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .stat-bar {
    flex-direction: row;
  }

  .stat {
    flex: 1 1 0;
  }

  .testimonial-grid {
    display: flex;
    gap: 18px;
  }

  .testimonial {
    flex: 1 1 0;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1 1 0;
  }

  .faq {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq-item {
    flex: 1 1 320px;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
