:root {
  /* Wiser5 brand purple */
  --lcl-primary: #a024ea;
  --lcl-primary-dark: #8316c4;
  --lcl-primary-tint: #f3e8ff;
  --lcl-bg: #f7f7fb;
  --lcl-ink: #231f20;
}

body {
  background: var(--lcl-bg);
  color: var(--lcl-ink);
}

.lcl-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.lcl-main {
  flex: 1;
}

.lcl-header {
  background: #fff;
  border-bottom: 1px solid #e7e6f2;
  padding: 0.75rem 0;
}

.lcl-brand {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--lcl-ink);
  text-decoration: none;
}

.lcl-brand span {
  color: var(--lcl-primary);
}

.lcl-nav-link {
  color: #54526b;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.lcl-nav-link:hover {
  color: var(--lcl-primary);
}

.btn-lcl-primary {
  background: var(--lcl-primary);
  border-color: var(--lcl-primary);
  color: #fff;
  font-weight: 600;
}

.btn-lcl-primary:hover,
.btn-lcl-primary:focus {
  background: var(--lcl-primary-dark);
  border-color: var(--lcl-primary-dark);
  color: #fff;
}

.lcl-hero {
  background: linear-gradient(135deg, #3d0a5e 0%, var(--lcl-primary) 60%, #c27ee7 100%);
  color: #fff;
  padding: 4.5rem 0;
}

.lcl-hero h1 {
  font-weight: 800;
}

.lcl-card {
  border: 1px solid #e7e6f2;
  border-radius: 12px;
  background: #fff;
}

.lcl-progress {
  height: 8px;
  border-radius: 999px;
  background: var(--lcl-primary-tint);
}

.lcl-progress .progress-bar {
  background: var(--lcl-primary);
  border-radius: 999px;
}

.lcl-type-badge {
  background: var(--lcl-primary-tint);
  color: var(--lcl-primary-dark);
  font-weight: 600;
  font-size: 0.72rem;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  display: inline-block;
}

.lcl-featured-badge {
  background: #fff4dd;
  color: #92600a;
  font-weight: 700;
  font-size: 0.72rem;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}

.lcl-step {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lcl-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lcl-faq-item {
  background: #fff;
  border: 1px solid #e7e6f2;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.lcl-faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}

.lcl-faq-item summary::-webkit-details-marker {
  display: none;
}

.lcl-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
  color: var(--lcl-primary);
}

.lcl-faq-item[open] summary::after {
  content: "–";
}

.lcl-faq-item p {
  margin: 0.75rem 0 0;
  color: #54526b;
}

.lcl-cta {
  background: #fff;
  border-top: 1px solid #e7e6f2;
}

.lcl-footer {
  background: #fff;
  border-top: 1px solid #e7e6f2;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: #6c6a85;
}
