/* ═══════════════════════════════════════════════════════════════════════════
   BARBERPRIME SAAS — LANDING PAGE STYLESHEET
   Hero · Benefits · Demo · Pricing · Testimonials · FAQ · Final CTA
═══════════════════════════════════════════════════════════════════════════ */

/* Section defaults */
.bpsaas-section {
  padding: clamp(64px, 10vw, 120px) 0;
  position: relative;
}
.bpsaas-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.bpsaas-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--bp-gold-400) 12%, transparent);
  color: var(--bp-accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  border: 1px solid color-mix(in srgb, var(--bp-gold-400) 25%, transparent);
}
.bpsaas-section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 14px;
}
.bpsaas-section-sub {
  font-size: 1.05rem;
  color: var(--bp-text-soft);
  max-width: 640px;
  margin: 0 auto;
}

/* ─── HERO ────────────────────────────────────────────────────────────── */
.bpsaas-hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 40px;
  overflow: hidden;
  text-align: center;
}
.bpsaas-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 1200px 600px at 50% -5%, color-mix(in srgb, var(--bp-gold-400) 20%, transparent), transparent 60%),
    radial-gradient(ellipse 800px 500px at 90% 40%, color-mix(in srgb, var(--bp-gold-500) 8%, transparent), transparent 60%),
    radial-gradient(ellipse 600px 400px at 10% 80%, color-mix(in srgb, var(--bp-gold-400) 6%, transparent), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.bpsaas-hero-grain {
  position: absolute; inset: 0;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='.85'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  z-index: 0;
  pointer-events: none;
}
.bpsaas-hero-inner { position: relative; z-index: 1; }

.bpsaas-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--bp-gold-400) 10%, transparent);
  color: var(--bp-accent);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--bp-gold-400) 25%, transparent);
  margin-bottom: 32px;
  animation: fadeUp .8s cubic-bezier(.2,.8,.2,1) forwards;
}
.bpsaas-pulse-dot {
  width: 8px; height: 8px;
  background: var(--bp-accent);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.bpsaas-pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: inherit;
  opacity: .4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .4; }
  100% { transform: scale(2.2); opacity: 0; }
}

.bpsaas-hero-title {
  font-size: clamp(2.5rem, 7.5vw, 5.5rem);
  line-height: 0.98;
  font-weight: 700;
  margin-bottom: 32px;
}
.bpsaas-hero-line {
  display: block;
  opacity: 0;
  animation: fadeUp .8s cubic-bezier(.2,.8,.2,1) forwards;
}
.bpsaas-hero-line:nth-child(1) { animation-delay: 0.05s; }
.bpsaas-hero-line:nth-child(2) { animation-delay: 0.15s; }
.bpsaas-hero-line:nth-child(3) { animation-delay: 0.25s; }
.bpsaas-hero-italic {
  font-style: italic;
  background: linear-gradient(135deg, var(--bp-gold-300), var(--bp-gold-400) 50%, var(--bp-gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bpsaas-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--bp-text-soft);
  opacity: 0;
  animation: fadeUp .8s cubic-bezier(.2,.8,.2,1) .35s forwards;
}

.bpsaas-hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s cubic-bezier(.2,.8,.2,1) .45s forwards;
}

.bpsaas-hero-bullets {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  padding: 0;
  opacity: 0;
  animation: fadeUp .8s cubic-bezier(.2,.8,.2,1) .55s forwards;
}
.bpsaas-hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--bp-text-faint);
}
.bpsaas-hero-bullets li svg { color: var(--bp-accent); }

/* Mockup */
.bpsaas-hero-mockup-wrap {
  margin-top: 64px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(.2,.8,.2,1) .7s forwards;
}
.bpsaas-mockup {
  max-width: 1060px;
  margin: 0 auto;
  background: var(--bp-ink-800);
  border-radius: var(--bp-r-lg);
  border: 1px solid var(--bp-border-hi);
  box-shadow: var(--bp-shadow-glow);
  overflow: hidden;
}
[data-theme="light"] .bpsaas-mockup { background: #fff; box-shadow: 0 40px 80px rgba(0,0,0,.15), 0 0 0 1px rgba(212,175,55,.2); }

.bpsaas-mockup-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bp-ink-900);
  border-bottom: 1px solid var(--bp-border);
}
[data-theme="light"] .bpsaas-mockup-chrome { background: #f5f2ec; }
.bpsaas-mockup-chrome span {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.bpsaas-mockup-chrome span:nth-child(1) { background: #ff5f56; }
.bpsaas-mockup-chrome span:nth-child(2) { background: #ffbd2e; }
.bpsaas-mockup-chrome span:nth-child(3) { background: #27c93f; }
.bpsaas-mockup-url {
  flex: 1;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--bp-text-faint);
}

.bpsaas-mockup-screen {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, var(--bp-ink-900), var(--bp-ink-800));
  min-height: 420px;
}
[data-theme="light"] .bpsaas-mockup-screen { background: linear-gradient(135deg, #fafaf7, #fff); }

.bpsaas-mockup-sidebar { font-size: 0.8rem; }
.bpsaas-mockup-side-label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bp-text-faint);
  margin-bottom: 14px;
}
.bpsaas-mockup-side-item {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--bp-text-soft);
  margin-bottom: 3px;
}
.bpsaas-mockup-side-item.is-active {
  background: color-mix(in srgb, var(--bp-gold-400) 10%, transparent);
  color: var(--bp-accent);
  font-weight: 600;
}

.bpsaas-mockup-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.bpsaas-mockup-stat {
  background: color-mix(in srgb, var(--bp-ink-600) 30%, transparent);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-md);
  padding: 12px;
}
[data-theme="light"] .bpsaas-mockup-stat { background: #fafaf7; }
.bpsaas-mockup-stat span {
  display: block;
  font-size: 0.7rem;
  color: var(--bp-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.bpsaas-mockup-stat strong {
  display: block;
  font-size: 1.3rem;
  color: var(--bp-text);
  font-weight: 700;
}
.bpsaas-mockup-stat em {
  font-size: 0.72rem;
  color: var(--bp-success);
  font-style: normal;
}

.bpsaas-mockup-chart {
  background: color-mix(in srgb, var(--bp-ink-600) 20%, transparent);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-md);
  padding: 16px;
}
[data-theme="light"] .bpsaas-mockup-chart { background: #fafaf7; }

.bpsaas-mockup-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.82rem;
}
.bpsaas-mockup-chart-head strong { color: var(--bp-text); font-weight: 600; }
.bpsaas-mockup-chart-head span   { color: var(--bp-accent); font-size: 0.72rem; }

.bpsaas-mockup-bars {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 140px;
}
.bpsaas-mockup-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}
.bpsaas-mockup-bar {
  width: 100%;
  background: linear-gradient(180deg, var(--bp-gold-300), var(--bp-gold-500));
  border-radius: 3px 3px 0 0;
  min-height: 5%;
  transition: transform .2s ease;
}
.bpsaas-mockup-bar-col:hover .bpsaas-mockup-bar { transform: scaleY(1.06); transform-origin: bottom; }
.bpsaas-mockup-bar-lbl {
  font-size: 0.64rem;
  color: var(--bp-text-faint);
}

@media (max-width: 720px) {
  .bpsaas-mockup-screen { grid-template-columns: 1fr; }
  .bpsaas-mockup-sidebar { display: none; }
  .bpsaas-mockup-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Trust strip */
.bpsaas-hero-trust {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--bp-border);
}
.bpsaas-hero-trust-label {
  text-align: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bp-text-faint);
  margin-bottom: 20px;
}
.bpsaas-hero-trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 0.9rem;
  color: var(--bp-text-soft);
}
.bpsaas-hero-trust-items span { display: inline-flex; align-items: center; gap: 6px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── BENEFITS ────────────────────────────────────────────────────────── */
.bpsaas-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bpsaas-benefit-card {
  background: var(--bp-bg-card);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-lg);
  padding: 28px;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.bpsaas-benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--bp-border-hi);
  box-shadow: 0 20px 40px -20px color-mix(in srgb, var(--bp-gold-400) 20%, transparent);
}
.bpsaas-benefit-icon {
  width: 52px; height: 52px;
  border-radius: var(--bp-r-md);
  background: color-mix(in srgb, var(--bp-gold-400) 12%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  border: 1px solid color-mix(in srgb, var(--bp-gold-400) 20%, transparent);
}
.bpsaas-benefit-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  margin-bottom: 8px;
  color: var(--bp-text);
}
.bpsaas-benefit-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--bp-text-soft);
  margin-bottom: 14px;
}
.bpsaas-benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: var(--bp-accent);
  font-weight: 500;
}

@media (max-width: 920px) { .bpsaas-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bpsaas-benefits-grid { grid-template-columns: 1fr; } }

/* ─── DEMO ─────────────────────────────────────────────────────────────── */
.bpsaas-demo-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.bpsaas-demo-tab {
  padding: 11px 20px;
  border-radius: var(--bp-r-md);
  border: 1px solid var(--bp-border);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--bp-text-soft);
  transition: all .2s ease;
}
.bpsaas-demo-tab:hover { color: var(--bp-accent); border-color: var(--bp-accent); }
.bpsaas-demo-tab.is-active {
  background: var(--bp-accent);
  color: #0D0B07;
  border-color: var(--bp-accent);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--bp-gold-400) 35%, transparent);
}

.bpsaas-demo-panel {
  background: var(--bp-bg-card);
  border: 1px solid var(--bp-border-hi);
  border-radius: var(--bp-r-xl);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-shadow: var(--bp-shadow-glow);
}
.bpsaas-demo-panel:not(.is-active) { display: none; }

.bpsaas-demo-phone {
  text-align: center;
  padding: 60px 30px;
  color: var(--bp-text-soft);
  border: 2px dashed color-mix(in srgb, var(--bp-gold-400) 30%, transparent);
  border-radius: var(--bp-r-lg);
  width: 100%;
  max-width: 640px;
}
.bpsaas-demo-mini { font-size: 0.95rem; font-weight: 500; }

.bpsaas-demo-footnote {
  text-align: center;
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--bp-text-faint);
}

/* ─── PRICING ─────────────────────────────────────────────────────────── */
.bpsaas-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1060px;
  margin: 0 auto;
}

.bpsaas-price-card {
  position: relative;
  background: var(--bp-bg-card);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.bpsaas-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bp-shadow-lg);
}
.bpsaas-price-card.is-featured {
  border-color: var(--bp-accent);
  border-width: 2px;
  box-shadow: var(--bp-shadow-glow);
  transform: scale(1.03);
  z-index: 2;
}
.bpsaas-price-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--bp-gold-300), var(--bp-gold-500));
  color: #0D0B07;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--bp-gold-400) 30%, transparent);
}

.bpsaas-price-head { margin-bottom: 20px; }
.bpsaas-price-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: var(--bp-text);
}
.bpsaas-price-tag {
  font-size: 0.82rem;
  color: var(--bp-text-faint);
  margin: 0;
}

.bpsaas-price-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--bp-border);
}
.bpsaas-price-currency { font-size: 1rem; font-weight: 500; color: var(--bp-text-soft); }
.bpsaas-price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--bp-accent);
}
.bpsaas-price-period {
  font-size: 0.76rem;
  color: var(--bp-text-faint);
  margin-left: 6px;
}

.bpsaas-price-features,
.bpsaas-price-limitations {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bpsaas-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--bp-text-soft);
  line-height: 1.5;
}
.bpsaas-price-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--bp-accent);
}
.bpsaas-price-limitations li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--bp-text-faint);
}
.bpsaas-price-limitations li svg { margin-top: 4px; color: var(--bp-text-faint); }

.bpsaas-pricing-foot {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--bp-text-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
}
.bpsaas-pricing-foot svg { color: var(--bp-accent); }

.bpsaas-pricing-empty {
  text-align: center;
  padding: 60px 20px;
  border: 2px dashed var(--bp-border);
  border-radius: var(--bp-r-lg);
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .bpsaas-price-card.is-featured { transform: none; }
}

/* ─── TESTIMONIALS ────────────────────────────────────────────────────── */
.bpsaas-proof-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--bp-text-soft);
}
.bpsaas-proof-stars { color: #F9B90D; font-size: 1rem; letter-spacing: 1px; }

.bpsaas-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bpsaas-testimonial-card {
  background: var(--bp-bg-card);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-lg);
  padding: 26px;
  margin: 0;
}
.bpsaas-testimonial-stars {
  color: #F9B90D;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.bpsaas-testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--bp-text);
  margin: 0 0 20px;
  font-style: italic;
  border-left: 3px solid var(--bp-accent);
  padding-left: 14px;
}
.bpsaas-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bpsaas-testimonial-avatar {
  width: 44px; height: 44px;
  background: color-mix(in srgb, var(--bp-gold-400) 15%, transparent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.bpsaas-testimonial-author strong { display: block; font-size: 0.92rem; color: var(--bp-text); }
.bpsaas-testimonial-author small  { display: block; font-size: 0.76rem; color: var(--bp-text-faint); }

@media (max-width: 920px) { .bpsaas-testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bpsaas-testimonials-grid { grid-template-columns: 1fr; } }

/* ─── FAQ ─────────────────────────────────────────────────────────────── */
.bpsaas-faq-wrap { max-width: 800px; }
.bpsaas-faq-list { display: flex; flex-direction: column; gap: 12px; }

.bpsaas-faq-item {
  background: var(--bp-bg-card);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-r-md);
  overflow: hidden;
  transition: all .25s ease;
}
.bpsaas-faq-item:hover { border-color: var(--bp-border-hi); }
.bpsaas-faq-item[open] {
  border-color: var(--bp-accent);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--bp-gold-400) 12%, transparent);
}

.bpsaas-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--bp-text);
}
.bpsaas-faq-q::-webkit-details-marker { display: none; }
.bpsaas-faq-icon {
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--bp-text-soft);
}
.bpsaas-faq-item[open] .bpsaas-faq-icon { transform: rotate(180deg); color: var(--bp-accent); }

.bpsaas-faq-a {
  padding: 0 24px 22px;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--bp-text-soft);
}

/* ─── FINAL CTA ───────────────────────────────────────────────────────── */
.bpsaas-final-cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--bp-ink-900), var(--bp-ink-800));
  border-radius: var(--bp-r-xl);
  padding: clamp(48px, 8vw, 80px) clamp(32px, 6vw, 64px);
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--bp-border-hi);
}
[data-theme="light"] .bpsaas-final-cta-box {
  background: linear-gradient(135deg, #FFFDFA, #FAF6EC);
}

.bpsaas-final-cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 30% 0%, color-mix(in srgb, var(--bp-gold-400) 20%, transparent), transparent 60%),
    radial-gradient(ellipse 400px 300px at 80% 100%, color-mix(in srgb, var(--bp-gold-400) 12%, transparent), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.bpsaas-final-cta-box > *:not(.bpsaas-final-cta-bg) { position: relative; z-index: 1; }

.bpsaas-final-cta-title {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--bp-ink-50);
}
[data-theme="light"] .bpsaas-final-cta-title { color: var(--bp-ink-800); }

.bpsaas-final-cta-sub {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--bp-ink-50) 75%, transparent);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
[data-theme="light"] .bpsaas-final-cta-sub { color: var(--bp-text-soft); }

.bpsaas-final-cta-bullets {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  padding: 0;
  margin-top: 24px;
}
.bpsaas-final-cta-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--bp-ink-50) 70%, transparent);
}
[data-theme="light"] .bpsaas-final-cta-bullets li { color: var(--bp-text-faint); }
.bpsaas-final-cta-bullets li svg { color: var(--bp-accent); }

/* ═══════════════════════════════════════════════════════════════════════════
   WEB VITALS: content-visibility para seções fora do viewport
   Reduz tempo de pintura/layout (~30% mais rápido em landing pages)
═══════════════════════════════════════════════════════════════════════════ */

.bpsaas-section-features,
.bpsaas-section-pricing,
.bpsaas-section-clients,
.bpsaas-section-faq,
.bpsaas-section-final-cta,
.bpsaas-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px; /* hint pro browser para evitar CLS */
}

/* Hero sempre renderiza imediato (LCP) */
.bpsaas-hero {
    content-visibility: visible;
}
