*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a2d;
  background: #f7f8f9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e7ea;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 12px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1b4b5a;
  letter-spacing: 0.02em;
}

.site-nav {
  display: none;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.nav-toggle {
  background: #1b4b5a;
  color: #ffffff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 600;
}

.mobile-nav {
  background: #ffffff;
  border-top: 1px solid #e2e7ea;
  padding: 16px 0;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.hero {
  padding: 48px 0 36px;
  background: #eef6f8;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  margin: 0;
  font-size: 2.2rem;
  color: #11313b;
}

.hero p {
  margin: 0;
  font-size: 1.05rem;
  color: #2b3c41;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 600;
  background: #1b4b5a;
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  border-color: #1b4b5a;
  color: #1b4b5a;
}

section {
  padding: 40px 0;
}

.section-title {
  margin: 0 0 18px;
  font-size: 1.6rem;
  color: #11313b;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e7ea;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.feature-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight-panel {
  background: #1b4b5a;
  color: #ffffff;
  padding: 28px;
  border-radius: 14px;
}

.highlight-panel h3 {
  margin-top: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #dfe7ea;
}

.stat-item span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1b4b5a;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid #1b4b5a;
  padding: 18px;
  border-radius: 10px;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-block {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e2e7ea;
}

.icon-block img {
  width: 40px;
  height: 40px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  background: #ffffff;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #e2e7ea;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  background: #f3f7f8;
}

.service-price {
  font-weight: 700;
  color: #1b4b5a;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e2e7ea;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px;
  display: none;
  color: #32444a;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-strip {
  background: #dcecef;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid #e2e7ea;
  padding: 28px 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #dfe7ea;
  border-radius: 12px;
  padding: 16px;
  width: min(92%, 420px);
  display: none;
  z-index: 30;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 24, 28, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 40;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  width: min(92%, 520px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  background: #f4f7f8;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cookie-toggle {
  background: #1b4b5a;
  color: #ffffff;
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #e2e7ea;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.address-block {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e7ea;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .site-nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1;
    padding-right: 24px;
  }

  .card-grid,
  .icon-row,
  .stats,
  .comparison,
  .timeline,
  .feature-row,
  .split,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .icon-block,
  .stat-item,
  .timeline-item,
  .comparison .card {
    flex: 1 1 calc(50% - 12px);
  }

  .feature-row .card {
    flex: 1 1 calc(33% - 12px);
  }

  .footer-grid > div {
    flex: 1 1 200px;
  }

  .split > div {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .card,
  .icon-block,
  .stat-item,
  .timeline-item {
    flex: 1 1 calc(33% - 12px);
  }

  .comparison .card {
    flex: 1 1 calc(50% - 12px);
  }
}
