* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand: #0f3d3e;
  --brand-2: #1b6b6f;
  --accent: #c9a227;
  --ink: #1c1f23;
  --muted: #5b6470;
  --bg: #f7f6f2;
  --card: #ffffff;
  --soft: #e8ecec;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--card);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

.nav-toggle {
  background: none;
  border: 1px solid var(--soft);
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 14px;
  background: var(--card);
  padding: 20px;
  border-top: 1px solid var(--soft);
}

.nav-links a {
  font-size: 15px;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--brand-2);
}

.nav-links.open {
  display: flex;
}

.hero {
  background: linear-gradient(120deg, #ffffff 0%, #e5efee 100%);
  padding: 48px 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 32px;
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  max-width: 540px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.section {
  padding: 10px 0 30px;
}

.section-title {
  font-size: 24px;
  margin-bottom: 14px;
}

.section-lead {
  color: var(--muted);
  margin-bottom: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .meta {
  color: var(--muted);
  font-size: 14px;
}

.highlight-panel {
  background: var(--brand);
  color: #fff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-item {
  background: var(--card);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--soft);
}

.stat-item span {
  font-weight: 700;
  color: var(--brand);
}

.testimonial {
  background: #f3f0e8;
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icon-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-weight: 700;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  background: var(--card);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--soft);
  background: var(--card);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px;
  font-size: 16px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.callout {
  background: #fff;
  border: 1px solid var(--accent);
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.card-grid.spaced {
  margin-top: 16px;
}

.footer {
  background: #0b2d2f;
  color: #e7ecec;
  padding: 32px 0;
  margin-top: 30px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #e7ecec;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--soft);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 120;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
}

.layout-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  border-radius: 14px;
  background: #fff;
  padding: 18px;
  border: 1px solid var(--soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 18px;
    border: none;
    padding: 0;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .icon-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .icon-item {
    flex: 1 1 260px;
  }

  .stats {
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1 1 280px;
  }

  .layout-split {
    flex-direction: row;
  }

  .layout-split > * {
    flex: 1 1 0;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
