* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4ef;
  --bg-alt: #e8efe3;
  --text: #1f2a1f;
  --muted: #4c5a4a;
  --accent: #2f6a3a;
  --accent-dark: #214c2a;
  --highlight: #b9d39b;
  --panel: #ffffff;
  --border: #d5dccd;
  --shadow: 0 12px 30px rgba(26, 40, 26, 0.12);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 16px 72px;
}

section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 20px;
  box-shadow: var(--shadow);
}

.section-muted {
  background: var(--bg-alt);
}

.section-plain {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--accent-dark);
  font-weight: 700;
}

h1 {
  font-size: 2.2rem;
  line-height: 1.15;
}

h2 {
  font-size: 1.6rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--accent-dark);
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 244, 239, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--panel);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.nav-open .nav-links {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--highlight);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-panel {
  background: #1f2a1f;
  color: #f5f7f1;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-panel p {
  color: #dce4d7;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  list-style: none;
  padding-left: 22px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg-alt);
  border-radius: 12px;
  font-weight: 600;
}

.stat-bar {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}

.stat-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
}

.w-72 {
  width: 72%;
}

.w-84 {
  width: 84%;
}

.w-92 {
  width: 92%;
}

.quote {
  font-size: 1.05rem;
  font-style: italic;
}

.quote cite {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: var(--bg-alt);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  background: #fff;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  margin-top: 10px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer {
  padding: 40px 16px 60px;
  background: #1f2a1f;
  color: #f1f4ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #d6e0d1;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 20;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.show {
  display: flex;
  bottom: 16px;
}

.cookie-modal.show {
  display: flex;
  bottom: 80px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--bg-alt);
  border-radius: 10px;
  font-weight: 600;
}

.toggle input {
  width: 18px;
  height: 18px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  z-index: 30;
}

.skip-link:focus {
  left: 16px;
}

@media (min-width: 768px) {
  main {
    padding: 32px 40px 80px;
  }

  .nav {
    padding: 18px 40px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero .container,
  .hero-visual {
    flex: 1;
  }

  .hero-cta {
    flex-direction: row;
    align-items: center;
  }

  .grid-cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .split {
    flex-direction: row;
  }

  .split > div {
    flex: 1;
  }

  .two-column {
    flex-direction: row;
  }

  .two-column > div {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
