:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --ink: #1f1f1f;
  --muted: #5a5a5a;
  --brand: #2f5d73;
  --brand-dark: #21424f;
  --accent: #d9a441;
  --accent-soft: #f2e4c1;
  --border: #e2ddd5;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(25, 35, 40, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 20px;
  font-weight: 500;
}

.nav-actions {
  display: none;
  gap: 12px;
  align-items: center;
}

.menu-toggle {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  font-weight: 600;
  color: var(--brand-dark);
}

.mobile-menu.active {
  display: flex;
}

.button {
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: var(--accent-soft);
  color: var(--brand-dark);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--surface);
}

.section.highlight {
  background: linear-gradient(120deg, rgba(47, 93, 115, 0.08), rgba(217, 164, 65, 0.2));
}

.section-header {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-header p {
  color: var(--muted);
  max-width: 700px;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card h3 {
  color: var(--brand-dark);
}

.hero {
  padding: 80px 0 60px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-soft);
  color: var(--brand-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  width: fit-content;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.icon-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  flex: 1 1 220px;
}

.icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.stat-item strong {
  font-size: 1.6rem;
  color: var(--brand-dark);
}

.quote {
  background: var(--surface);
  border-left: 5px solid var(--accent);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row span {
  font-weight: 600;
  color: var(--brand-dark);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.footer {
  background: #111c21;
  color: #f3f3f3;
  padding: 50px 0 30px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-note {
  margin-top: 24px;
}

.footer a {
  color: #f3f3f3;
  opacity: 0.9;
}

.footer small {
  opacity: 0.7;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 20, 24, 0.6);
  z-index: 50;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--accent-soft);
  color: var(--brand-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 24px);
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 calc(33% - 18px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
