* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4f1;
  --text: #1f1b16;
  --muted: #5b534c;
  --accent: #b64a2b;
  --accent-dark: #8f3720;
  --panel: #ffffff;
  --line: #e5ddd6;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.nav-toggle {
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--muted);
}

.nav-links a.active {
  color: var(--text);
}

.nav-open .nav-links {
  display: flex;
}

.hero {
  padding: 3.5rem 0 2.5rem;
  background: var(--panel);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 32rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: #fdfcfb;
}

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--panel);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.section-header p {
  color: var(--muted);
  max-width: 42rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card h3 {
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pill {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(182, 74, 43, 0.12);
  color: var(--accent-dark);
  font-size: 0.85rem;
  width: fit-content;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat {
  background: var(--panel);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat strong {
  font-size: 2rem;
  color: var(--accent);
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
}

.highlight {
  background: #fceee8;
  border: 1px solid #f4d7c8;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(182, 74, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  background: var(--panel);
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px dashed var(--line);
}

.testimonial {
  background: var(--panel);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta {
  background: var(--accent);
  color: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 600;
  width: fit-content;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: var(--panel);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  flex-wrap: wrap;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  background: var(--panel);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

footer {
  padding: 2.5rem 0;
  background: #1e1914;
  color: #f7f1eb;
}

footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: var(--panel);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 50;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 16, 13, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 1.5rem;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--panel);
  border-radius: 24px;
  max-width: 560px;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    padding-bottom: 0;
  }

  .hero-grid,
  .split,
  .info-grid,
  .footer-grid {
    flex-direction: row;
  }

  .hero-grid > * {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .stats,
  .feature-list,
  .process {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat,
  .step,
  .testimonial {
    flex: 1 1 260px;
  }

  .split > * {
    flex: 1;
  }

  .info-block {
    flex: 1 1 260px;
  }

  .footer-grid > * {
    flex: 1;
  }
}
