/*
Theme Name: BoostCreds
Theme URI: https://boostcreds.com
Author: BoostCreds
Description: BoostCreds credit repair single-page theme
Version: 1.3.0
License: GNU General Public License v2 or later
Text Domain: boostcreds
*/

/* ── CSS Custom Properties ─────────────────────────────────────────────── */
:root {
  --bc-bg: #0f172a;
  --bc-bg-card: #1e293b;
  --bc-bg-section: #162032;
  --bc-primary: #3b82f6;
  --bc-primary-dark: #1d4ed8;
  --bc-border: #334155;
  --bc-text: #f1f5f9;
  --bc-text-muted: #94a3b8;
  --bc-green: #10b981;
  --bc-amber: #f59e0b;
  --bc-red: #ef4444;
  --bc-radius: 0.75rem;
  --bc-radius-lg: 1rem;
  --bc-radius-xl: 1.5rem;
}

/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* WordPress admin bar compensation */
html.admin-bar .bc-nav { top: 32px; }
@media screen and (max-width: 782px) {
  html.admin-bar .bc-nav { top: 46px; }
}

body {
  background-color: var(--bc-bg);
  color: var(--bc-text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Keyframes ─────────────────────────────────────────────────────────── */
@keyframes twinkle {
  0%, 100% { opacity: var(--star-max-opacity, 0.5); }
  50%       { opacity: 0.1; }
}

@keyframes float-up {
  0%   { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-60px) scale(0.6); opacity: 0; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(59,130,246,0.3); }
  50%       { box-shadow: 0 0 40px rgba(59,130,246,0.6); }
}

@keyframes count-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@keyframes sweep {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes cardflip {
  0%   { transform: perspective(800px) rotateX(0deg); }
  50%  { transform: perspective(800px) rotateX(-90deg); }
  100% { transform: perspective(800px) rotateX(0deg); }
}

@keyframes logo-float-glow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(59,130,246,0.4)); transform: translateY(0); }
  50%       { filter: drop-shadow(0 0 16px rgba(59,130,246,0.7)); transform: translateY(-4px); }
}

@keyframes gauge-float {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg) scale(1); }
  25%       { transform: translateY(-6px) rotateX(2deg) rotateY(1deg) scale(1.01); }
  50%       { transform: translateY(-8px) rotateX(3deg) rotateY(-1deg) scale(1.02); }
  75%       { transform: translateY(-4px) rotateX(1deg) rotateY(2deg) scale(1.01); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.1); }
}

@keyframes badgedrop {
  0%   { transform: translateY(-48px) scale(0.6) rotate(-8deg); opacity: 0; }
  12%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(310px) scale(1.05) rotate(5deg); opacity: 0; }
}

@keyframes dissolve {
  0%   { opacity: 1; transform: scaleX(1); max-height: 13px; margin-bottom: 13px; }
  40%  { opacity: 0.4; transform: scaleX(0.5); }
  100% { opacity: 0; transform: scaleX(0); max-height: 0; margin-bottom: 0; }
}

@keyframes shine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── Layout Utilities ──────────────────────────────────────────────────── */
.bc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bc-section {
  padding: 5rem 0;
}

.bc-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.bc-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.bc-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bc-grid-2  { grid-template-columns: 1fr 1fr; }
  .bc-grid-3  { grid-template-columns: repeat(3, 1fr); }
  .bc-grid-4  { grid-template-columns: repeat(4, 1fr); }
}

.bc-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-text-center { text-align: center; }

.bc-mt-2  { margin-top: 0.5rem; }
.bc-mt-4  { margin-top: 1rem; }
.bc-mt-6  { margin-top: 1.5rem; }
.bc-mt-8  { margin-top: 2rem; }
.bc-mt-12 { margin-top: 3rem; }
.bc-mb-4  { margin-bottom: 1rem; }
.bc-mb-8  { margin-bottom: 2rem; }
.bc-mb-12 { margin-bottom: 3rem; }
.bc-gap-4 { gap: 1rem; }
.bc-gap-8 { gap: 2rem; }

.bc-hidden-mobile { display: none; }
@media (min-width: 768px) { .bc-hidden-mobile { display: flex; } }

/* ── Typography ────────────────────────────────────────────────────────── */
.bc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--bc-primary);
  text-transform: uppercase;
}

.bc-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bc-primary);
  animation: pulse-glow 2s infinite;
}

.bc-h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.bc-h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
}

.bc-h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.bc-accent {
  background: linear-gradient(135deg, var(--bc-primary) 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bc-float {
  display: inline-block;
  animation: elevate-float 3s ease-in-out infinite;
}
@keyframes elevate-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.bc-text-muted { color: var(--bc-text-muted); }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.bc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--bc-radius);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.bc-btn-primary {
  background: linear-gradient(135deg, var(--bc-primary), var(--bc-primary-dark));
  color: #fff;
  box-shadow: 0 4px 15px rgba(59,130,246,0.35);
}

.bc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59,130,246,0.5);
}

.bc-btn-ghost {
  background: transparent;
  color: var(--bc-text-muted);
  border: 1px solid var(--bc-border);
}

.bc-btn-ghost:hover {
  color: var(--bc-text);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

/* ── Canvas Background ─────────────────────────────────────────────────── */
/* Fixed canvas covers full viewport; scrolls with parallax via JS */
#bc-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* ── Navigation ────────────────────────────────────────────────────────── */
.bc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(15,23,42,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(51,65,85,0.5);
  transition: background 0.3s;
}

.bc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bc-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.bc-nav-logo img {
  display: block !important;
  width: 118px !important;
  height: auto !important;
  max-width: 100%;
  animation: logo-float-glow 3s ease-in-out infinite;
}
@media (max-width: 767px) {
  .bc-nav-logo img {
    width: 90px !important;
    height: auto !important;
  }
}

/* Text logo removed — only floating img logo remains */

.bc-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 768px) {
  .bc-nav-links { display: flex; }
}

.bc-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bc-text-muted);
  transition: color 0.2s;
}

.bc-nav-links a:hover { color: var(--bc-text); }

.bc-nav-cta { display: none; }
@media (min-width: 768px) { .bc-nav-cta { display: inline-flex; } }

.bc-hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) { .bc-hamburger { display: none; } }

.bc-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--bc-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.bc-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(15,23,42,0.95);
  border-top: 1px solid var(--bc-border);
}

.bc-mobile-menu.is-open { display: flex; }

.bc-mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--bc-text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bc-border);
  transition: color 0.2s;
}

.bc-mobile-menu a:hover { color: var(--bc-text); }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.bc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, rgba(15,23,42,0.72) 0%, rgba(22,32,50,0.72) 50%, rgba(15,23,42,0.72) 100%);
  overflow: hidden;
  z-index: 1;
}

.bc-hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.bc-hero-content {
  flex: 1;
  min-width: 0;
}

.bc-hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.bc-trust-item {
  display: flex;
  flex-direction: column;
}

.bc-trust-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bc-text);
}

.bc-trust-label {
  font-size: 0.75rem;
  color: var(--bc-text-muted);
}

.bc-trust-divider {
  width: 1px; height: 2rem;
  background: var(--bc-border);
}

.bc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.bc-starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.bc-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle var(--star-duration, 4s) ease-in-out infinite;
  animation-delay: var(--star-delay, 0s);
}

/* ── CreditGauge ───────────────────────────────────────────────────────── */
.bc-gauge-wrap {
  flex-shrink: 0;
  width: 280px;
  position: relative;
  animation: gauge-float 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

.bc-gauge-glow {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
  z-index: -1;
}

.bc-gauge-svg { display: block; overflow: visible; }

.bc-gauge-score-box {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(15,23,42,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--bc-radius);
  padding: 0.625rem 1.25rem;
  min-width: 120px;
}

.bc-gauge-score-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.bc-gauge-score-label {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ── Stats ─────────────────────────────────────────────────────────────── */
/* Semi-transparent so canvas atoms bleed through */
.bc-stats {
  background: rgba(22,32,50,0.88);
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.bc-stat-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid var(--bc-border);
}

.bc-stat-item:last-child { border-right: none; }

@media (max-width: 767px) {
  .bc-stat-item:nth-child(2n) { border-right: none; }
}

.bc-stat-value {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--bc-primary);
  display: block;
}

.bc-stat-label {
  font-size: 0.875rem;
  color: var(--bc-text-muted);
  margin-top: 0.25rem;
}

/* FlipBoard */
.bc-flipboard {
  margin-top: 3rem;
}

.bc-flipboard-title {
  text-align: center;
  font-size: 0.875rem;
  color: var(--bc-text-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bc-flipboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.bc-flip-card {
  background: var(--bc-bg-card);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 1rem;
  text-align: center;
  perspective: 800px;
}

.bc-flip-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bc-green);
  display: block;
}

.bc-flip-label {
  font-size: 0.6875rem;
  color: var(--bc-text-muted);
  margin-top: 0.25rem;
}

.bc-flip-card.is-flipping {
  animation: cardflip 0.6s ease-in-out;
}

/* ── How It Works ──────────────────────────────────────────────────────── */
/* Semi-transparent so canvas atoms bleed through */
.bc-how {
  background: rgba(22,32,50,0.85);
  position: relative;
  z-index: 1;
}

.bc-how-section-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bc-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.bc-step-card {
  position: relative;
  background: var(--bc-bg-card);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  padding: 2rem;
  transition: border-color 0.3s;
}

.bc-step-card:hover { border-color: rgba(59,130,246,0.4); }

.bc-step-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bc-primary);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.bc-step-icon {
  width: 48px; height: 48px;
  border-radius: var(--bc-radius);
  background: rgba(59,130,246,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--bc-primary);
}

.bc-step-connector {
  display: none;
}

@media (min-width: 768px) {
  .bc-step-connector {
    display: block;
    position: absolute;
    right: -1rem; top: 2.5rem;
    width: 2rem; height: 2px;
    background: linear-gradient(90deg, var(--bc-border), transparent);
    z-index: 1;
  }
}

/* BureauRadar */
.bc-radar {
  position: relative;
  width: 130px; height: 130px;
  margin: 1rem auto 0;
}

.bc-radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.25);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.bc-radar-ring-1 { width: 130px; height: 130px; }
.bc-radar-ring-2 { width: 87px;  height: 87px; }
.bc-radar-ring-3 { width: 52px;  height: 52px; }

.bc-radar-center {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4488ff;
  box-shadow: 0 0 8px rgba(68,136,255,0.8);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.bc-radar-sweep {
  position: absolute;
  width: 50%; height: 2px;
  top: 50%; left: 50%;
  transform-origin: 0% 50%;
  background: linear-gradient(90deg, rgba(68,136,255,0.8), transparent);
  border-radius: 1px;
}

.bc-radar-node {
  position: absolute;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--bc-text-muted);
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: var(--bc-bg-card);
  border: 1px solid var(--bc-border);
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.bc-radar-node.is-pinged {
  color: #4488ff;
  border-color: rgba(68,136,255,0.6);
  box-shadow: 0 0 8px rgba(68,136,255,0.4);
}

#bc-radar-eq { top: 8px;  left: 8px; }
#bc-radar-ex { top: 8px;  right: 8px; }
#bc-radar-tu { bottom: 8px; left: 50%; transform: translateX(-50%); }

/* ── PromoAnimations ───────────────────────────────────────────────────── */
/* Semi-transparent so canvas atoms bleed through */
.bc-promo {
  background: rgba(22,32,50,0.92);
  position: relative;
  z-index: 1;
  padding: 96px 0 80px;
  border-top: 1px solid #1e2d45;
  border-bottom: 1px solid #1e2d45;
}

/* Promo Section Header */
.bc-promo-header {
  text-align: center;
  margin-bottom: 12px;
}
.bc-promo-eyebrow {
  color: #3b82f6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.bc-promo-title {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #f1f5f9 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.bc-promo-subtitle {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Feat Row */
.bc-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 88px 0;
  border-bottom: 1px solid rgba(22,35,56,0.8);
}
.bc-feat-row:last-of-type { border-bottom: none; }

@media (max-width: 768px) {
  .bc-feat-row { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .bc-feat-row.bc-row-reverse .bc-feat-stage { order: -1; }
}

/* Step pills & labels */
.bc-feat-step-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.bc-feat-step-pill {
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #3b82f6;
  text-transform: uppercase;
}
.bc-feat-step-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(59,130,246,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Feat Text */
.bc-feat-text { max-width: 100%; }

.bc-feat-title {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.bc-feat-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
}

/* Stat box (row 3) */
.bc-feat-stat-box {
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.16);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.bc-feat-stat-box span {
  font-size: 0.9rem;
  color: #86efac;
  font-weight: 500;
  line-height: 1.6;
}
.bc-feat-stat-box strong {
  color: #4ade80;
}
.bc-feat-stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(34,197,94,0.8);
  margin-top: 5px;
}

/* Animation Stage */
.bc-feat-stage {
  background: linear-gradient(160deg, #162032 0%, #0f172a 100%);
  border: 1px solid #2d4060;
  border-radius: 20px;
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 48px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.025);
}
.bc-feat-stage::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(59,130,246,0.18), transparent);
}

/* Dispute Letter Scene */
.bc-letter-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-bureaus {
  position: absolute;
  top: 40px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 0 48px;
}

.bc-bureau-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.bc-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid #334155;
  background: #1e293b;
  transition: background 0.28s, border-color 0.28s, box-shadow 0.28s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.04em;
}
.bc-bureau-dot.is-hit .bc-dot {
  background: #16a34a;
  border-color: #22c55e;
  box-shadow: 0 0 26px rgba(34,197,94,0.55);
  color: #fff;
}

.bc-dot-label {
  font-size: 0.6rem;
  color: #334155;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.bc-bureau-dot.is-hit .bc-dot-label {
  color: #22c55e;
}

.bc-envelope {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 10px;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(245,158,11,0.38);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* Report Sheet (dissolve) */
.bc-report-sheet {
  width: 78%;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.bc-report-line {
  height: 13px;
  border-radius: 7px;
  background: #334155;
  overflow: hidden;
  max-height: 13px;
  margin-bottom: 0;
}

.bc-line-negative {
  background: linear-gradient(90deg, #dc2626, #ef4444);
  box-shadow: 0 0 12px rgba(220,38,38,0.38);
}
.bc-line-positive {
  background: linear-gradient(90deg, #16a34a, #22c55e);
}
.bc-line-neutral {
  background: #2d4a6e;
}

.bc-line-negative.is-dissolving {
  animation: dissolve 0.75s ease-in forwards;
}

/* Badge Stage */
.bc-badge-stage {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.bc-del-badge {
  position: absolute;
  top: 0;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(34,197,94,0.42);
  animation: badgedrop 2.4s ease-in forwards;
}

/* Promo Bridge CTA */
.bc-promo-bridge {
  margin-top: 72px;
  padding: 40px 48px;
  background: linear-gradient(135deg, rgba(59,130,246,0.05) 0%, rgba(29,78,216,0.025) 100%);
  border: 1px solid rgba(59,130,246,0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.bc-promo-bridge-heading {
  color: #f1f5f9;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.bc-promo-bridge-sub {
  color: #64748b;
  font-size: 0.92rem;
}
@media (max-width: 640px) {
  .bc-promo-bridge { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
}

/* ── About ─────────────────────────────────────────────────────────────── */
/* Semi-transparent so canvas atoms bleed through */
.bc-about {
  background: rgba(15,23,42,0.82);
  position: relative;
  z-index: 1;
}

.bc-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bc-bg-card);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}

.bc-feature-card:hover { border-color: rgba(59,130,246,0.4); }

.bc-feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--bc-radius);
  background: rgba(59,130,246,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--bc-primary);
}

.bc-feature-icon svg { width: 22px; height: 22px; }

.bc-feature-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.bc-feature-body p {
  font-size: 0.875rem;
  color: var(--bc-text-muted);
}

/* ── Testimonials ──────────────────────────────────────────────────────── */
/* Semi-transparent so canvas atoms bleed through */
.bc-testimonial {
  background: rgba(22,32,50,0.88);
  position: relative;
  z-index: 1;
}

.bc-tp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.bc-tp-logo {
  font-size: 0.75rem;
  font-weight: 700;
  color: #00b67a;
  letter-spacing: 0.05em;
}

.bc-stars { display: flex; gap: 2px; }

.bc-star-icon {
  width: 16px; height: 16px;
  color: #00b67a;
  fill: #00b67a;
}

.bc-star-icon-gold {
  width: 16px; height: 16px;
  color: #f59e0b;
  fill: #f59e0b;
}

.bc-tcard {
  background: var(--bc-bg-card);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bc-tcard-quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--bc-text-muted);
  flex: 1;
}

.bc-tcard-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bc-border);
}

.bc-tcard-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bc-primary), var(--bc-primary-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}

.bc-tcard-name { font-size: 0.875rem; font-weight: 700; }
.bc-tcard-location { font-size: 0.75rem; color: var(--bc-text-muted); }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
/* Semi-transparent so canvas atoms bleed through */
.bc-faq {
  background: rgba(15,23,42,0.85);
  position: relative;
  z-index: 1;
}

.bc-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bc-faq-item {
  background: var(--bc-bg-card);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}

.bc-faq-item.is-open {
  border-color: rgba(59,130,246,0.4);
}

.bc-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bc-text);
  gap: 1rem;
}

.bc-faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--bc-text-muted);
  transition: transform 0.3s;
}

.bc-faq-item.is-open .bc-faq-chevron { transform: rotate(180deg); }

.bc-faq-body {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--bc-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.bc-faq-item.is-open .bc-faq-body { display: block; }

/* ── Contact ───────────────────────────────────────────────────────────── */
/* Semi-transparent so canvas atoms bleed through */
.bc-contact {
  background: rgba(22,32,50,0.90);
  position: relative;
  z-index: 1;
}

.bc-contact-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bc-bg-card);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-xl);
  padding: 2.5rem;
}

.bc-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .bc-form-row { grid-template-columns: 1fr; }
}

.bc-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.bc-form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bc-text);
}

.bc-form-field input {
  background: var(--bc-bg-section);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--bc-text);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.bc-form-field input::placeholder { color: rgba(148,163,184,0.5); }

.bc-form-field input:focus { border-color: var(--bc-primary); }

.bc-form-submit {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, var(--bc-primary), var(--bc-primary-dark));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--bc-radius);
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 15px rgba(59,130,246,0.35);
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.bc-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59,130,246,0.5);
}

.bc-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.bc-privacy {
  font-size: 0.75rem;
  color: var(--bc-text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

.bc-contact-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.bc-contact-success.is-visible { display: block; }

.bc-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  border: 2px solid rgba(16,185,129,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--bc-green);
}

/* ── Footer ────────────────────────────────────────────────────────────── */
/* Semi-transparent so canvas atoms bleed through */
.bc-footer {
  background: rgba(22,32,50,0.92);
  border-top: 1px solid var(--bc-border);
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.bc-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.bc-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bc-footer-logo img {
  display: block !important;
  width: 118px !important;
  height: auto !important;
  max-width: 100%;
}
@media (max-width: 767px) {
  .bc-footer-logo img { width: 90px !important; height: auto !important; }
}

/* Footer text logo removed — only floating img logo remains */

.bc-footer-tagline { font-size: 0.8125rem; color: var(--bc-text-muted); }
.bc-footer-copy    { font-size: 0.8125rem; color: var(--bc-text-muted); }

/* ── Misc ──────────────────────────────────────────────────────────────── */
.bc-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bc-border), transparent);
  margin: 0;
}

.bc-section-header { max-width: 560px; }
.bc-section-header.center { margin: 0 auto; text-align: center; }

/* ══════════════════════════════════════════════════════════════════════
   LEADS LANDING PAGE — page-get-started.php
   ══════════════════════════════════════════════════════════════════════ */

/* ── Urgency Bar ─────────────────────────────────────────────────────── */
.lp-urgency-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(90deg, #7c3aed, #10b981);
  color: #fff;
  text-align: center;
  padding: .55rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.lp-urgency-bar a { color: #fff; text-decoration: underline; }
.lp-urgency-bar a:hover { opacity: .85; }
.lp-urgency-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: bc-pulse 1.4s ease-in-out infinite;
}

/* ── Hero Score Compare ──────────────────────────────────────────────── */
.lp-hero { padding-bottom: 1rem; }

.lp-score-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem auto 2.5rem;
  flex-wrap: wrap;
}
.lp-score-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  min-width: 160px;
  text-align: center;
}
.lp-score-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--bc-muted, #94a3b8);
  margin-bottom: .5rem;
}
.lp-score-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: .5rem;
}
.lp-score-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  border-radius: 999px;
  padding: .2rem .75rem;
  display: inline-block;
}
.lp-tag-bad  { background: rgba(239,68,68,.2); color: #fca5a5; }
.lp-tag-good { background: rgba(16,185,129,.2); color: #6ee7b7; }
.lp-score-after { border-color: var(--bc-accent, #10b981); }
.lp-score-arrow {
  font-size: 2.5rem;
  color: var(--bc-accent, #10b981);
  font-weight: 900;
}

/* ── Cost Cards ──────────────────────────────────────────────────────── */
.lp-cost-section { background: rgba(255,255,255,.015); }
.lp-cost-card {
  background: var(--bc-card-bg, rgba(255,255,255,.04));
  border: 1px solid var(--bc-border, rgba(255,255,255,.08));
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.lp-cost-icon { font-size: 2rem; }
.lp-cost-card h4 { margin: 0; font-size: 1.05rem; font-weight: 700; }
.lp-cost-compare {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: .5rem;
  overflow: hidden;
}
.lp-cost-row {
  display: flex;
  justify-content: space-between;
  padding: .5rem .75rem;
  font-size: .875rem;
}
.lp-cost-bad  { background: rgba(239,68,68,.08);  color: #fca5a5; }
.lp-cost-good { background: rgba(16,185,129,.08); color: #6ee7b7; }
.lp-cost-penalty {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.25);
  border-radius: .5rem;
  padding: .75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.lp-penalty-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: #fca5a5; }
.lp-penalty-amount { font-size: 1.75rem; font-weight: 900; color: #ef4444; line-height: 1.1; }
.lp-penalty-note { font-size: .78rem; color: var(--bc-muted, #94a3b8); }

/* ── Offer Card ──────────────────────────────────────────────────────── */
.lp-offer-card {
  padding: 3rem 2.5rem;
  border: 2px solid var(--bc-accent, #10b981);
}
.lp-offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.lp-offer-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  line-height: 1.5;
}
.lp-offer-list li:last-child { border-bottom: none; padding-bottom: 0; }
.lp-offer-check { flex-shrink: 0; font-size: 1.1rem; margin-top: .1rem; }
.lp-offer-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  text-align: center;
}

/* ── Testimonial Score Badge ─────────────────────────────────────────── */
.lp-testimonial-card { position: relative; }
.lp-score-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 999px;
  padding: .3rem 1rem;
  font-weight: 700;
  font-size: .9rem;
}
.lp-badge-before { color: #fca5a5; }
.lp-badge-arrow  { color: var(--bc-muted, #94a3b8); }
.lp-badge-after  { color: #6ee7b7; }

/* ── Step Numbers ────────────────────────────────────────────────────── */
.lp-step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--bc-accent, #10b981);
  margin-bottom: .5rem;
  line-height: 1;
}

/* ── Guarantee ───────────────────────────────────────────────────────── */
.lp-guarantee-section { background: rgba(16,185,129,.04); }
.lp-guarantee-badge {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(16,185,129,.08);
  border: 2px solid rgba(16,185,129,.35);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: left;
  flex-wrap: wrap;
}
.lp-guarantee-icon {
  font-size: 3.5rem;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Form Enhancements ───────────────────────────────────────────────── */
.bc-select {
  width: 100%;
  background: var(--bc-input-bg, rgba(255,255,255,.06));
  border: 1px solid var(--bc-border, rgba(255,255,255,.12));
  border-radius: .5rem;
  color: var(--bc-text, #e2e8f0);
  padding: .75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.bc-select:focus {
  outline: none;
  border-color: var(--bc-accent, #10b981);
  box-shadow: 0 0 0 3px rgba(16,185,129,.15);
}
.bc-select option { background: #1e293b; color: #e2e8f0; }

/* ── Success State ───────────────────────────────────────────────────── */
.lp-success-box {
  background: rgba(16,185,129,.08);
  border: 2px solid rgba(16,185,129,.35);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  text-align: center;
}
.lp-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.lp-success-box h3 { font-size: 1.75rem; font-weight: 800; margin-bottom: .75rem; }
.lp-success-box p { color: var(--bc-muted, #94a3b8); margin-bottom: 1.5rem; }
.lp-success-next {
  background: rgba(255,255,255,.04);
  border-radius: .75rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
}
.lp-success-next strong { display: block; margin-bottom: .75rem; }
.lp-success-next ol { margin: 0; padding-left: 1.25rem; }
.lp-success-next li { margin-bottom: .4rem; color: var(--bc-muted, #94a3b8); }

/* ── Sticky Mobile CTA ───────────────────────────────────────────────── */
.lp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--bc-nav-bg, rgba(15,23,42,.95));
  border-top: 1px solid rgba(16,185,129,.3);
  padding: .875rem 1.25rem;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
  display: none;
}
@media (max-width: 767px) {
  .lp-sticky-cta { display: block; }
}
.lp-sticky-cta.lp-sticky-visible { transform: translateY(0); }
.lp-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}
.lp-sticky-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-size: .875rem;
  line-height: 1.3;
}
.lp-sticky-text strong { font-weight: 700; }
.lp-sticky-text span   { color: var(--bc-muted, #94a3b8); font-size: .8rem; }
.lp-sticky-cta .bc-btn { white-space: nowrap; flex-shrink: 0; }

/* ── Hero CTA adjustments on leads page ──────────────────────────────── */
.lp-hero-cta { font-size: 1.1rem; padding: 1rem 2.25rem; }
