*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f2ee;
  --surface: #ffffff;
  --surface-alt: #efe7de;
  --text: #2a2a2a;
  --muted: #5c5852;
  --brand: #2f5d62;
  --brand-dark: #1e3d40;
  --accent: #d79c5a;
  --accent-soft: #f2d4b0;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.site-nav ul {
  list-style: none;
  display: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-weight: 600;
  color: var(--text);
}

.menu-toggle {
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
}

.mobile-menu {
  background: var(--surface);
  padding: 0 0 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu a {
  padding: 0.4rem 0;
  font-weight: 600;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section h2 {
  margin-top: 0;
  font-size: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--brand);
  font-weight: 700;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-panel {
  background: var(--surface);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}

.btn-secondary {
  background: var(--accent);
  color: #2b2010;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.card-icon {
  width: 44px;
  height: 44px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--surface);
  padding: 1.2rem 1.5rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat strong {
  font-size: 1.6rem;
  color: var(--brand);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  padding: 1.4rem;
  border-radius: 20px;
  border-left: 6px solid var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.highlight {
  background: var(--brand);
  color: #fff;
  padding: 2rem;
  border-radius: 24px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  padding: 1rem 1.3rem;
  border-radius: 16px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--text);
}

.faq-answer {
  margin-top: 0.75rem;
  color: var(--muted);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer {
  background: var(--brand-dark);
  color: #f7f4f0;
  padding: 2.5rem 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  background: var(--surface);
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.12);
  padding: 1.5rem;
  z-index: 50;
}

.cookie-banner {
  bottom: 0;
}

.cookie-modal {
  top: 12%;
  margin: 0 auto;
  width: min(520px, 92%);
  border-radius: 22px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #2b2010;
  font-weight: 600;
}

.service-price {
  font-weight: 700;
  color: var(--brand);
}

.info-block {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 18px;
}

@media (min-width: 768px) {
  .site-nav ul {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero-content,
  .split {
    flex-direction: row;
    align-items: center;
  }

  .hero-content > * {
    flex: 1;
  }

  .cards,
  .stats,
  .testimonials,
  .comparison {
    flex-direction: row;
  }

  .cards .card,
  .stats .stat,
  .testimonials .testimonial,
  .comparison .comparison-row {
    flex: 1;
  }

  .cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
}
