:root {
  color-scheme: light;
  --forest-900: #1f4b3f;
  --forest-700: #2d6a55;
  --forest-500: #4f8b72;
  --sage-200: #dce9de;
  --sand-100: #f7f3ea;
  --gold-300: #f4e6b8;
  --ink-900: #18231f;
  --ink-700: #2c3a34;
  --ink-500: #4b5a53;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 40px rgba(24, 35, 31, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink-900);
  background: var(--sand-100);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: #ffffff;
}

.section-panel {
  background: var(--sage-200);
}

.section-divider {
  background: var(--forest-900);
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: var(--forest-700);
  font-weight: 600;
}

.title {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 12px 0 16px;
}

.subtitle {
  color: var(--ink-500);
  margin: 0;
}

.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 8px 30px rgba(24, 35, 31, 0.08);
}

.nav-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--forest-900);
}

.brand svg {
  width: 34px;
  height: 34px;
}

.menu-toggle {
  background: var(--forest-900);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 12px 0;
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  padding: 6px 0;
  color: var(--ink-700);
  font-weight: 500;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--forest-900);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--forest-700);
  color: var(--forest-700);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(24, 35, 31, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card svg {
  width: 36px;
  height: 36px;
  color: var(--forest-700);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature span {
  font-weight: 600;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat {
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: var(--radius-md);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-700);
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 16px 35px rgba(24, 35, 31, 0.09);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-weight: 600;
  color: var(--ink-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0;
}

.faq-content {
  margin-top: 10px;
  color: var(--ink-500);
  display: none;
}

.faq-item.open .faq-content {
  display: block;
}

.info-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.footer {
  background: #0f1b16;
  color: #f0f5f1;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  font-size: 0.95rem;
}

.footer small {
  color: rgba(240, 245, 241, 0.72);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  width: min(520px, 92%);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 80;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 22, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
  padding: 18px;
}

.cookie-modal.active {
  display: flex;
}

.modal-card {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-lg);
  width: min(560px, 94%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--sand-100);
  padding: 12px;
  border-radius: var(--radius-sm);
}

.toggle button {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--forest-700);
  background: transparent;
  color: var(--forest-700);
  cursor: pointer;
}

.toggle button[aria-pressed="true"] {
  background: var(--forest-700);
  color: #fff;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
}

.list li {
  list-style: disc;
  color: var(--ink-500);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.highlight {
  background: #ffffff;
  padding: 22px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--forest-700);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  background: #ffffff;
  padding: 18px;
  border-radius: var(--radius-md);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  background: #ffffff;
  padding: 18px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 14px;
}

.timeline-step span {
  font-weight: 700;
  color: var(--forest-700);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.address {
  font-style: normal;
  color: var(--ink-500);
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
  }

  .card-grid,
  .testimonial-grid,
  .stats-list,
  .feature-list,
  .comparison,
  .timeline,
  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .testimonial,
  .stat,
  .feature,
  .comparison-item,
  .timeline-step,
  .info-panel {
    flex: 1 1 calc(50% - 18px);
  }

  .feature {
    align-items: center;
  }

  .hero-actions,
  .cookie-actions {
    flex-direction: row;
  }
}

@media (min-width: 960px) {
  .nav-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    gap: 22px;
    align-items: center;
    padding: 0;
  }

  .card,
  .testimonial,
  .stat,
  .comparison-item,
  .timeline-step {
    flex: 1 1 calc(33.333% - 18px);
  }

  .info-panel {
    flex: 1 1 calc(50% - 18px);
  }
}
