*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f2;
  --surface: #ffffff;
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --accent: #7a4b91;
  --accent-dark: #5b2f73;
  --sand: #efe6df;
  --sage: #e4efe9;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: var(--surface);
  border-bottom: 1px solid #e3dbd6;
  position: sticky;
  top: 0;
  z-index: 20;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  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: 600;
  letter-spacing: 0.4px;
}

.brand svg {
  width: 32px;
  height: 32px;
  fill: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent-dark);
}

.nav-toggle {
  background: none;
  border: 1px solid #d8c8de;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--accent-dark);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  padding: 1rem;
  border-top: 1px solid #e3dbd6;
}

.mobile-menu.open {
  display: flex;
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-card {
  background: var(--sand);
  padding: 1.8rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.section {
  padding: 2.5rem 0;
}

.section.alt {
  background: var(--surface);
}

.section-title {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
}

.flex-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(33, 22, 38, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card.highlight {
  background: var(--sage);
}

.tag {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  background: #efe1f4;
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.icon-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon-block svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  fill: var(--accent);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: #1f1c2f;
  color: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat span {
  font-size: 2rem;
  font-weight: 700;
}

.testimonial {
  background: var(--surface);
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  background: var(--surface);
  padding: 1.2rem;
  border-radius: 14px;
  align-items: center;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 12px;
  background: var(--surface);
  padding: 0.8rem 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.faq-answer {
  margin-top: 0.5rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--surface);
  padding: 1rem;
  border-radius: 12px;
}

.comparison-row strong {
  color: var(--accent-dark);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

footer {
  background: #1f1c2f;
  color: #f7f2f8;
  padding: 2.5rem 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--surface);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 50;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(16, 12, 24, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 16px;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cookie-option input {
  margin-top: 0.2rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card,
  .hero-content {
    flex: 1;
  }

  .flex-row {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 1.25rem);
  }

  .icon-row {
    flex-direction: row;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .process {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 calc(50% - 1rem);
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    flex-direction: row;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    gap: 2rem;
  }

  .card {
    flex: 1 1 calc(33% - 1.25rem);
  }
}
