*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --text: #1e2b22;
  --muted: #4b5c52;
  --brand: #2f6b4f;
  --brand-dark: #1f4a37;
  --accent: #c9a85e;
  --line: #d6ddd6;
  --shadow: 0 14px 36px rgba(22, 37, 29, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand span {
  color: var(--brand);
}

.nav-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 8px 0 16px;
}

.site-nav a {
  padding: 8px 4px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav.is-open {
  display: flex;
}

.nav-links {
  display: flex;
  flex-direction: column;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px 0 56px;
}

section {
  background: var(--surface);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.section-muted {
  background: #f0f3ee;
  box-shadow: none;
  border: 1px solid var(--line);
}

.section-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1px;
  color: var(--brand);
  font-weight: 700;
}

h1 {
  font-size: 2.2rem;
  margin: 0 0 12px;
}

h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(120deg, #ffffff, #eef3ed);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.icon-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.icon-card img {
  width: 46px;
  height: 46px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f6f3ea;
  border: 1px solid #e5dbc6;
  font-weight: 600;
}

.stat span {
  color: var(--brand-dark);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 4px solid var(--accent);
  padding-left: 14px;
}

.quote {
  font-style: italic;
  color: var(--text);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef2ed;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step span {
  background: var(--brand);
  color: #fff;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: #fff;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-answer {
  padding: 0 16px 14px;
  display: none;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  padding: 32px 0 40px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 92vw);
  background: #1c2b23;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.cookie-modal.show {
  display: flex;
}

.cookie-panel {
  background: #fff;
  width: min(560px, 92vw);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}

.toggle {
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  background: #f4f6f1;
  font-weight: 600;
}

.toggle[aria-pressed="true"] {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 0;
  }

  .nav-links {
    flex-direction: row;
    gap: 18px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero .card {
    max-width: 360px;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .section-split {
    flex-direction: row;
  }

  .two-col {
    flex-direction: row;
  }

  .two-col > div {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
