/* Base */
:root {
  --bg: #f6f4f2;
  --bg-alt: #ffffff;
  --text: #1b1b1b;
  --muted: #5e5a57;
  --accent: #2f6f62;
  --accent-dark: #234f45;
  --sand: #efe8e1;
  --border: #e3ded8;
  --shadow: 0 12px 30px rgba(27, 27, 27, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 20px 64px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

header {
  position: sticky;
  top: 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 32px;
  height: 32px;
}

.nav-toggle {
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 10px 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  height: 2px;
  width: 22px;
  background: var(--text);
  display: block;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 20px 20px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.nav-links a {
  font-weight: 600;
}

.nav-open .nav-links {
  display: flex;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    border-top: none;
    padding: 0;
    gap: 20px;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px;
  background: var(--bg-alt);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero h1 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section-card {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: 12px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 12px;
  background: var(--sand);
}

.stat strong {
  font-size: 1.6rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight-panel {
  background: var(--accent);
  color: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  padding: 20px;
  border-radius: 16px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote {
  font-style: italic;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 16px;
}

.faq-item.active .faq-panel {
  max-height: 220px;
  padding-bottom: 16px;
}

.footer {
  background: var(--bg-alt);
  padding: 32px 20px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: var(--bg-alt);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 27, 27, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-card {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 10px;
  background: var(--sand);
}

.cookie-toggle button {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
}

.section-title {
  margin: 0;
  font-size: 1.6rem;
}

.muted {
  color: var(--muted);
}

@media (min-width: 900px) {
  main {
    padding: 40px 40px 80px;
  }

  .hero {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-actions {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split > * {
    flex: 1;
  }

  .cards,
  .stats,
  .testimonials,
  .comparison {
    flex-direction: row;
  }

  .cards .card,
  .stats .stat,
  .testimonials .testimonial,
  .comparison .comparison-row {
    flex: 1;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    gap: 24px;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
