* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f0;
  --text: #1c1b1a;
  --muted: #5a5856;
  --primary: #5b4b8a;
  --accent: #c9872f;
  --surface: #ffffff;
  --soft: #efe9e1;
  --border: #ded7ce;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  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.4px;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-weight: 600;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
}

.nav-links a {
  padding: 0.35rem 0;
}

.site-header.menu-open .nav-links {
  display: flex;
}

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
  }
}

main {
  padding: 2rem 0 3rem;
}

.section {
  padding: 2.5rem 0;
}

.section.soft {
  background: var(--soft);
}

.section.surface {
  background: var(--surface);
}

.section h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero {
  padding: 3rem 0 2.5rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-visual {
  background: var(--primary);
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
}

.hero-visual svg {
  width: 100%;
  height: auto;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  border: none;
  background: var(--primary);
  color: #fff;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.button.alt {
  background: var(--accent);
  color: #1c1b1a;
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 820px) {
  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card .icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: flex-start;
  }
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 760px) {
  .stats-bar {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  flex: 1 1 200px;
}

.testimonial {
  background: var(--primary);
  color: #fff;
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote {
  font-size: 1.2rem;
}

.insight {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 820px) {
  .comparison {
    flex-direction: row;
  }
}

.comparison-column {
  flex: 1 1 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.comparison-column h3 {
  margin-top: 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #1c1b1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 1rem 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.site-footer {
  background: #151414;
  color: #f4f2ef;
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 900px) {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 200;
}

.cookie-banner.hidden {
  display: none;
}

@media (min-width: 860px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(21, 20, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 220;
}

.cookie-modal.hidden {
  display: none;
}

.cookie-panel {
  background: var(--surface);
  border-radius: 16px;
  padding: 2rem;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.preference-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.preference-row:last-child {
  border-bottom: none;
}

.toggle {
  border: 1px solid var(--border);
  background: var(--soft);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
}

.toggle.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.page-title {
  margin-bottom: 1.5rem;
}

.section-divider {
  height: 2px;
  background: var(--border);
  margin: 2rem 0;
}
