/* ════════════════════════════════════════════════════════════════
   Bold Challenger — shared design system for prvdtime.com
   Used by /index_preview (after live swap) and inner-page previews.
   ════════════════════════════════════════════════════════════════ */

:root {
  --bc-ink: #f4f1eb;
  --bc-ink-dim: #b8c5dd;
  --bc-navy-1: #04132a;
  --bc-navy-2: #0a2b5e;
  --bc-navy-3: #0f4a96;
  --bc-accent: #1b55db;
  --bc-accent-hi: #4a82ff;
  --bc-line-dark: rgba(255,255,255,.10);
}

/* Preview banner (preview pages only) */
.preview-banner {
  position: sticky; top: 0; z-index: 200;
  background: linear-gradient(90deg, #f59e0b, #ea580c);
  color: #fff; text-align: center;
  padding: 6px 12px; font-size: 12px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
}
.preview-banner a { color: #fff; text-decoration: underline; }

/* Body */
body.bc-body { background: var(--bc-navy-1); margin: 0; }

/* ── App bar — full-width white sticky ── */
.bc-appbar {
  position: sticky; top: 0; left: 0; right: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #e6ebf3;
  box-shadow: 0 2px 16px rgba(15,23,42,.06);
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 36px;
}
.bc-appbar .brand { display: inline-flex; align-items: center; }
.bc-appbar .brand img { height: 44px; display: block; }
.bc-appbar nav { display: flex; align-items: center; gap: 8px; }
.bc-appbar nav a {
  color: #4b5973; font-weight: 600; font-size: 14px;
  padding: 8px 14px; border-radius: 8px; text-decoration: none;
  transition: color .15s, background .15s;
}
.bc-appbar nav a:hover { color: var(--bc-accent); background: #f5f8ff; }
.bc-appbar nav a.btn-cta {
  background: linear-gradient(180deg, var(--bc-accent-hi), var(--bc-accent));
  color: #fff;
  padding: 10px 20px; border-radius: 999px;
  margin-left: 8px;
  box-shadow: 0 6px 18px rgba(27,85,219,.30);
  transition: transform .15s, box-shadow .15s;
}
.bc-appbar nav a.btn-cta:hover {
  background: linear-gradient(180deg, var(--bc-accent-hi), var(--bc-accent));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(27,85,219,.40);
}
@media (max-width: 720px) {
  .bc-appbar { padding: 12px 18px; }
  .bc-appbar nav a:not(.btn-cta) { display: none; }
}

/* ── Hero — default (home) + compact inner variant ── */
.bc-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 600px at 80% 10%, rgba(74,130,255,.18), transparent 60%),
    radial-gradient(800px 600px at 10% 90%, rgba(27,85,219,.16), transparent 55%),
    linear-gradient(180deg, var(--bc-navy-1) 0%, var(--bc-navy-2) 55%, var(--bc-navy-3) 100%);
  color: var(--bc-ink);
  padding: 80px 32px 96px;
  text-align: center;
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
}
.bc-hero--inner {
  min-height: 36vh;
  padding: 60px 32px 72px;
}
.bc-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  pointer-events: none;
}
.bc-hero-inner { position: relative; z-index: 1; max-width: 1100px; }
.bc-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: #d6e1f5;
  margin-bottom: 24px;
}
.bc-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 10px #4ade80;
}
.bc-h1 {
  font-size: clamp(44px, 8vw, 104px);
  line-height: 1.02;
  letter-spacing: -.028em;
  font-weight: 900;
  margin: 0 0 10px;
  color: #fff;
}
.bc-hero--inner .bc-h1 {
  font-size: clamp(34px, 5.6vw, 64px);
}
.bc-h1-soft {
  display: block;
  color: var(--bc-ink-dim);
  font-weight: 700;
  font-size: clamp(28px, 6vw, 80px);
}
@media (min-width: 480px) {
  .bc-h1-soft { white-space: nowrap; }
}
.bc-hero-sub {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--bc-ink-dim);
  margin: 22px auto 0;
  max-width: 720px;
}
.bc-hero-sub strong { color: #fff; font-weight: 700; }
.bc-hero--inner .bc-hero-sub { margin-top: 14px; }
.bc-hero-cta {
  margin-top: 36px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.bc-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 999px;
  background: linear-gradient(180deg, var(--bc-accent-hi), var(--bc-accent));
  color: #fff; font-weight: 800; font-size: 16px;
  text-decoration: none; border: 0;
  box-shadow: 0 14px 40px rgba(27,85,219,.45), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.bc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(27,85,219,.55), inset 0 1px 0 rgba(255,255,255,.3);
}
.bc-hero-foot {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: #8fa3c8; font-weight: 700;
}
.bc-hero-foot a { color: #d6e1f5; text-decoration: none; border-bottom: 1px solid rgba(214,225,245,.3); }

/* ── Sections — shared foundations ── */
.bc-section-inner { max-width: 1100px; margin: 0 auto; }
.bc-section-head { text-align: center; margin-bottom: 40px; }
.bc-section-eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--bc-accent);
}
.bc-section-h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.1; letter-spacing: -.018em;
  font-weight: 900; color: #0a1429;
  margin: 14px auto 14px; max-width: 820px;
}
.bc-section-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: #4b5973; max-width: 720px;
  margin: 0 auto; line-height: 1.65;
}

/* Default section background variants */
.bc-section-light { padding: 80px 32px; background: #fff; }
.bc-section-alt { padding: 80px 32px; background: #fafbfd; }
.bc-section-tint { padding: 80px 32px; background: #fff; }

/* ── Comparison band ── */
.bc-compare { padding: 80px 32px; background: #fafbfd; }
.bc-compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 980px; margin: 0 auto;
}
@media (max-width: 760px) { .bc-compare-grid { grid-template-columns: 1fr; } }
.bc-compare-col {
  background: #fff; border-radius: 22px;
  padding: 36px 30px;
  box-shadow: 0 6px 30px rgba(11,60,122,.06);
  border: 1px solid #e6ebf3;
}
.bc-compare-col--us {
  background: linear-gradient(180deg, #0a2b5e 0%, #04132a 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 60px rgba(11,60,122,.30);
  position: relative;
}
.bc-compare-col--us::before {
  content: "ProvidTime"; position: absolute; top: -14px; left: 24px;
  background: var(--bc-accent); color: #fff;
  padding: 5px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase;
}
.bc-compare-col h3 {
  font-size: 14px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #8fa3c8;
  margin: 4px 0 22px;
}
.bc-compare-col--us h3 { color: rgba(255,255,255,.5); }
.bc-compare-list { list-style: none; padding: 0; margin: 0; }
.bc-compare-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid #eef1f6;
  font-size: 15px; line-height: 1.5;
}
.bc-compare-col--us .bc-compare-list li { border-bottom: 1px solid var(--bc-line-dark); }
.bc-compare-list li:last-child { border-bottom: 0; }
.bc-compare-mark {
  width: 22px; height: 22px; flex: none; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900;
}
.bc-mark-us {
  background: rgba(74,222,128,.18); color: #22c55e;
  box-shadow: inset 0 0 0 1px rgba(74,222,128,.3);
}
.bc-mark-them { background: #f4f4f5; color: #94a3b8; }
.bc-compare-row-label { font-weight: 700; }
.bc-compare-col--them .bc-compare-row-label { color: #1a2437; }
.bc-compare-col--us .bc-compare-row-label { color: #fff; }
.bc-compare-row-detail { color: #6b7689; font-size: 13.5px; display: block; margin-top: 2px; font-weight: 500; }
.bc-compare-col--us .bc-compare-row-detail { color: var(--bc-ink-dim); }
.bc-compare-foot { text-align: center; font-size: 12px; color: #94a3b8; max-width: 700px; margin: 24px auto 0; }

/* ── How-it-works grid (4 steps) ── */
.bc-how { padding: 80px 32px; background: #fff; }
.bc-how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  margin-top: 32px;
}
@media (max-width: 900px) { .bc-how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .bc-how-grid { grid-template-columns: 1fr; } }
.bc-how-step {
  padding: 28px 24px; border-radius: 18px;
  border: 1px solid #e6ebf3; background: #fff;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.bc-how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(11,60,122,.10);
  border-color: rgba(27,85,219,.22);
}
.bc-how-step .bc-step-num {
  font-size: 13px; font-weight: 900; color: var(--bc-accent);
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.bc-how-step h4 { font-size: 17px; font-weight: 800; margin: 6px 0 10px; color: #0a1429; }
.bc-how-step p { font-size: 14px; color: #4b5973; line-height: 1.6; margin: 0; }

/* ── Why grid (capability cards) ── */
.bc-why { padding: 80px 32px; background: #fafbfd; }
.bc-why-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  margin-top: 32px;
}
@media (max-width: 1100px) { .bc-why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .bc-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .bc-why-grid { grid-template-columns: 1fr; } }
.bc-why-card {
  background: #fff; padding: 28px 22px;
  border-radius: 16px; border: 1px solid #e6ebf3;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.bc-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11,60,122,.10);
  border-color: rgba(27,85,219,.22);
}
.bc-why-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(27,85,219,.14), rgba(11,60,122,.08));
  color: var(--bc-accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.bc-why-card h4 { font-size: 16px; font-weight: 800; margin: 0 0 8px; color: #0a1429; }
.bc-why-card p { font-size: 13.5px; color: #4b5973; line-height: 1.6; margin: 0; }

/* ── Free-model card ── */
.bc-free { padding: 80px 32px; background: #fff; }
.bc-free-card {
  max-width: 1080px; margin: 0 auto;
  background: linear-gradient(135deg, #0a2b5e 0%, #04132a 100%);
  color: #fff; border-radius: 26px;
  padding: 64px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.bc-free-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 320px at 90% 20%, rgba(74,130,255,.30), transparent 60%);
  pointer-events: none;
}
@media (max-width: 800px) {
  .bc-free-card { grid-template-columns: 1fr; padding: 44px 30px; gap: 28px; }
}
.bc-free-content { position: relative; z-index: 1; }
.bc-free-content .bc-section-eyebrow { color: #4a82ff; }
.bc-free-content h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1; letter-spacing: -.014em;
  font-weight: 900; color: #fff;
  margin: 12px 0 18px;
}
.bc-free-content p { color: var(--bc-ink-dim); font-size: 16px; line-height: 1.65; }
.bc-free-bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; z-index: 1;
}
.bc-free-bullets li {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 18px 20px;
}
.bc-free-bullets svg { color: #4ade80; flex: none; margin-top: 2px; }
.bc-free-bullets strong { color: #fff; display: block; font-size: 15px; margin-bottom: 4px; }
.bc-free-bullets span { color: var(--bc-ink-dim); font-size: 13.5px; line-height: 1.55; }

/* ── Backed-by Providence Solutions — centered single column ── */
.bc-backed { padding: 80px 32px; background: #fafbfd; text-align: center; }
.bc-backed-inner { max-width: 820px; margin: 0 auto; }
.bc-backed h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15; letter-spacing: -.014em;
  font-weight: 900; color: #0a1429;
  margin: 12px auto 18px;
}
.bc-backed p { color: #4b5973; line-height: 1.75; font-size: 16px; max-width: 720px; margin: 0 auto; }
.bc-backed-capabilities {
  margin: 32px auto 28px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  max-width: 760px;
}
.bc-backed-capability {
  padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid #e6ebf3;
  font-size: 12.5px; font-weight: 700; color: #4b5973;
  box-shadow: 0 2px 6px rgba(11,60,122,.04);
}
.bc-backed-certs {
  margin: 8px auto 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.bc-cert-pill {
  padding: 11px 20px; border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
  border: 1px solid #d5dde8;
  font-size: 13px; font-weight: 800; color: #0a1429;
  letter-spacing: .04em;
  box-shadow: 0 4px 14px rgba(11,60,122,.07);
}
.bc-backed-stats {
  display: flex; justify-content: center; gap: 56px; flex-wrap: wrap;
  margin: 36px auto 0;
}
@media (max-width: 520px) { .bc-backed-stats { gap: 28px; } }
.bc-backed-stat-num {
  display: block; font-size: 32px; font-weight: 900; color: #0a1429;
  letter-spacing: -.02em; line-height: 1;
}
.bc-backed-stat-label {
  display: block; margin-top: 6px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: #6b7689; font-weight: 800;
}
.bc-backed-link {
  display: inline-block; margin-top: 32px;
  font-size: 14px; color: var(--bc-accent);
  font-weight: 700; text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.bc-backed-link:hover { color: var(--bc-accent-hi); }

/* ── Closing CTA — dark bookend ── */
.bc-closing {
  padding: 100px 32px;
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(74,130,255,.20), transparent 60%),
    linear-gradient(180deg, var(--bc-navy-2) 0%, var(--bc-navy-1) 100%);
  color: #fff;
  text-align: center;
}
.bc-closing h2 {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05; letter-spacing: -.022em;
  font-weight: 900; color: #fff;
  margin: 0 0 18px;
}
.bc-closing p {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--bc-ink-dim);
  max-width: 560px; margin: 0 auto 36px;
  line-height: 1.65;
}
.bc-closing-foot { margin-top: 28px; font-size: 13px; color: #8fa3c8; }
.bc-closing-foot a { color: #d6e1f5; }

/* ── Footer — compact dark ── */
.bc-footer { background: #04132a; color: #8fa3c8; padding: 56px 32px 28px; }
.bc-footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 820px) { .bc-footer-grid { grid-template-columns: 1fr 1fr; } }
.bc-footer h5 {
  color: #fff; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; margin: 0 0 14px; font-weight: 800;
}
.bc-footer ul { list-style: none; padding: 0; margin: 0; }
.bc-footer ul li { margin-bottom: 10px; font-size: 14px; }
.bc-footer a { color: #b8c5dd; text-decoration: none; }
.bc-footer a:hover { color: #fff; }
.bc-footer-brand-title { color: #fff; font-weight: 900; font-size: 18px; margin-bottom: 6px; }
.bc-footer-brand-tag { font-size: 13.5px; line-height: 1.6; color: #8fa3c8; }
.bc-footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: #6b7892;
}

/* ── Page-specific variants ── */

/* About: audience cards in 3x2 grid */
.bc-audience-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  margin-top: 32px;
}
@media (max-width: 900px) { .bc-audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .bc-audience-grid { grid-template-columns: 1fr; } }
.bc-audience-card {
  background: #fff; padding: 28px 24px;
  border-radius: 16px; border: 1px solid #e6ebf3;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.bc-audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11,60,122,.10);
  border-color: rgba(27,85,219,.22);
}
.bc-audience-card h4 { font-size: 16px; font-weight: 800; margin: 6px 0 8px; color: #0a1429; }
.bc-audience-card p { font-size: 14px; color: #4b5973; line-height: 1.6; margin: 0; }

/* About: origin narrative — single column centered */
.bc-origin { padding: 80px 32px; background: #fff; text-align: center; }
.bc-origin-inner { max-width: 820px; margin: 0 auto; }
.bc-origin h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15; letter-spacing: -.014em;
  font-weight: 900; color: #0a1429;
  margin: 12px 0 18px;
}
.bc-origin p { color: #4b5973; line-height: 1.75; font-size: 17px; max-width: 720px; margin: 0 auto; }

/* Features: split deep-dive sections */
.bc-feature-split { padding: 80px 32px; }
.bc-feature-split.alt { background: #fafbfd; }
.bc-feature-split.light { background: #fff; }
.bc-feature-split-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 900px) {
  .bc-feature-split-inner { grid-template-columns: 1fr; gap: 32px; }
}
.bc-feature-split.reverse .bc-feature-split-copy { order: 2; }
@media (max-width: 900px) {
  .bc-feature-split.reverse .bc-feature-split-copy { order: 0; }
}
.bc-feature-split h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15; letter-spacing: -.012em;
  font-weight: 900; color: #0a1429;
  margin: 12px 0 18px;
}
.bc-feature-split p { color: #4b5973; line-height: 1.75; font-size: 16px; margin: 0 0 18px; }
.bc-feature-split ul { list-style: none; padding: 0; margin: 0; }
.bc-feature-split ul li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; font-size: 14.5px; color: #1a2437; font-weight: 600;
}
.bc-feature-split ul li::before { content: "✓"; color: #22c55e; font-weight: 900; flex: none; }
.bc-feature-screenshot {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: 0 18px 50px rgba(11,60,122,.14);
  background: linear-gradient(135deg, #f7f9ff, #fff);
  padding: 8px;
}
.bc-feature-screenshot img { width: 100%; display: block; border-radius: 12px; }

/* Pricing card */
.bc-price-card-wrap { padding: 80px 32px; background: #fafbfd; }
.bc-price-card {
  max-width: 640px; margin: 0 auto;
  background: linear-gradient(180deg, #fff, #f7f9ff);
  border-radius: 28px;
  border: 1px solid #e6ebf3;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 28px 80px rgba(11,60,122,.10);
  position: relative;
}
.bc-price-card::before {
  content: "FREE"; position: absolute; top: -14px;
  left: 50%; transform: translateX(-50%);
  background: var(--bc-accent); color: #fff;
  padding: 6px 16px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase;
}
.bc-price-amount {
  font-size: clamp(72px, 12vw, 144px);
  font-weight: 900; line-height: 1; color: #0a1429;
  letter-spacing: -.04em;
  margin: 8px 0 4px;
}
.bc-price-amount sup {
  font-size: .4em; font-weight: 800;
  vertical-align: super; color: var(--bc-accent);
  margin-right: 4px;
}
.bc-price-label { font-size: 14px; color: #6b7689; font-weight: 600; margin-bottom: 28px; }
.bc-price-tagline { font-size: 18px; color: #1a2437; font-weight: 700; margin: 12px 0 32px; }
.bc-price-features {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px;
  text-align: left;
}
@media (max-width: 540px) { .bc-price-features { grid-template-columns: 1fr; } }
.bc-price-features li {
  font-size: 14px; color: #1a2437; font-weight: 600;
  display: flex; gap: 10px; align-items: flex-start;
}
.bc-price-features li::before { content: "✓"; color: #22c55e; font-weight: 900; flex: none; }
.bc-price-cta { margin-top: 8px; }

/* Reveal-on-scroll */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
}
