*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a33;
  background-color: #f7f8fa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e6ea;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: #1b7f79;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.nav-toggle {
  border: 1px solid #c6ccd4;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-top: 1px solid #e2e6ea;
  padding: 16px 0;
}

.nav-menu.is-open {
  display: flex;
}

.nav-menu a {
  font-weight: 500;
}

main {
  padding-bottom: 60px;
}

section {
  padding: 56px 0;
}

.section-alt {
  background: #ffffff;
}

.section-accent {
  background: #e7f3f2;
}

.hero {
  padding: 72px 0 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0;
  line-height: 1.2;
}

.hero p {
  margin: 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #1b7f79;
  background: #1b7f79;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1b7f79;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d1d7df;
  font-size: 0.9rem;
}

.grid-two,
.grid-three {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: #ffffff;
  border: 1px solid #e2e6ea;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #1b7f79;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.stat-bar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #dfe5ec;
}

.stat strong {
  font-size: 1.6rem;
  color: #1b7f79;
}

.testimonial {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e6ea;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #ffffff;
  border: 1px solid #cfd6de;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.faq-item {
  border-bottom: 1px solid #dfe5ec;
  padding: 16px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 0;
}

.faq-answer {
  margin: 12px 0 0;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e2e6ea;
  border-radius: 16px;
  padding: 24px;
  background: #ffffff;
}

.price {
  font-weight: 700;
  color: #1b7f79;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #dfe5ec;
}

.info-block {
  background: #ffffff;
  border: 1px solid #dfe5ec;
  border-radius: 16px;
  padding: 24px;
}

.footer {
  background: #0f1f26;
  color: #ffffff;
  padding: 40px 0;
}

.footer a {
  color: #ffffff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #cfd6de;
  border-radius: 16px;
  padding: 20px;
  display: none;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(15, 31, 38, 0.12);
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 38, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding: 20px;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e6ea;
}

.toggle-row:last-child {
  border-bottom: none;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    background: none;
    border: none;
    padding: 0;
    gap: 20px;
  }

  .grid-two {
    flex-direction: row;
  }

  .grid-two > * {
    flex: 1;
  }

  .grid-three {
    flex-direction: row;
  }

  .grid-three > * {
    flex: 1;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1.2;
  }

  .hero-panel {
    flex: 1;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
