* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f0;
  --surface: #ffffff;
  --ink: #2b2a28;
  --muted: #6b6660;
  --brand: #8b4a6a;
  --brand-dark: #6f3552;
  --accent: #f2c6a6;
  --success: #356a54;
  --border: #e4ded8;
}

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;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--surface);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Georgia", "Times New Roman", serif;
  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;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--brand);
  color: #fff;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn:hover,
.btn:focus {
  background: var(--brand-dark);
}

.btn.secondary:hover,
.btn.secondary:focus {
  color: #fff;
  background: var(--brand);
}

header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-links {
  position: absolute;
  top: 64px;
  right: 16px;
  left: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 8px;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--bg);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-highlight {
  background: var(--accent);
  color: var(--ink);
  padding: 16px;
  border-radius: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature svg {
  width: 40px;
  height: 40px;
}

.quote {
  background: var(--brand);
  color: #fff;
  padding: 28px;
  border-radius: 16px;
}

.quote p {
  color: #f6eef2;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: var(--surface);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat span {
  font-weight: 700;
  color: var(--brand);
  font-size: 1.4rem;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.process-step strong {
  color: var(--brand);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 20px;
}

.highlight-panel {
  background: #fff7f0;
  border: 1px solid #f0d6c2;
  border-radius: 16px;
  padding: 24px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 18px 16px 18px;
  display: none;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  background: var(--brand);
  color: #fff;
  border-radius: 18px;
  padding: 28px;
}

.cta p {
  color: #f6eef2;
}

footer {
  background: #1f1d1b;
  color: #f2f0ec;
  padding: 32px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.footer-links a {
  color: #f2f0ec;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 30;
}

.modal.show {
  display: flex;
}

.modal-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-card label {
  display: flex;
  gap: 10px;
  align-items: center;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inline-note {
  background: #fff;
  border-left: 4px solid var(--brand);
  padding: 12px 16px;
  border-radius: 8px;
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 14px;
    border: none;
    padding: 0;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card,
  .hero-highlight {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .feature-blocks {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature {
    flex: 1 1 260px;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }

  .process {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 260px;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1 1 260px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-row {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .two-col {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
