* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --green-900: #1f3a2a;
  --green-700: #2f6b4f;
  --green-500: #5aa06b;
  --sage-100: #f3f7f1;
  --sage-200: #e6eee5;
  --stone-900: #1f1f1c;
  --stone-700: #3f3f3a;
  --stone-500: #6a6a60;
  --accent: #b8862c;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(24, 36, 30, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--stone-900);
  background: #fbfcfa;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--sage-200);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--green-900);
}

.brand span {
  font-size: 1.05rem;
}

.nav-toggle {
  border: 1px solid var(--sage-200);
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.site-nav {
  position: relative;
}

.nav-links {
  position: absolute;
  right: 0;
  top: 54px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.nav-links a {
  font-weight: 600;
  color: var(--stone-700);
}

.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 40;
}

body.menu-open .nav-links {
  display: flex;
}

body.menu-open .menu-backdrop {
  display: block;
}

.hero {
  background: linear-gradient(135deg, #f7fbf5, #eef4ed);
  padding: 64px 0 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--stone-700);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.btn.primary {
  background: var(--green-700);
  color: #fff;
}

.btn.outline {
  border-color: var(--green-700);
  color: var(--green-700);
  background: #fff;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--sage-100);
}

.section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section p {
  margin: 0;
  color: var(--stone-700);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-row img {
  width: 64px;
  height: 64px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--sage-200);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 26px;
}

.stat {
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
  border-left: 5px solid var(--green-500);
}

.quote-block {
  background: var(--green-900);
  color: #fff;
  padding: 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.highlight-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison .card {
  border: 1px solid var(--sage-200);
  box-shadow: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--sage-200);
  background: #fff;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-weight: 600;
}

.faq-item .faq-panel {
  padding: 0 20px 18px;
  display: none;
  color: var(--stone-700);
}

.faq-item[aria-expanded="true"] .faq-panel {
  display: block;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  padding: 22px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--sage-200);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 700;
  color: var(--green-700);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--sage-200);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-block {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--sage-200);
}

.footer {
  background: #1f2b24;
  color: #d7e4d9;
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  z-index: 100;
}

.cookie-banner .banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 120;
  padding: 20px;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal .modal-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  width: min(520px, 94%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--sage-200);
  border-radius: 12px;
}

.toggle-row button {
  border: 1px solid var(--green-700);
  background: #fff;
  color: var(--green-700);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.toggle-row button.active {
  background: var(--green-700);
  color: #fff;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.note {
  font-size: 0.95rem;
  color: var(--stone-500);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 18px;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    background: transparent;
  }

  .menu-backdrop {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .card-grid,
  .steps,
  .stats,
  .comparison,
  .service-list,
  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card,
  .steps .step,
  .stats .stat,
  .comparison .card,
  .service-list .service-card,
  .contact-grid .info-block {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
