*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --text: #1f2421;
  --muted: #5a6461;
  --accent: #2f6b57;
  --accent-2: #c49a6c;
  --light: #ffffff;
  --border: #d8d2c8;
  --shadow: 0 18px 40px rgba(31, 36, 33, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--light);
}

.section.tint {
  background: #efe9e1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: #2a5f4d;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: rgba(47, 107, 87, 0.12);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: rgba(31, 36, 33, 0.06);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--light);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 68px;
  right: 4%;
  background: var(--light);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  min-width: 220px;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
}

.nav-open .nav-links {
  display: flex;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9;
}

.nav-open .nav-overlay {
  display: block;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 18px;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .nav-overlay {
    display: none;
  }
}

.hero {
  padding: 80px 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-panel {
  background: var(--light);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--light);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 26px rgba(31, 36, 33, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-icon {
  width: 42px;
  height: 42px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 999px;
  margin-top: 8px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--light);
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 1.5rem;
  color: var(--accent);
}

.testimonial {
  background: var(--light);
  border-radius: 18px;
  padding: 24px;
  border-left: 5px solid var(--accent);
}

.quote {
  font-size: 1.12rem;
  margin-bottom: 16px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: rgba(47, 107, 87, 0.1);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  background: var(--light);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.insight-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.insight {
  background: #fff7ed;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #f0d9bf;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--light);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.services-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--light);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.service-row span {
  font-weight: 600;
  color: var(--accent);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  background: var(--light);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  border-radius: 16px;
  background: var(--light);
  padding: 20px;
  border: 1px solid var(--border);
}

.footer {
  background: #1f2421;
  color: #f1efe8;
  padding: 50px 0 30px;
}

.footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
  margin-top: 26px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  left: 18px;
  background: var(--light);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
  z-index: 15;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 20;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--light);
  border-radius: 20px;
  padding: 26px;
  width: min(520px, 92%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  background: var(--bg);
  cursor: pointer;
  font-weight: 600;
}

.toggle-btn[aria-pressed="true"] {
  background: rgba(47, 107, 87, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

@media (min-width: 900px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-panel {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33% - 20px);
    min-width: 240px;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 calc(33% - 18px);
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 calc(33% - 16px);
  }

  .insight-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .insight {
    flex: 1 1 calc(50% - 18px);
  }

  .services-table {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-row {
    flex: 1 1 calc(33% - 16px);
  }

  .comparison {
    flex-direction: row;
  }

  .compare-card {
    flex: 1 1 0;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-card {
    flex: 1 1 calc(50% - 18px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
