* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f7f5;
  --text: #1d2430;
  --muted: #5a6678;
  --brand: #2a6f6b;
  --brand-dark: #1d4f4b;
  --accent: #e1b84f;
  --card: #ffffff;
  --border: #dde2e7;
  --shadow: 0 12px 30px rgba(29, 36, 48, 0.08);
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.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.4px;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  top: 68px;
  right: 4%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}

.nav-links.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 0 64px;
}

section {
  padding: 28px 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(120deg, #e6f1f0, #fef6e3);
  border-radius: 20px;
  padding: 32px;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--brand);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--brand-dark);
}

.icon-chip svg {
  width: 28px;
  height: 28px;
}

.highlight-panel {
  background: var(--brand-dark);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-bar {
  background: #e3e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.stat-bar span {
  display: block;
  height: 12px;
  background: var(--accent);
}

.stat-fill-70 {
  width: 70%;
}

.stat-fill-85 {
  width: 85%;
}

.stat-fill-92 {
  width: 92%;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--brand);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #e6f1f0;
  color: var(--brand-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
}

.faq-content {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-content {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: var(--card);
}

.footer {
  background: #1b242f;
  color: #d9e1ea;
  padding: 36px 0;
}

.footer .split {
  gap: 28px;
}

.footer a {
  color: #d9e1ea;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  width: min(960px, 94%);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 30;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  width: min(560px, 96%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.toggle-item input {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    opacity: 1;
    pointer-events: all;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .comparison-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer .split {
    flex-direction: row;
  }
}
