:root {
  --color-bg: #faf7f4;
  --color-text: #2b2622;
  --color-primary: #6b4f8f;
  --color-primary-dark: #4d3768;
  --color-accent: #d9a441;
  --max-width: 880px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }

.site-header { background: white; border-bottom: 1px solid #eee; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; }
.logo { font-weight: 700; color: var(--color-primary-dark); text-decoration: none; font-size: 1.1rem; }
.site-header nav a { margin: 0 0.75rem; color: var(--color-text); text-decoration: none; }
.cta-button { background: var(--color-primary); color: white !important; padding: 0.5rem 1rem; border-radius: 6px; }

.hero { text-align: center; padding: 3rem 1.25rem; }
.hero h1 { color: var(--color-primary-dark); }

.theme-overview { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; padding: 1rem 1.25rem 3rem; }
.theme-card {
  background: white; border: 1px solid #eee; border-radius: 10px;
  padding: 1rem 1.5rem; text-decoration: none; color: var(--color-primary-dark);
  font-weight: 600;
}

.page, .section-list { background: white; border-radius: 10px; padding: 2rem; margin: 2rem auto; max-width: var(--max-width); }

.lead-cta-box {
  background: var(--color-primary-dark); color: white; text-align: center;
  border-radius: 10px; padding: 2rem 1.5rem; margin-top: 2.5rem;
}
.lead-cta-box h3 { color: white; margin-top: 0; }
.lead-cta-box .cta-eyebrow { font-size: 0.95rem; opacity: 0.85; margin-bottom: 0.25rem; }
.lead-cta-box .cta-price { font-size: 0.95rem; opacity: 0.9; margin: 0.25rem 0 1.25rem; }
.lead-cta-box .cta-price s { opacity: 0.7; }
.lead-cta-link {
  display: inline-block; background: var(--color-accent); color: white !important;
  text-decoration: none; padding: 0.9rem 2rem; border-radius: 8px; font-weight: 700;
  font-size: 1.05rem;
}
.form-hint { font-size: 0.75rem; color: #ddd; margin-top: 1rem; }
.form-hint a { color: white; }

.pain-points { list-style: none; padding: 0; margin: 1.5rem 0; }
.pain-points li {
  padding: 0.75rem 0 0.75rem 1.75rem; border-bottom: 1px solid #eee;
  position: relative;
}
.pain-points li::before {
  content: "•"; position: absolute; left: 0; color: var(--color-accent); font-weight: 700;
  font-size: 1.3rem; line-height: 1.2;
}

.benefit-steps { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.benefit-step { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-step .step-number {
  flex: 0 0 auto; width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: var(--color-primary); color: white; display: flex; align-items: center;
  justify-content: center; font-weight: 700;
}
.benefit-step h4 { margin: 0 0 0.25rem; color: var(--color-primary-dark); }
.benefit-step p { margin: 0; }

.trust-note { background: #f9f6ff; border-radius: 10px; padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.trust-note p { margin: 0; }
.trust-note a { color: var(--color-primary-dark); font-weight: 600; }

.about-me { display: flex; gap: 1.25rem; align-items: center; background: #f6f2fb; border-radius: 10px; padding: 1.5rem; margin: 1.5rem 0; }
.about-me p { margin: 0.25rem 0; }
.about-me h3 { margin: 0 0 0.5rem; color: var(--color-primary-dark); }

.cluster-list { list-style: none; padding: 0; }
.cluster-list li { padding: 0.75rem 0; border-bottom: 1px solid #eee; }

.site-footer { text-align: center; padding: 2rem 1.25rem; color: #888; font-size: 0.85rem; }

.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: var(--color-primary-dark); color: white;
  padding: 1rem 1.25rem; box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: var(--max-width); margin: 0 auto; display: flex; gap: 1.5rem;
  align-items: center; flex-wrap: wrap; justify-content: space-between;
}
.cookie-banner p { margin: 0; flex: 1 1 320px; font-size: 0.9rem; }
.cookie-banner a { color: white; }
.cookie-banner-actions { display: flex; gap: 0.75rem; flex: 0 0 auto; }
.cookie-btn {
  border: none; border-radius: 6px; padding: 0.6rem 1.25rem; font-weight: 600;
  cursor: pointer; font-size: 0.9rem;
}
.cookie-btn-primary { background: var(--color-accent); color: white; }
.cookie-btn-secondary { background: transparent; color: white; border: 1px solid rgba(255, 255, 255, 0.5); }
