* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f6f2;
  --text: #1f2a33;
  --muted: #5a6b7a;
  --primary: #2f5d62;
  --secondary: #f2b705;
  --accent: #6a9fb5;
  --light: #ffffff;
  --border: #d9e0e5;
  --shadow: 0 12px 30px rgba(31, 42, 51, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.tight {
  padding: 40px 0;
}

.section.alt {
  background: var(--light);
}

.section.accent {
  background: #eef4f7;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}

.headline {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 12px 0 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--light);
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: var(--secondary);
  color: #2b2b2b;
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--light);
  box-shadow: 0 4px 20px rgba(31, 42, 51, 0.06);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--light);
  padding: 20px;
  border-radius: 16px;
  position: absolute;
  top: 70px;
  right: 4%;
  box-shadow: var(--shadow);
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-toggle {
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

body.nav-open .nav-links {
  display: flex;
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: var(--light);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.badge {
  background: #e6eef2;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--light);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.icon-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e9f1f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  background: var(--light);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
  color: var(--primary);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.highlight-panel {
  background: var(--primary);
  color: var(--light);
  padding: 28px;
  border-radius: 22px;
}

.quote {
  font-size: 1.3rem;
  font-style: italic;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--light);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef1f5;
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: var(--light);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.testimonial span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--light);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: #1b262f;
  color: #dde4ea;
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: inherit;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  width: min(520px, 92%);
  display: none;
  z-index: 30;
}

.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(31, 42, 51, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--light);
  padding: 24px;
  border-radius: 18px;
  width: min(560px, 94%);
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-option:last-child {
  border-bottom: none;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--light);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--primary);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-block {
  background: var(--light);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #eaf0f5;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .service-list {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .info-grid {
    flex-direction: row;
  }

  .info-block {
    flex: 1;
  }
}
