:root {
  --bg: #0f1f16;
  --bg-soft: #142619;
  --bg-alt: #f4f7f1;
  --text: #1f2a22;
  --text-light: #f3f7f3;
  --accent: #5bbf5a;
  --accent-dark: #2e7d32;
  --muted: #6e7b72;
  --border: #d6ded3;
  --shadow: 0 10px 30px rgba(15, 31, 22, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--bg);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-light);
  opacity: 0.9;
}

.nav-links a:hover,
.nav-links a:focus {
  opacity: 1;
}

.nav-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.mobile-panel {
  display: none;
  flex-direction: column;
  background: var(--bg-soft);
  padding: 16px 20px 24px;
  gap: 14px;
}

.mobile-panel.open {
  display: flex;
}

.mobile-panel a {
  color: var(--text-light);
  font-size: 1rem;
}

main {
  display: block;
}

.hero {
  background: var(--bg);
  color: var(--text-light);
  padding: 72px 0 64px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero p {
  margin: 0;
  max-width: 620px;
  color: rgba(243, 247, 243, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #0d1b12;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text-light);
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--bg-soft);
  color: var(--text-light);
}

.section h2,
.section h3 {
  margin-top: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card.dark {
  background: #1a3022;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature svg {
  width: 34px;
  height: 34px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  flex: 1 1 180px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.6rem;
  display: block;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: #e6efe3;
  color: #24402c;
  font-size: 0.9rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step span {
  background: var(--accent-dark);
  color: var(--text-light);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #ffffff;
  border: none;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-content {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
}

.faq-item.active .faq-content {
  display: block;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--accent-dark);
  color: var(--text-light);
  padding: 28px;
  border-radius: 18px;
}

.site-footer {
  background: #0c1812;
  color: var(--text-light);
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0f1f16;
  color: var(--text-light);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 70;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text-light);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 22, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 80;
}

.modal.open {
  display: flex;
}

.modal-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.preference-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preference {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.preference .toggle {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f2f5f1;
  cursor: pointer;
  font-weight: 600;
}

.preference .toggle.active {
  background: var(--accent);
  border-color: var(--accent);
}

.small-note {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-panel {
    display: none !important;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-text {
    flex: 1;
    padding-right: 40px;
  }

  .split {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison .row {
    flex: 1;
  }
}
