* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --green-900: #0b3b2a;
  --green-700: #1c6b4b;
  --green-500: #2f8f64;
  --green-200: #d9efe4;
  --sand-100: #f5f3ee;
  --slate-900: #1d2329;
  --slate-700: #3c4954;
  --slate-400: #94a3ad;
  --white: #ffffff;
  --accent: #f2c94c;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--slate-900);
  background: var(--sand-100);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--green-200);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--green-900);
  font-size: 1.1rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--green-200);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--green-900);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--green-900);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  top: 70px;
  right: 20px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(11, 59, 42, 0.15);
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-weight: 600;
  color: var(--slate-900);
}

.nav-cta {
  background: var(--green-700);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 0 56px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero {
  background: var(--green-900);
  color: var(--white);
  padding: 40px 0;
  border-radius: 24px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--slate-900);
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(29, 35, 41, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  color: var(--green-900);
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.highlight-panel {
  background: var(--green-200);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-item span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-700);
}

.quote-block {
  background: var(--white);
  padding: 24px;
  border-left: 5px solid var(--green-700);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  list-style: none;
  padding-left: 22px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green-700);
}

.alternating {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alternating-item {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-700);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  text-align: left;
  gap: 16px;
}

.faq-answer {
  display: none;
  color: var(--slate-700);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  background: var(--green-700);
  color: var(--white);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta .button {
  background: var(--white);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(29, 35, 41, 0.08);
}

.service-price {
  font-weight: 700;
  color: var(--green-700);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  background: var(--green-900);
  color: var(--white);
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.footer-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 35px rgba(29, 35, 41, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions .button.secondary {
  background: var(--green-200);
  color: var(--green-900);
  border: none;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 59, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    background: transparent;
    padding: 0;
    box-shadow: none;
    gap: 20px;
  }

  .hero-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-actions {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
  }

  .split > div {
    flex: 1;
  }

  .card-grid,
  .service-list,
  .stats,
  .alternating,
  .comparison,
  .two-column {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-card,
  .stat-item,
  .alternating-item,
  .comparison-row {
    flex: 1 1 calc(50% - 16px);
  }

  .faq-item {
    padding: 20px;
  }

  .cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions,
  .modal-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (min-width: 1024px) {
  .card,
  .service-card,
  .stat-item,
  .alternating-item,
  .comparison-row {
    flex: 1 1 calc(33.333% - 16px);
  }

  .hero h1 {
    font-size: 2.7rem;
  }
}
