*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --navy: #0b3b5b;
  --blue: #1c6e8c;
  --sky: #6ec1d6;
  --ice: #eef6f8;
  --snow: #ffffff;
  --slate: #2a2f35;
  --muted: #5b6770;
  --accent: #f0b429;
  --line: #d9e4ea;
  --shadow: 0 10px 30px rgba(11, 59, 91, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--slate);
  background: var(--snow);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--navy);
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 20px;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--navy);
  color: var(--snow);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
  box-shadow: none;
}

.btn.ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  box-shadow: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.menu-toggle {
  border: 1px solid var(--line);
  background: var(--snow);
  padding: 10px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  display: block;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--navy);
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-top: 1px solid var(--line);
  background: var(--snow);
}

.mobile-menu.active {
  display: flex;
}

.section {
  padding: 0 20px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  background: linear-gradient(120deg, var(--ice), #ffffff 50%, #f7fbfd);
  padding: 56px 20px 40px;
}

.hero .section-inner {
  gap: 32px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--navy);
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--snow);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--snow);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.card h3 {
  margin-top: 0;
  color: var(--navy);
}

.icon-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-line svg {
  width: 42px;
  height: 42px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split .panel {
  background: var(--ice);
  border-radius: 20px;
  padding: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--snow);
  border: 1px solid var(--line);
}

.stat strong {
  color: var(--navy);
  font-size: 1.4rem;
}

.service-cards,
.testimonials,
.faq-list,
.timeline,
.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--snow);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  color: var(--navy);
  font-weight: 700;
}

.testimonial {
  padding: 22px;
  border-radius: 18px;
  background: #f9fbfc;
  border: 1px solid var(--line);
}

.quote {
  font-size: 1.1rem;
  color: var(--navy);
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--snow);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 18px;
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.banner {
  padding: 28px;
  border-radius: 20px;
  background: var(--navy);
  color: var(--snow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.banner .btn {
  background: var(--accent);
  color: #1a1a1a;
  box-shadow: none;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 20px 40px;
  background: #f9fbfc;
}

.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer a {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ice);
  color: var(--navy);
  font-size: 0.9rem;
}

.table {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.table-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  padding: 16px;
  background: var(--snow);
}

.table-row:last-child {
  border-bottom: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--snow);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 59, 91, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--snow);
  padding: 24px;
  border-radius: 18px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-content h3 {
  margin: 0;
}

.switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.switch:last-child {
  border-bottom: none;
}

.switch input {
  width: 20px;
  height: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero .section-inner,
  .split,
  .info-grid,
  .service-cards,
  .testimonials,
  .faq-list,
  .timeline,
  .comparison,
  .stats {
    flex-direction: row;
  }

  .hero-content {
    flex: 1.1;
  }

  .hero-panel {
    flex: 0.9;
  }

  .info-grid .card,
  .service-card,
  .testimonial,
  .faq-item,
  .timeline .card,
  .comparison .card,
  .stats .stat {
    flex: 1;
  }

  .split .panel {
    flex: 1;
  }

  .section-inner.two-col {
    flex-direction: row;
  }

  .section-inner.two-col > div {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .table-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
