* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f5f0;
  --bg-alt: #ffffff;
  --text: #1f1f1f;
  --muted: #5a5a5a;
  --brand: #2f6f5e;
  --brand-dark: #224c41;
  --accent: #e3b53c;
  --line: #e3e0d8;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(22, 22, 22, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--brand);
  margin-bottom: 12px;
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--brand-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: none;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
}

.mobile-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 24px;
}

.mobile-menu a {
  font-weight: 600;
}

.mobile-menu.open {
  display: flex;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .hero-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--bg-alt);
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.highlight-panel {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
}

.highlight-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 20px;
  border-left: 6px solid var(--accent);
}

.stat strong {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}

.quote {
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
}

.quote p {
  color: rgba(255, 255, 255, 0.8);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--bg-alt);
}

.service-card .price {
  font-weight: 700;
  color: var(--brand);
  margin-top: 6px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison .card {
  border-left: 6px solid var(--brand);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-alt);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 18px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.info-block {
  border: 1px dashed var(--brand);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(47, 111, 94, 0.08);
}

.footer {
  background: #121817;
  color: #f2f2f2;
  padding: 40px 0;
}

.footer p,
.footer a {
  color: rgba(242, 242, 242, 0.8);
}

.footer .grid {
  gap: 24px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  width: min(920px, 92%);
  display: none;
  z-index: 60;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 70;
  align-items: center;
  justify-content: center;
}

.modal-backdrop.show {
  display: flex;
}

.modal {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  width: min(620px, 92%);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.toggle-btn {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-weight: 600;
}

.toggle-btn.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 768px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  .nav-links {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid > * {
    flex: 1 1 280px;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards > * {
    flex: 1 1 300px;
  }

  .stats {
    flex-direction: row;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison > * {
    flex: 1 1 260px;
  }

  .footer .grid {
    flex-direction: row;
  }
}
