* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f4f1;
  --panel: #ffffff;
  --ink: #1f1b16;
  --muted: #5a524a;
  --brand: #8b4e94;
  --brand-dark: #6b2f74;
  --accent: #f0b429;
  --line: #e4ddd7;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  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.5px;
}

.brand svg {
  width: 34px;
  height: 34px;
}

.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: 1rem 0 1.5rem;
}

.nav-links a {
  font-weight: 600;
  color: var(--muted);
}

.nav-links.active {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: #fff;
  color: var(--brand-dark);
  border: 1px solid var(--brand-dark);
}

.section {
  padding: 3rem 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, 2.4vw, 2.3rem);
}

.section-header p {
  color: var(--muted);
}

.hero {
  padding: 3.5rem 0 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--panel);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge {
  background: #efe7f1;
  color: var(--brand-dark);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--panel);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.icon-card {
  display: flex;
  gap: 1rem;
}

.icon-card svg {
  width: 42px;
  height: 42px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: #fdf8ef;
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid #f1e0c2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.quote {
  background: #1f1b16;
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: #f3f0f5;
}

.step span {
  font-weight: 700;
  color: var(--brand-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  color: var(--muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  background: #efe7f1;
  color: var(--brand-dark);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.service-card {
  border-left: 4px solid var(--brand);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: #f6f1f7;
}

.comparison-row strong {
  color: var(--brand-dark);
}

.contact-block {
  background: var(--panel);
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer {
  background: #1f1b16;
  color: #f9f6f2;
  padding: 2.5rem 0;
}

.footer a {
  color: #f9f6f2;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  display: none;
  z-index: 50;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 60;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--panel);
  border-radius: 20px;
  padding: 2rem;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.toggle-row:last-child {
  border-bottom: none;
}

.switch {
  width: 48px;
  height: 26px;
  background: #d9d1cb;
  border-radius: 999px;
  position: relative;
}

.switch span {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  top: 2px;
  left: 2px;
  transition: transform 0.2s ease;
}

.switch.active {
  background: var(--brand);
}

.switch.active span {
  transform: translateX(22px);
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
  }

  .hero-content,
  .two-col,
  .footer-grid {
    flex-direction: row;
  }

  .hero-content > * {
    flex: 1;
  }

  .grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .grid > * {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .cookie-banner {
    left: auto;
    right: 1.5rem;
    width: min(420px, 90%);
  }
}
