/* ---------- PCS Guide landing page — page-specific additions ---------- */

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f8f4ea;
  background: oklch(from #f8f4ea l c h / 0.12);
  border: 1px solid oklch(from #f8f4ea l c h / 0.22);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.hero-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Guide preview mock — small card shown alongside the lead form intro */
.guide-preview-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  background: oklch(from #f8f4ea l c h / 0.08);
  border: 1px solid oklch(from #f8f4ea l c h / 0.18);
  margin-top: var(--space-6);
}
.guide-preview-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-accent);
  color: var(--color-accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-preview-icon svg {
  width: 22px;
  height: 22px;
}
.guide-preview-copy {
  font-size: var(--text-sm);
  color: oklch(from #f8f4ea l c h / 0.85);
}
.guide-preview-copy strong {
  display: block;
  color: #f8f4ea;
  font-size: var(--text-base);
  margin-bottom: 2px;
}

/* Post-submit download reveal */
.download-reveal {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: oklch(from var(--color-accent) l c h / 0.16);
  border: 1px solid oklch(from #f8f4ea l c h / 0.28);
  text-align: center;
}
.download-reveal.is-visible {
  display: flex;
}
.download-reveal-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #f8f4ea;
}
.download-reveal p {
  color: oklch(from #f8f4ea l c h / 0.85);
  font-size: var(--text-sm);
  max-width: 40ch;
}

/* Number badges reused for the "how it works" list */
.step-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}
.step-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: var(--color-accent-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-copy h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}
.step-copy p {
  color: var(--color-text-muted);
  max-width: 52ch;
}
