/* Base */
:root {
  --bg: #f7f5f2;
  --bg-alt: #ffffff;
  --text: #1c1b1a;
  --muted: #5a5856;
  --brand: #6b3f73;
  --brand-dark: #4d2a52;
  --accent: #c79a3b;
  --line: #e6e0d8;
  --success: #2e7d32;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1120px;
  margin: 0 auto;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section.tight {
  padding: 36px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 12px 0;
  line-height: 1.2;
}

p {
  margin: 0 0 16px 0;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: 2px solid var(--brand);
  transition: all 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.btn.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #efe6f2;
  color: var(--brand-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
}

/* Header */
header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  gap: 18px;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 24px 0;
}

.mobile-menu.open {
  display: flex;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  background: linear-gradient(135deg, #f2e9f5, #f9f1df);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid var(--line);
}

/* Cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  border-color: #e8d2ed;
  background: #fcf7fd;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.3rem;
}

.quote {
  background: #2f2931;
  color: #f8f4ef;
  border-radius: 20px;
  padding: 26px;
}

.quote p {
  color: #f8f4ef;
}

.quote span {
  color: #cdb7d3;
  font-size: 0.9rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-item svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

/* Service cards */
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 700;
  color: var(--brand-dark);
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 14px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 6px 0;
}

.faq-answer {
  display: none;
  padding-top: 8px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.testimonial strong {
  display: block;
  margin-top: 10px;
}

/* Footer */
footer {
  background: #201b22;
  color: #f5f1f6;
}

footer p,
footer a {
  color: #d4cad9;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.modal-backdrop.show {
  display: flex;
}

.modal {
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 22px;
  width: 92%;
  max-width: 520px;
  border: 1px solid var(--line);
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.toggle-row:last-child {
  border-bottom: none;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.toggle input {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (min-width: 800px) {
  .nav-links {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .hero {
    flex-direction: row;
    align-items: stretch;
  }
  .hero-card,
  .hero-visual {
    flex: 1;
  }
  .cards,
  .service-grid,
  .testimonials,
  .stats,
  .comparison,
  .faq {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .card,
  .service-card,
  .testimonial,
  .stat,
  .comparison-row,
  .faq-item {
    flex: 1 1 calc(50% - 12px);
  }
  .split {
    flex-direction: row;
  }
  .split > * {
    flex: 1;
  }
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
  .cookie-banner {
    left: auto;
    right: 24px;
    width: 360px;
  }
}
