* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f5f2;
  --surface: #ffffff;
  --ink: #1f2a24;
  --muted: #51655b;
  --brand: #2d6a4f;
  --brand-dark: #1f4f3b;
  --accent: #c8b88a;
  --line: #e3e0d6;
}

body {
  margin: 0;
  font-family: "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(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #eef1eb;
}

.section.panel {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8efe9;
  color: var(--brand-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.nav {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: none;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--brand-dark);
}

.menu-toggle {
  background: var(--brand);
  border: none;
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 14px 0 22px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  color: var(--muted);
  font-size: 0.98rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: white;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: #e9f2ec;
}

.card h3,
.card h4 {
  margin: 0;
}

.stat-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat strong {
  font-size: 1.5rem;
}

.quote {
  background: var(--brand-dark);
  color: white;
  padding: 22px;
  border-radius: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature svg {
  width: 28px;
  height: 28px;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--brand-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 12px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 12px 16px;
}

.faq-item button {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 0;
}

.faq-content {
  color: var(--muted);
  margin: 8px 0 0;
}

.footer {
  background: #1f2a24;
  color: #dfe7e1;
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}

.footer small {
  color: #a8b6ae;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 14, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 18px;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-panel {
  background: var(--surface);
  border-radius: 16px;
  padding: 22px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f7f8f4;
}

.cookie-toggle button {
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
}

.cookie-toggle button[aria-pressed="true"] {
  background: var(--brand);
  color: white;
}

.cta-panel {
  background: var(--brand);
  color: white;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-text,
  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .stat-grid {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }
}
