* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f6f2;
  --text: #1c1e21;
  --muted: #586069;
  --brand: #1f5a4f;
  --brand-dark: #12362f;
  --accent: #d2a679;
  --card: #ffffff;
  --line: #e6e3dc;
  --shadow: 0 10px 30px rgba(18, 54, 47, 0.12);
  --radius: 16px;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, 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;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--brand-dark);
  background: #eaf1ee;
  padding: 6px 12px;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  color: #fff;
  background: var(--brand);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--brand);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.header {
  position: sticky;
  top: 0;
  background: rgba(247, 246, 242, 0.95);
  border-bottom: 1px solid var(--line);
  z-index: 50;
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--brand-dark);
}

.logo svg {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-top: 12px;
}

.mobile-menu.open {
  display: flex;
}

.hero {
  padding: 72px 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 36px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 24px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.metric span {
  font-weight: 700;
  color: var(--brand-dark);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 20px;
}

.card p {
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.highlight {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  border-radius: 12px;
}

.quote {
  font-size: 20px;
  font-weight: 600;
  color: var(--brand-dark);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price {
  font-size: 18px;
  color: var(--brand-dark);
  font-weight: 700;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--line);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--line);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 24px;
  color: var(--brand-dark);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 16px 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--line);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 60;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 54, 47, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 70;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 100%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.toggle-button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  font-weight: 600;
}

.toggle-button.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.skip-link:focus {
  left: 12px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
  }

  .metrics {
    flex-direction: row;
  }

  .cards,
  .service-grid,
  .testimonials,
  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .testimonial,
  .stat {
    flex: 1 1 280px;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split > * {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 260px;
  }

  .footer-grid,
  .contact-grid {
    flex-direction: row;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
