/* Base */
:root {
  --green-900: #1c2f25;
  --green-700: #2e5a3e;
  --green-500: #3f7c52;
  --green-200: #cfe3d4;
  --earth-200: #efe7dd;
  --earth-100: #f6f2ec;
  --stone-700: #4c4a47;
  --stone-500: #6b6762;
  --white: #ffffff;
  --accent: #8aa34a;
  --shadow: 0 10px 30px rgba(28, 47, 37, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--stone-700);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--max);
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-muted {
  background: var(--earth-100);
}

.section-accent {
  background: var(--green-900);
  color: var(--white);
}

.section-panel {
  background: var(--earth-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--green-700);
  font-weight: 600;
}

h1, h2, h3 {
  font-weight: 650;
  color: var(--green-900);
  margin: 0 0 12px;
}

.section-accent h2,
.section-accent h3,
.section-accent .eyebrow {
  color: var(--white);
}

p {
  margin: 0 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green-700);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 1px solid var(--green-700);
}

.btn-light {
  background: var(--white);
  color: var(--green-900);
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid #e7e2db;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--green-900);
}

.brand svg {
  width: 32px;
  height: 32px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #e1dbd2;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--green-900);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0;
}

.nav-links a {
  color: var(--green-900);
  font-weight: 600;
}

.nav-open .nav-links {
  display: flex;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--earth-200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Cards */
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  border: 1px solid #e4dfd7;
  border-radius: var(--radius-sm);
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card.highlight {
  background: var(--green-700);
  color: var(--white);
}

.card.highlight h3,
.card.highlight p {
  color: var(--white);
}

/* Feature list */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--green-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stats */
.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid #e4dfd7;
}

.stat strong {
  font-size: 20px;
  color: var(--green-900);
}

/* Testimonials */
.testimonial {
  background: var(--white);
  border-left: 4px solid var(--accent);
  padding: 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

/* Process */
.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--earth-100);
  border: 1px solid #e4dfd7;
}

.step-number {
  font-weight: 700;
  color: var(--green-900);
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  box-shadow: none;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #e4dfd7;
  padding: 12px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font-weight: 600;
  color: var(--green-900);
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding-top: 8px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Footer */
.site-footer {
  background: var(--green-900);
  color: var(--white);
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(28, 47, 37, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid #e4dfd7;
  border-radius: var(--radius-sm);
}

/* Layout helpers */
.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-200);
  color: var(--green-900);
  font-size: 12px;
  font-weight: 600;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon-card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid #e4dfd7;
}

@media (min-width: 760px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 18px;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 220px;
  }

  .process {
    flex-direction: row;
  }

  .step {
    flex: 1 1 220px;
    flex-direction: column;
  }

  .comparison {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
