* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f6f2;
  --text: #1f2528;
  --muted: #5b656b;
  --brand: #2c6d5a;
  --brand-dark: #204b3f;
  --accent: #d1a65c;
  --surface: #ffffff;
  --surface-alt: #eef2ef;
  --line: #dde3de;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--surface-alt);
}

.section.highlight {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--muted);
  margin-bottom: 1rem;
}

header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text);
}

.nav-toggle {
  background: none;
  border: 1px solid var(--line);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--brand-dark);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0 1.5rem;
}

.mobile-nav.open {
  display: flex;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.button:focus,
.button:hover,
.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(28, 61, 52, 0.15);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.hero-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  background: var(--surface-alt);
  color: var(--brand-dark);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card.alt {
  background: var(--surface-alt);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  background: var(--surface);
  padding: 1rem 1.5rem;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
  color: var(--brand-dark);
}

.quote {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  background: var(--surface);
  padding: 1rem 1.5rem;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 1.2rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border-radius: 0.8rem;
  border: 1px solid var(--line);
}

footer {
  background: #1a1f20;
  color: #dce3e1;
  padding: 2.5rem 0;
}

footer a {
  color: #dce3e1;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 18, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 30;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--surface);
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--surface-alt);
}

.toggle-item button {
  border: none;
  background: var(--brand);
  color: #fff;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price {
  font-weight: 700;
  color: var(--brand-dark);
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--brand-dark);
  color: #f6f7f5;
  padding: 2rem;
  border-radius: 1.2rem;
}

.cta-panel p {
  color: #dfe7e2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .card-grid,
  .stats,
  .steps,
  .comparison,
  .service-list,
  .cookie-actions,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-grid .card,
  .stats .stat,
  .service-list .service-card,
  .comparison .comparison-item {
    flex: 1 1 280px;
  }

  .steps .step,
  .cookie-actions .button,
  .footer-grid > div {
    flex: 1 1 260px;
  }

  .info-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-row {
    flex: 1 1 260px;
  }
}
