* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f9f6f1;
  --surface: #ffffff;
  --primary: #0f3d3e;
  --accent: #f4b860;
  --muted: #5e6b6b;
  --border: #dbe2dc;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: #1e2a2a;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}

.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  position: absolute;
  right: 4%;
  top: 70px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: 12px;
  min-width: 220px;
  box-shadow: 0 18px 30px rgba(15, 61, 62, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.nav-links a {
  font-weight: 600;
  color: var(--primary);
}

.nav-links.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.14rem;
  color: var(--muted);
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--primary);
}

.lead {
  font-size: 1.05rem;
  color: #2c3a3a;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--primary);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3 {
  color: var(--primary);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight-panel {
  background: var(--primary);
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.icon-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stat {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--primary);
}

.quote {
  background: #e8efe9;
  padding: 2rem;
  border-radius: 18px;
  font-style: italic;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  background: transparent;
  border: none;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.cta {
  background: var(--primary);
  color: #fff;
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer {
  background: #0b2f30;
  color: #fff;
  padding: 2.5rem 0;
}

.footer .links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer small {
  color: #c7d6d0;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 61, 62, 0.2);
  width: min(520px, 92%);
  display: none;
  z-index: 50;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 61, 62, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 60;
}

.cookie-modal.show {
  display: flex;
}

.modal-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.8rem;
  width: min(560px, 96%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pill {
  background: #e8efe9;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  display: inline-flex;
  font-size: 0.85rem;
}

.service-price {
  font-weight: 700;
  color: var(--primary);
}

.address-block {
  background: var(--surface);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    min-width: auto;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1;
  }

  .cards,
  .stats,
  .testimonials,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .testimonial,
  .comparison-row {
    flex: 1 1 260px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .cookie-actions,
  .modal-actions {
    flex-direction: row;
  }

  .footer .links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
