*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --ink: #1f2933;
  --muted: #6b7a84;
  --brand: #2a6f77;
  --brand-dark: #1f545a;
  --accent: #e0b356;
  --line: #d7dde0;
  --shadow: 0 12px 30px rgba(31, 41, 51, 0.08);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  position: absolute;
  top: 64px;
  right: 4%;
  min-width: 220px;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: var(--ink);
}

.nav-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.hero {
  padding: 56px 0 36px;
}

.hero .hero-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  font-weight: 600;
  background: var(--brand);
  color: #ffffff;
}

.btn.secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.section {
  padding: 46px 0;
}

.section.alt {
  background: var(--surface);
}

.section h2 {
  font-size: 28px;
  margin: 0 0 14px;
}

.section p {
  color: var(--muted);
  margin: 0 0 16px;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card.highlight {
  background: #eef4f3;
  border-color: #d2e3e1;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf2f2;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 600;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 20px;
}

.service-card {
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 700;
  color: var(--brand-dark);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.testimonial {
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  border-left: 4px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote {
  font-size: 18px;
  font-style: italic;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item .faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--surface);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

footer {
  background: #10191f;
  color: #ffffff;
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-grid a {
  color: #ffffff;
  opacity: 0.85;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 20;
  display: none;
}

.cookie-banner {
  bottom: 0;
  background: #10191f;
  color: #ffffff;
  padding: 18px;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.cookie-modal {
  top: 0;
  bottom: 0;
  background: rgba(16, 25, 31, 0.7);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal .modal-content {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  width: min(520px, 92%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.cookie-toggle button {
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0f3f5;
}

.cookie-toggle button.active {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

@media (min-width: 900px) {
  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    box-shadow: none;
    padding: 0;
    display: flex;
    background: transparent;
  }

  .nav-toggle {
    display: none;
  }

  .hero .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid > * {
    flex: 1 1 calc(33.33% - 12px);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .pillars {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
