:root {
  --bg: #f7f4f1;
  --text: #1f2a2a;
  --muted: #5a6b6b;
  --brand: #1f6b5a;
  --brand-dark: #0f3d35;
  --accent: #caa04d;
  --card: #ffffff;
  --border: #d9e1dd;
  --shadow: 0 8px 24px rgba(15, 61, 53, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a:focus,
button:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

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

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

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--brand);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  transition: right 0.25s ease;
  z-index: 25;
}

.mobile-menu a {
  font-size: 1.05rem;
  color: var(--muted);
}

body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}

body.menu-open .mobile-menu {
  right: 0;
}

.hero {
  padding: 64px 0 40px;
}

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

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button-primary {
  background: var(--brand);
  color: #fff;
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: #fff;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

.cards {
  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;
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-row svg {
  width: 32px;
  height: 32px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list .feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}

.feature-list .feature svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

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

.stat {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.testimonial span {
  color: var(--muted);
}

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

.highlight {
  background: var(--brand-dark);
  color: #fff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

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

.badge-row {
  margin-top: 16px;
}

.badge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: transparent;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.faq-item .faq-panel {
  padding: 0 16px 16px;
  color: var(--muted);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  background: var(--accent);
  color: #1f1f1f;
  padding: 32px;
  border-radius: 20px;
}

.action-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mt-20 {
  margin-top: 20px;
}

.mt-16 {
  margin-top: 16px;
}

.site-footer {
  background: #0f3d35;
  color: #fff;
  padding: 40px 0;
}

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

.footer-columns a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-columns p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

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

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.cookie-modal-backdrop.active {
  display: flex;
}

.cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  width: min(90%, 520px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.cookie-option span {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 720px) {
  .hero .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

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

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-list .feature {
    flex: 1 1 calc(50% - 16px);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1 1 0;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1 1 0;
  }

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

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

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

  .menu-toggle,
  .mobile-menu,
  .menu-overlay {
    display: none;
  }
}
