* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f7f4;
  --surface: #ffffff;
  --accent: #2f7b5b;
  --accent-dark: #1f5a43;
  --ink: #1b1f1d;
  --muted: #5d6a63;
  --sand: #eef2ec;
  --warm: #f2eadf;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

header {
  background: var(--surface);
  border-bottom: 1px solid #e0e5df;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--muted);
}

.nav-links a.active {
  color: var(--accent-dark);
}

.menu-toggle {
  background: none;
  border: 1px solid #c8d4c9;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-weight: 600;
  color: var(--muted);
}

main {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding: 2.5rem 0 4rem;
}

section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero {
  background: var(--warm);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.panel {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(14, 24, 18, 0.08);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stat-card {
  background: var(--sand);
  padding: 1.5rem;
  border-radius: 18px;
}

.stat-card strong {
  font-size: 1.8rem;
  display: block;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid #e3e8e2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3 {
  font-size: 1.2rem;
}

.quote {
  background: var(--accent-dark);
  color: #fff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote cite {
  font-style: normal;
  opacity: 0.8;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent-dark);
  min-width: 70px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  background: var(--surface);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid #e2e7e1;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid #dfe5de;
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  background: var(--accent);
  color: #fff;
  padding: 2.5rem;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta .button.secondary {
  border-color: #fff;
  color: #fff;
}

footer {
  background: #131916;
  color: #cfd6d0;
  padding: 2rem 0 3rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: #101412;
  color: #f4f6f3;
  padding: 1.25rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 40;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid #d0d6d1;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: #101412;
}

.cookie-actions button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 12, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 50;
}

.cookie-modal.show {
  display: flex;
}

.modal-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-card label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid #e2e7e1;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  background: var(--sand);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--surface);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid #e3e8e2;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-visual {
    flex: 1;
  }

  .feature-list,
  .stats,
  .cards,
  .timeline,
  .comparison,
  .contact-grid,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item,
  .stat-card,
  .card,
  .timeline-item,
  .comparison-row,
  .info-block {
    flex: 1 1 45%;
  }

  .contact-grid .info-block {
    flex: 1 1 30%;
  }

  .footer-grid {
    justify-content: space-between;
  }
}
