* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f5f4f1;
  --bg-alt: #ffffff;
  --ink: #1d1c1a;
  --muted: #5b5a56;
  --accent: #2f6f5e;
  --accent-dark: #1f4a3f;
  --highlight: #e5efe9;
  --warning: #f0eadf;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
[hidden] {
    display: none !important;
}
img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-highlight {
  background: var(--highlight);
}

.section-warning {
  background: var(--warning);
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--bg-alt);
  border-bottom: 1px solid #e2e0dc;
  z-index: 10;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.main-nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus {
  border-color: var(--accent);
}

.menu-toggle {
  border: 1px solid var(--accent);
  background: transparent;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-alt);
  padding: 1rem;
  border-top: 1px solid #e2e0dc;
}

.mobile-nav a {
  padding: 0.45rem 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 2.6vw, 3rem);
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid #e2e0dc;
  font-size: 0.85rem;
}

.grid-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: var(--bg-alt);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e2e0dc;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.icon-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: var(--bg-alt);
  border-radius: 0.75rem;
  border: 1px solid #e2e0dc;
}

.stat strong {
  font-size: 1.3rem;
  color: var(--accent-dark);
}

.quote {
  font-size: 1.15rem;
  font-style: italic;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-marker {
  min-width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 0.45rem;
}

.testimonial {
  background: var(--bg-alt);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e2e0dc;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #e2e0dc;
  border-radius: 0.9rem;
  background: var(--bg-alt);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.footer {
  padding: 2.5rem 0;
  background: #1a1a18;
  color: #f3f1ee;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  border-radius: 1rem;
  border: 1px solid #e2e0dc;
  padding: 1rem;
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 30;
}

.cookie-modal-content {
  background: var(--bg-alt);
  border-radius: 1rem;
  padding: 1.5rem;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid #e2e0dc;
  border-radius: 0.75rem;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border: 1px solid #e2e0dc;
  border-radius: 1rem;
  padding: 1.2rem;
  background: var(--bg-alt);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-card {
  border: 1px solid #e2e0dc;
  border-radius: 1rem;
  padding: 1.2rem;
  background: var(--bg-alt);
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-block {
  background: var(--bg-alt);
  border: 1px solid #e2e0dc;
  border-radius: 1rem;
  padding: 1.2rem;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: center;
  }

  .grid-cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .timeline-item {
    align-items: center;
  }

  .testimonial-row {
    display: flex;
    gap: 1.2rem;
  }

  .testimonial {
    flex: 1;
  }

  .service-table {
    gap: 1.2rem;
  }

  .service-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .service-row div {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-card {
    flex: 1;
  }

  .contact-blocks {
    flex-direction: row;
  }

  .contact-block {
    flex: 1;
  }
}
