*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --brand: #155b45;
  --brand-2: #1c8a66;
  --accent: #f2b705;
  --line: #e3e1da;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(17, 17, 17, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 32px 0 72px;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  padding: 16px 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0;
}

.section-lead {
  color: var(--muted);
  margin: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(21, 91, 69, 0.1);
  color: var(--brand);
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--brand);
  color: #fff;
}

.btn-solid {
  background: var(--brand);
  color: #fff;
}

.btn-solid:hover,
.btn-solid:focus {
  background: var(--brand-2);
  border-color: var(--brand-2);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight {
  background: #0f3f31;
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
}

.highlight p {
  color: rgba(255, 255, 255, 0.8);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  padding: 16px;
  background: rgba(21, 91, 69, 0.08);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat strong {
  font-size: 1.6rem;
}

.quote {
  padding: 24px;
  border-left: 4px solid var(--brand);
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.nav {
  position: sticky;
  top: 0;
  background: rgba(247, 246, 242, 0.95);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.nav-inner {
  width: min(1120px, 90%);
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  position: absolute;
  right: 5%;
  top: 72px;
  box-shadow: var(--shadow);
}

.nav-links a {
  color: var(--ink);
  font-weight: 600;
}

.nav-links.is-open {
  display: flex;
}

.menu-toggle {
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
  border-radius: 999px;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.footer {
  background: #111e1a;
  color: #fff;
  padding: 48px 0;
}

.footer .container {
  gap: 18px;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-content {
  width: min(680px, 92%);
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.toggle {
  border: 1px solid var(--brand);
  background: #fff;
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.toggle[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-price {
  font-weight: 700;
  color: var(--brand);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-tier {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-block {
  background: rgba(242, 183, 5, 0.14);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(242, 183, 5, 0.4);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

@media (min-width: 760px) {
  .cards,
  .stats,
  .process,
  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .stat,
  .process-step,
  .comparison-tier {
    flex: 1 1 calc(50% - 12px);
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: row;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 980px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: 22px;
  }

  .menu-toggle {
    display: none;
  }

  .card,
  .process-step,
  .comparison-tier {
    flex: 1 1 calc(33.333% - 12px);
  }
}
