* {
  box-sizing: border-box;
}

:root {
  --bg: #fbfbf8;
  --surface: #ffffff;
  --surface-alt: #f1f3ee;
  --ink: #1e1f1b;
  --muted: #5b6058;
  --brand: #2f6f4e;
  --brand-dark: #214c36;
  --accent: #d9a441;
  --line: #d9ded4;
  --shadow: 0 10px 30px rgba(30, 31, 27, 0.12);
}
[hidden] {
    display: none !important;
}
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 10px;
  background: var(--brand);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 100;
}

.skip-link:focus {
  top: 10px;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.05rem;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.menu-icon::before {
  transform: translateY(-6px);
}

.menu-icon::after {
  transform: translateY(4px);
}

.site-nav {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.site-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 4%;
}

.site-nav a {
  color: var(--ink);
}

.nav-cta {
  margin: 0 4%;
  padding: 10px 16px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  text-align: center;
}

.nav-open .site-nav {
  display: flex;
}

.nav-open .menu-icon {
  background: transparent;
}

.nav-open .menu-icon::before {
  transform: translateY(0) rotate(45deg);
}

.nav-open .menu-icon::after {
  transform: translateY(0) rotate(-45deg);
}

.hero {
  padding: 48px 0 32px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.hero p {
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.section {
  padding: 42px 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-contrast {
  background: var(--brand-dark);
  color: #fff;
}

.section-contrast p {
  color: rgba(255, 255, 255, 0.82);
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin-bottom: 12px;
}

.section-lead {
  color: var(--muted);
  max-width: 680px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}

.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(47, 111, 78, 0.1);
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-panel {
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
}

.highlight {
  background: var(--accent);
  color: #1d1605;
  padding: 18px;
  border-radius: 16px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.stat {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--line);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
}

.quote {
  background: var(--surface);
  border-left: 4px solid var(--brand);
  padding: 18px;
  border-radius: 12px;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.icon-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(47, 111, 78, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--surface);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.comparison-row strong {
  font-size: 1.05rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
}

.site-footer {
  background: #141613;
  color: #e5e7e2;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-small {
  color: rgba(229, 231, 226, 0.72);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 80;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(30, 31, 27, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 90;
}

.cookie-modal__content {
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  width: min(520px, 95%);
  border: 1px solid var(--line);
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.cookie-option:last-child {
  border-bottom: none;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hidden {
  display: none;
}

.page-banner {
  padding: 34px 0 20px;
}

.service-price {
  font-weight: 700;
  color: var(--brand);
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.notice {
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  background: #fff7e8;
  border-radius: 12px;
  color: #4a3a17;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    gap: 18px;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 18px;
    padding: 0;
  }

  .nav-cta {
    margin: 0;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .split {
    flex-direction: row;
  }

  .split-panel {
    flex: 1;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 220px;
  }

  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .quote {
    flex: 1 1 280px;
  }

  .icon-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .icon-item {
    flex: 1 1 260px;
  }

  .comparison {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .comparison-row {
    flex: 1 1 260px;
  }

  .info-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-block {
    flex: 1 1 240px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
