* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f8f5f0;
  --text: #1f2a24;
  --muted: #5a6a61;
  --brand: #2f6b4f;
  --brand-light: #e4f1ea;
  --accent: #d88a52;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e1e1e1;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo svg {
  width: 36px;
  height: 36px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--white);
  position: absolute;
  right: 5%;
  top: 72px;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.nav-links.is-open {
  display: flex;
}

.mobile-toggle {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
  padding: 0.5rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--white);
}

.section.highlight {
  background: var(--brand-light);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 700px;
}

.hero {
  padding: 4rem 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: 2.4rem;
}

.hero p {
  color: var(--muted);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  background: var(--brand);
  color: var(--white);
  border-radius: 24px;
  border: none;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card.small {
  padding: 1.2rem;
}

.icon-circle {
  background: var(--brand-light);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  fill: var(--brand);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item h3 {
  margin-bottom: 0.3rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  background: var(--white);
  padding: 1.2rem;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
}

.quote {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 14px;
}

.testimonial p {
  margin-bottom: 0.8rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.badge {
  background: var(--white);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  font-size: 0.9rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--white);
  padding: 1.2rem;
  border-radius: 12px;
}

.comparison-row strong {
  color: var(--brand);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 1rem;
}

.faq-item button {
  background: transparent;
  border: none;
  font-weight: 600;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
}

.faq-answer {
  margin-top: 0.8rem;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  background: #1e2a25;
  color: #f1f1f1;
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer a {
  color: #f1f1f1;
}

.footer small {
  color: #c6c6c6;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--white);
  padding: 1.2rem;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 30;
}

.cookie-modal.is-visible {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.modal-content {
  position: relative;
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  width: min(560px, 95%);
  z-index: 1;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #e7e7e7;
}

.toggle-btn {
  background: var(--brand-light);
  border: 1px solid var(--brand);
  color: var(--brand);
  padding: 0.4rem 0.8rem;
  border-radius: 18px;
}

.toggle-btn.active {
  background: var(--brand);
  color: var(--white);
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.contact-block {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .mobile-toggle {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .testimonial-grid {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .two-col {
    flex-direction: row;
  }
}
