* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f7f4;
  --bg-alt: #ffffff;
  --text: #1d2521;
  --muted: #55605b;
  --brand: #1b7a5a;
  --brand-dark: #145a43;
  --accent: #f2c14e;
  --border: #d9e0da;
  --shadow: 0 12px 30px rgba(24, 35, 29, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section .eyebrow {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  position: relative;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  right: 0;
  top: 52px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  min-width: 200px;
  box-shadow: var(--shadow);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
}

.hero {
  padding: 80px 0 56px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw, 3.2rem);
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  transition: 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.button:hover,
.button:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--brand);
  color: #fff;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(27, 122, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.highlight {
  background: #e8f3ee;
  border-radius: 24px;
  padding: 28px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.stat span {
  font-weight: 700;
  color: var(--brand-dark);
}

.testimonial {
  background: var(--bg-alt);
  border-left: 4px solid var(--brand);
  padding: 24px;
  border-radius: 16px;
}

.quote {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.tag {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--bg-alt);
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-alt);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: #0f1f18;
  color: #e8eee9;
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: #e8eee9;
}

.footer small {
  color: #b2c1b9;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 50;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 24, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.cookie-modal.open {
  display: flex;
}

.cookie-panel {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 24px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.legal-hero {
  padding: 64px 0 24px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  background: #f0f5f1;
  border-radius: 16px;
  padding: 18px;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-panel {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border);
}

.inline-svg {
  width: 54px;
  height: 54px;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: 20px;
  }

  .hero-grid,
  .split,
  .card-grid,
  .footer-grid,
  .stats,
  .comparison,
  .contact-blocks {
    flex-direction: row;
  }

  .hero-grid > div,
  .split > div,
  .footer-grid > div,
  .stats > div,
  .comparison > div,
  .contact-blocks > div {
    flex: 1;
  }

  .card-grid {
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .stats {
    gap: 24px;
  }

  .service-table {
    gap: 18px;
  }

  .service-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
