/* ============================================================
   BestProp.io — Complete Design System
   Electric Indigo palette · Premium fintech aesthetic
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:        #070A12;
  --surface:   #0C0F1E;
  --surface2:  #111427;
  --surface3:  #161B30;
  --border:    #1A1F35;
  --border2:   #232840;
  --accent:    #6366F1;
  --accent2:   #8B5CF6;
  --green:     #10B981;
  --green2:    #059669;
  --amber:     #F59E0B;
  --red:       #EF4444;
  --text:      #EDF0FF;
  --text2:     #C4CADF;
  --muted:     #6B7B99;
  --muted2:    #94A3B8;
  --radius:    12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --shadow:    0 8px 32px rgba(0,0,0,.45);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.6);
  --glow:      0 0 40px rgba(99,102,241,.18);
  --glow-green:0 0 30px rgba(16,185,129,.2);
  --trans:     .2s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image: radial-gradient(ellipse 130% 55% at 50% 0%, rgba(91,91,214,.22) 0%, transparent 60%);
  background-repeat: no-repeat;
  background-size: 100% 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width:100%; display:block; }
button { font-family: inherit; cursor:pointer; }
input, select, textarea { font-family: inherit; }

/* ── Layout ─────────────────────────────────────────────────── */
.bp-wrap      { max-width:1180px; margin:0 auto; padding:0 24px; }
.bp-wrap--lg  { max-width:1380px; margin:0 auto; padding:0 24px; }
.bp-wrap--sm  { max-width:860px;  margin:0 auto; padding:0 24px; }
.bp-wrap--xs  { max-width:700px;  margin:0 auto; padding:0 24px; }
.bp-section   { padding:80px 0; }
.bp-section--sm { padding:48px 0; }
.bp-section--xs { padding:24px 0; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 20px rgba(99,102,241,.3); }
  50%      { box-shadow: 0 0 40px rgba(99,102,241,.6); }
}
@keyframes count-up {
  from { opacity:0; transform:scale(.8); }
  to   { opacity:1; transform:scale(1); }
}
@keyframes shimmer {
  0%   { background-position:-200% 0; }
  100% { background-position: 200% 0; }
}
.bp-reveal {
  transition: opacity .6s ease, transform .6s ease;
}
.bp-js .bp-reveal { opacity:0; transform:translateY(24px); }
.bp-js .bp-reveal.visible { opacity:1; transform:translateY(0); }

/* ── Gradient text ──────────────────────────────────────────── */
.bp-grad-text {
  background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.bp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--radius-sm); border: none;
  font-size: 14px; font-weight: 700; letter-spacing: .01em;
  text-decoration: none; white-space: nowrap; transition: all var(--trans);
  cursor: pointer; position: relative; overflow: hidden;
}
.bp-btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(99,102,241,.35);
}
.bp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99,102,241,.5);
}
.bp-btn--green {
  background: var(--green); color: #fff;
  box-shadow: 0 4px 16px rgba(16,185,129,.3);
}
.bp-btn--green:hover {
  background: var(--green2); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16,185,129,.45);
}
.bp-btn--ghost {
  background: transparent; color: var(--text2);
  border: 1px solid var(--border2);
}
.bp-btn--ghost:hover { border-color: var(--accent); color: var(--text); background: rgba(99,102,241,.06); }
.bp-btn--sm { padding: 8px 16px; font-size: 13px; }
.bp-btn--lg { padding: 15px 36px; font-size: 16px; border-radius: var(--radius); }
.bp-btn--full { width: 100%; }
.bp-btn--icon { padding: 10px; border-radius: var(--radius-sm); }

/* ── Navigation ──────────────────────────────────────────────── */
.bp-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(7,10,18,.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.bp-nav__inner {
  display: flex; align-items: center; gap: 0;
  height: 68px; max-width:1180px; margin:0 auto; padding:0 24px;
}
.bp-nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 900; color: var(--text);
  text-decoration: none; margin-right: 40px; flex-shrink: 0;
}
.bp-nav__logo-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
  box-shadow: var(--glow);
}
.bp-nav__logo strong { color: var(--accent); }
.bp-nav__links {
  display: flex; align-items: stretch; list-style: none; gap: 0; flex: 1;
}
.bp-nav__link {
  display: flex; align-items: center; padding: 0 18px;
  font-size: 14px; font-weight: 600; color: var(--muted2);
  text-decoration: none; white-space: nowrap; height: 68px;
  border-bottom: 2px solid transparent; transition: all var(--trans);
  position: relative;
}
.bp-nav__link:hover { color: var(--text); border-bottom-color: var(--accent); }
.bp-nav__link.active { color: var(--text); border-bottom-color: var(--accent); }
.bp-nav__link--cta {
  margin-left: auto; padding: 0;
  height: auto; border: none;
}
.bp-nav__right {
  display: flex; align-items: center; gap: 12px; margin-left: auto;
}
.bp-nav__search {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 14px;
  font-size: 14px; color: var(--muted2); cursor: pointer;
  transition: all var(--trans); white-space: nowrap;
}
.bp-nav__search:hover { border-color: var(--accent); color: var(--text); }
.bp-nav__search input {
  background: none; border: none; outline: none; color: var(--text);
  font-size: 14px; width: 160px;
}
.bp-nav__search input::placeholder { color: var(--muted); }
.bp-burger {
  display: none; background: none; border: none;
  color: var(--text); font-size: 22px; padding: 8px;
}

/* Mobile menu */
.bp-mobile-menu {
  display: none; flex-direction: column;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 16px 24px; gap: 2px;
}
.bp-mobile-menu.open { display: flex; }
.bp-mobile-menu a {
  display: block; padding: 12px 0;
  color: var(--text2); font-size: 15px; font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.bp-mobile-menu a:last-child { border: none; }

/* ── Hero ───────────────────────────────────────────────────── */
.bp-hero {
  position: relative; overflow: hidden;
  padding: 110px 0 90px; text-align: center;
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(99,102,241,.24) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139,92,246,.08) 0%, transparent 60%);
}
.bp-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(99,102,241,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 80%);
}
.bp-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,.12); border: 1px solid rgba(99,102,241,.35);
  border-radius: 24px; padding: 7px 18px; font-size: 13px; font-weight: 700;
  color: #A5B4FC; margin-bottom: 28px; letter-spacing: .06em;
  box-shadow: 0 0 20px rgba(99,102,241,.15);
}
.bp-hero__title {
  font-size: clamp(38px, 5.5vw, 72px); font-weight: 900;
  line-height: 1.06; letter-spacing: -.025em; margin-bottom: 22px;
}
.bp-hero__sub {
  font-size: clamp(16px, 2vw, 19px); color: var(--muted2);
  max-width: 560px; margin: 0 auto 44px; line-height: 1.7;
}
.bp-hero__actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px;
}
.bp-hero__stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: nowrap;
  padding-top: 40px; border-top: 1px solid var(--border);
  max-width: 780px; margin: 0 auto;
}
.bp-stat { text-align: center; flex-shrink: 0; }
.bp-stat strong {
  display: block; font-size: 30px; font-weight: 900; line-height: 1; margin-bottom: 5px;
  background: linear-gradient(135deg, var(--accent), var(--text));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bp-stat span { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; }

/* ── Section head ────────────────────────────────────────────── */
.bp-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 36px;
}
.bp-section-head h2 { font-size: clamp(22px,3vw,32px); font-weight: 800; letter-spacing: -.01em; }
.bp-section-head p  { color: var(--muted2); font-size: 15px; margin-top: 6px; }
.bp-section-title { font-size: clamp(22px,3vw,32px); font-weight: 800; letter-spacing:-.01em; }
.bp-section-sub { color: var(--muted2); font-size:15px; margin-top:6px; }

/* ── Category tabs / chips ───────────────────────────────────── */
.bp-tabs {
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 0;
}
.bp-tabs::-webkit-scrollbar { display: none; }
.bp-tab {
  display: flex; align-items: center; gap: 6px; padding: 14px 20px;
  font-size: 14px; font-weight: 700; color: var(--muted2);
  border: none; background: none; cursor: pointer; white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}
.bp-tab:hover { color: var(--text); }
.bp-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.bp-tab-icon { font-size: 15px; }

.bp-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.bp-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 700;
  border: 1px solid var(--border2); color: var(--muted2); background: var(--surface2);
  cursor: pointer; transition: all var(--trans); white-space: nowrap;
}
.bp-chip:hover, .bp-chip.active {
  border-color: var(--accent); color: var(--accent);
  background: rgba(99,102,241,.08);
}

/* ── Featured carousel cards ─────────────────────────────────── */
.bp-featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.bp-featured-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  transition: all var(--trans);
}
.bp-featured-card:hover {
  border-color: var(--accent); transform: translateY(-2px);
  box-shadow: var(--glow);
}
.bp-featured-card__head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.bp-featured-card__title { font-size: 15px; font-weight: 800; }
.bp-featured-card__score { margin-left: auto; font-size: 20px; font-weight: 900; color: var(--green); }

/* ── Firm directory table ─────────────────────────────────────── */
.bp-dir {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.bp-dir__filters {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.bp-filter-select {
  background: var(--surface3); border: 1px solid var(--border2);
  color: var(--text2); border-radius: var(--radius-xs);
  padding: 8px 12px; font-size: 13px; font-weight: 600; cursor: pointer;
  outline: none; transition: border-color var(--trans);
}
.bp-filter-select:focus { border-color: var(--accent); }
.bp-dir__search {
  display: flex; align-items: center; gap: 8px; flex: 1; min-width: 200px;
  background: var(--surface3); border: 1px solid var(--border2);
  border-radius: var(--radius-xs); padding: 8px 14px;
}
.bp-dir__search input {
  background: none; border: none; outline: none;
  color: var(--text); font-size: 13px; width: 100%;
}
.bp-dir__search input::placeholder { color: var(--muted); }
.bp-sort-select {
  background: var(--surface3); border: 1px solid var(--border2);
  color: var(--text2); border-radius: var(--radius-xs);
  padding: 8px 12px; font-size: 13px; cursor: pointer; outline: none;
}

/* Directory table */
.bp-dir-table { width: 100%; border-collapse: collapse; }
.bp-dir-table th {
  padding: 13px 16px; text-align: left;
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .09em; color: var(--muted);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface2) 0%, var(--surface) 100%);
  white-space: nowrap;
}
.bp-dir-table td {
  padding: 16px 16px; border-bottom: 1px solid var(--border);
  vertical-align: middle; font-size: 14px;
}
.bp-dir-table tbody tr { transition: background var(--trans); cursor: default; }
.bp-dir-table tbody tr:hover { background: rgba(99,102,241,.04); }
.bp-dir-table tbody tr:hover td:first-child { border-left: 2px solid var(--accent); }
.bp-dir-table tbody tr:last-child td { border-bottom: none; }
.bp-dir-table--hidden { display: none; }

.bp-dir-firm {
  display: flex; align-items: center; gap: 12px; min-width: 160px;
}
.bp-dir-firm__name { font-weight: 700; font-size: 15px; }
.bp-dir-firm__country { font-size: 12px; color: var(--muted); }

.bp-rating { display: flex; align-items: center; gap: 6px; }
.bp-rating__stars { color: var(--amber); font-size: 13px; letter-spacing: -1px; }
.bp-rating__num { font-size: 13px; font-weight: 700; }

.bp-platform-icons { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.bp-platform-icon {
  width: 28px; height: 28px; border-radius: 7px; overflow: hidden;
  background: var(--surface3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
}
.bp-platform-icon img { width: 100%; height: 100%; object-fit: contain; }

.bp-asset-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.bp-asset-tag {
  display: inline-block; padding: 2px 7px; border-radius: 4px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  background: var(--surface3); color: var(--muted2); border: 1px solid var(--border2);
}

.bp-code-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.3);
  color: #A5B4FC; border-radius: var(--radius-xs); padding: 5px 10px;
  font-size: 12px; font-weight: 800; font-family: monospace; letter-spacing: .05em;
  cursor: pointer; transition: all var(--trans); white-space: nowrap;
}
.bp-code-pill:hover { background: rgba(99,102,241,.2); }
.bp-code-pill.copied { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.3); color: var(--green); }
.bp-code-pill__icon { font-size: 11px; opacity: .7; }

.bp-dir-table .bp-btn--green { padding: 7px 16px; font-size: 13px; }
.bp-dir-table .bp-btn--ghost { padding: 7px 14px; font-size: 13px; }

.bp-dir-count { padding: 12px 20px; font-size: 13px; color: var(--muted); border-top: 1px solid var(--border); text-align: right; }

/* Tabs (Firms / Challenges) */
.bp-view-toggle {
  display: flex; gap: 4px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 4px;
}
.bp-view-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius-xs); border: none;
  font-size: 14px; font-weight: 700; color: var(--muted2); background: none;
  cursor: pointer; transition: all var(--trans);
}
.bp-view-btn.active { background: var(--accent); color: #fff; }

/* ── Firm cards grid ─────────────────────────────────────────── */
.bp-firms-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 20px;
}
.bp-firm-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; position: relative;
  overflow: hidden; transition: all var(--trans); display: flex; flex-direction: column;
}
.bp-firm-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.04) 0%, transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity .2s;
}
.bp-firm-card:hover { border-color: rgba(99,102,241,.5); transform: translateY(-4px); box-shadow: 0 16px 56px rgba(99,102,241,.2), 0 4px 16px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.04); }
.bp-firm-card:hover::before { opacity: 1; }
.bp-firm-card__badge { position: absolute; top: 16px; right: 16px; }
.bp-firm-card__head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.bp-firm-card__info { flex: 1; }
.bp-firm-card__name { font-size: 18px; font-weight: 800; margin-bottom: 3px; }
.bp-firm-card__tagline { font-size: 13px; color: var(--muted2); line-height: 1.4; }
.bp-firm-card__score { text-align: right; flex-shrink: 0; }
.bp-firm-card__score-num { font-size: 28px; font-weight: 900; color: var(--green); line-height: 1; }
.bp-firm-card__stars { font-size: 13px; color: var(--amber); margin-top: 2px; }
.bp-firm-card__metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px;
}
.bp-metric {
  background: var(--surface2); border-radius: var(--radius-xs); padding: 10px 12px;
}
.bp-metric__label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.bp-metric__value { font-size: 15px; font-weight: 800; }
.bp-metric__value--green { color: var(--green); }
.bp-firm-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.bp-tag {
  display: inline-block; padding: 3px 9px; border-radius: 20px;
  font-size: 11px; font-weight: 700; color: var(--muted2);
  background: var(--surface3); border: 1px solid var(--border2);
}
.bp-firm-card__actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; padding-top: 4px; }
.bp-firm-card__score-denom { font-size: 14px; color: var(--muted); font-weight: 600; }

/* ── Challenges table ────────────────────────────────────────── */
.bp-challenges { }
.bp-challenges__filters {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px; margin-bottom: 16px;
}
.bp-challenges__filters-left { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.bp-challenges__search {
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: var(--radius-xs); padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
}
.bp-challenges__search input {
  background: none; border: none; outline: none; color: var(--text); font-size: 13px; width: 200px;
}
.bp-challenges__search input::placeholder { color: var(--muted); }
.bp-challenges__table-wrap { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.bp-ch-table { width: 100%; border-collapse: collapse; }
.bp-ch-table th {
  padding: 12px 14px; text-align: left;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); background: var(--surface); border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.bp-ch-table td { padding: 13px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; font-size: 14px; }
.bp-ch-table tr:hover td { background: var(--surface2); }
.bp-ch-table tr:last-child td { border-bottom: none; }
.bp-ch-table .bp-price-orig { text-decoration: line-through; color: var(--muted); font-size: 12px; display: block; }
.bp-ch-table .bp-price-main { font-size: 16px; font-weight: 800; }
.bp-ch-table .bp-price-disc { color: var(--green); font-size: 11px; font-weight: 800; }
.bp-ch-table__count { padding: 10px 16px; font-size: 13px; color: var(--muted); text-align: right; background: var(--surface2); border-top: 1px solid var(--border); }
.bp-ch-row--hidden { display: none; }

/* ── Discount code cards ─────────────────────────────────────── */
.bp-codes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 16px; }
.bp-code-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  transition: border-color var(--trans);
}
.bp-code-card:hover { border-color: var(--accent); }
.bp-code-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.bp-code-card__name { font-size: 16px; font-weight: 800; margin-bottom: 2px; }
.bp-code-card__discount { font-size: 13px; color: var(--green); font-weight: 700; }
.bp-code-card__actions { display: flex; gap: 8px; margin-top: 14px; }
.bp-code-card__actions .bp-btn { flex: 1; }

/* ── Firm logo / avatar ──────────────────────────────────────── */
.bp-logo {
  border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0;
  background: var(--surface3); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #fff;
}
.bp-logo img { width: 100%; height: 100%; object-fit: contain; }
.bp-logo--sm { width: 36px; height: 36px; font-size: 13px; border-radius: 8px; }
.bp-logo--md { width: 52px; height: 52px; font-size: 18px; border-radius: 10px; }
.bp-logo--lg { width: 72px; height: 72px; font-size: 26px; border-radius: 12px; }
.bp-logo--xl { width: 96px; height: 96px; font-size: 34px; border-radius: 16px; }

/* ── Badges ──────────────────────────────────────────────────── */
.bp-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: var(--radius-xs);
  font-size: 12px; font-weight: 800; white-space: nowrap;
}
.bp-badge--amber { background: rgba(245,158,11,.12); color: var(--amber); border: 1px solid rgba(245,158,11,.25); }
.bp-badge--green { background: rgba(16,185,129,.12); color: var(--green); border: 1px solid rgba(16,185,129,.25); }
.bp-badge--accent { background: rgba(99,102,241,.12); color: #A5B4FC; border: 1px solid rgba(99,102,241,.25); }
.bp-badge--red    { background: rgba(239,68,68,.12); color: var(--red); border: 1px solid rgba(239,68,68,.25); }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.bp-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.bp-breadcrumb a { color: var(--accent); }
.bp-breadcrumb a:hover { text-decoration: underline; }
.bp-breadcrumb__sep { opacity: .4; }

/* ── Single firm page ────────────────────────────────────────── */
.bp-firm-hero {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, rgba(99,102,241,.1) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.bp-firm-hero__layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.bp-firm-hero__main {}
.bp-firm-hero__head { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.bp-firm-hero__name { font-size: clamp(28px,4vw,42px); font-weight: 900; letter-spacing: -.02em; }
.bp-firm-hero__tagline { font-size: 16px; color: var(--muted2); margin-top: 4px; }
.bp-firm-hero__meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 24px; }
.bp-firm-hero__meta-item { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--muted2); }

.bp-score-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.bp-score-card__num { font-size: 56px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 6px; }
.bp-score-card__stars { font-size: 20px; color: var(--amber); margin-bottom: 4px; }
.bp-score-card__label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: 4px; }
.bp-score-card__tp { font-size: 13px; color: var(--muted2); margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }

.bp-coupon-card {
  background: var(--surface); border: 1px solid rgba(99,102,241,.3);
  border-radius: var(--radius); padding: 20px; text-align: center;
}
.bp-coupon-card__label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 10px; }
.bp-coupon-card__amount { font-size: 13px; color: var(--green); font-weight: 800; margin-top: 6px; }

/* Metrics strip */
.bp-metrics { display: flex; flex-wrap: wrap; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 32px 0; }
.bp-metrics__item { flex: 1; min-width: 130px; padding: 20px 16px; text-align: center; border-right: 1px solid var(--border); }
.bp-metrics__item:last-child { border-right: none; }
.bp-metrics__val { font-size: 24px; font-weight: 900; margin-bottom: 4px; }
.bp-metrics__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }

/* Pros/cons */
.bp-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.bp-pros-cons__col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.bp-pros-cons__title { font-size: 14px; font-weight: 800; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.bp-pros-cons__title--pro { color: var(--green); }
.bp-pros-cons__title--con { color: var(--red); }
.bp-pros-cons__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bp-pros-cons__item { display: flex; gap: 10px; font-size: 14px; color: var(--text2); }
.bp-pros-cons__icon { font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.bp-pros-cons__item--pro .bp-pros-cons__icon { color: var(--green); }
.bp-pros-cons__item--con .bp-pros-cons__icon { color: var(--red); }

/* Rules table */
.bp-rules-table { width: 100%; border-collapse: collapse; }
.bp-rules-table tr { border-bottom: 1px solid var(--border); }
.bp-rules-table tr:last-child { border-bottom: none; }
.bp-rules-table td { padding: 12px 0; font-size: 14px; }
.bp-rules-table td:first-child { color: var(--muted2); width: 45%; }
.bp-rules-table td:last-child { font-weight: 700; }

/* ── Comparison ──────────────────────────────────────────────── */
.bp-vs-hero { padding: 56px 0 40px; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, rgba(99,102,241,.08) 0%, transparent 100%); }
.bp-vs-hero__firms { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.bp-vs-hero__firm { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 180px; }
.bp-vs-hero__firm--b { flex-direction: row-reverse; text-align: right; }
.bp-vs-hero__sep { font-size: 32px; font-weight: 900; color: var(--border2); flex-shrink: 0; }
.bp-vs-hero__name { font-size: 22px; font-weight: 900; }
.bp-vs-hero__score { font-size: 32px; font-weight: 900; color: var(--green); }

.bp-comp-table { width: 100%; border-collapse: collapse; }
.bp-comp-table th { padding: 14px 16px; background: var(--surface2); border-bottom: 1px solid var(--border); font-size: 13px; font-weight: 800; text-align: left; }
.bp-comp-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.bp-comp-table .bp-comp-cat { background: rgba(99,102,241,.06); color: var(--accent); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.bp-comp-winner { color: var(--green); font-weight: 800; }

/* ── Article / blog ──────────────────────────────────────────── */
.bp-article { color: var(--text2); line-height: 1.8; }
.bp-article h2 { font-size: 26px; font-weight: 800; color: var(--text); margin: 40px 0 14px; }
.bp-article h3 { font-size: 20px; font-weight: 800; color: var(--text); margin: 32px 0 12px; }
.bp-article h4 { font-size: 17px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.bp-article p  { margin-bottom: 18px; }
.bp-article ul, .bp-article ol { margin: 16px 0 16px 24px; }
.bp-article li { margin-bottom: 8px; }
.bp-article a  { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(99,102,241,.4); }
.bp-article a:hover { text-decoration-color: var(--accent); }
.bp-article blockquote { border-left: 3px solid var(--accent); padding-left: 20px; margin: 24px 0; color: var(--muted2); font-style: italic; }
.bp-article strong { color: var(--text); font-weight: 800; }
.bp-article code { background: var(--surface2); border: 1px solid var(--border2); border-radius: 4px; padding: 2px 6px; font-size: .9em; font-family: monospace; color: #A5B4FC; }
.bp-article img { border-radius: var(--radius); margin: 24px 0; }

/* Blog card */
.bp-blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 20px; }
.bp-blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: all var(--trans);
}
.bp-blog-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--glow); }
.bp-blog-card__img { aspect-ratio: 16/9; overflow: hidden; background: var(--surface2); }
.bp-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.bp-blog-card:hover .bp-blog-card__img img { transform: scale(1.05); }
.bp-blog-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.bp-blog-card__meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.bp-blog-card__cat { color: var(--accent); font-weight: 700; }
.bp-blog-card__title { font-size: 17px; font-weight: 800; line-height: 1.35; margin-bottom: 8px; color: var(--text); }
.bp-blog-card__excerpt { font-size: 14px; color: var(--muted2); line-height: 1.6; flex: 1; }
.bp-blog-card__read { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--accent); }
.bp-blog-card__read:hover { gap: 10px; }

/* ── Verdict box ─────────────────────────────────────────────── */
.bp-verdict {
  background: linear-gradient(135deg, rgba(99,102,241,.1) 0%, rgba(16,185,129,.05) 100%);
  border: 1px solid rgba(99,102,241,.3); border-radius: var(--radius); padding: 28px; margin: 32px 0;
}
.bp-verdict__label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 12px; }
.bp-verdict p { color: var(--text2); line-height: 1.7; margin-bottom: 0; }
.bp-verdict__btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* ── How we rank ─────────────────────────────────────────────── */
.bp-how-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 20px; }
.bp-how-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  transition: all var(--trans); position: relative; overflow: hidden;
}
.bp-how-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2)); opacity: 0; transition: opacity .2s;
}
.bp-how-card:hover { border-color: rgba(99,102,241,.3); transform: translateY(-2px); }
.bp-how-card:hover::after { opacity: 1; }
.bp-how-card__num { font-size: 44px; font-weight: 900; color: var(--accent); opacity: .3; line-height: 1; margin-bottom: 16px; font-variant-numeric: tabular-nums; }
.bp-how-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.bp-how-card p { font-size: 14px; color: var(--muted2); line-height: 1.6; }

/* ── CTA block ───────────────────────────────────────────────── */
.bp-cta-block {
  display: flex; align-items: center; gap: 28px;
  background: linear-gradient(135deg, rgba(99,102,241,.12) 0%, rgba(139,92,246,.08) 100%);
  border: 1px solid rgba(99,102,241,.25); border-radius: var(--radius); padding: 36px; margin: 48px 0;
}
.bp-cta-block__text { flex: 1; }
.bp-cta-block h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.bp-cta-block p { color: var(--muted2); }
.bp-cta-block__btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Related grid ────────────────────────────────────────────── */
.bp-related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 10px; }
.bp-related-card {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700; color: var(--text2); transition: all var(--trans);
}
.bp-related-card:hover { border-color: var(--accent); color: var(--text); }
.bp-related-card__arrow { margin-left: auto; color: var(--muted); }

/* ── Page hero ───────────────────────────────────────────────── */
.bp-page-hero {
  padding: 56px 0 40px; text-align: center;
  background: linear-gradient(180deg, rgba(99,102,241,.1) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.bp-page-hero h1 { font-size: clamp(28px,4vw,48px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 12px; }
.bp-page-hero p { font-size: 17px; color: var(--muted2); max-width: 560px; margin: 0 auto; }

/* ── Footer ──────────────────────────────────────────────────── */
.bp-footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 64px 0 32px; margin-top: 80px;
}
.bp-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.bp-footer__logo { font-size: 22px; font-weight: 900; margin-bottom: 12px; }
.bp-footer__logo strong { color: var(--accent); }
.bp-footer__brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 300px; }
.bp-footer__col h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 16px; }
.bp-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bp-footer__col a { font-size: 14px; color: var(--muted2); transition: color var(--trans); }
.bp-footer__col a:hover { color: var(--text); }
.bp-footer__disclaimer { font-size: 13px; color: var(--muted); line-height: 1.7; padding: 24px 0; border-top: 1px solid var(--border); margin-bottom: 20px; }
.bp-footer__bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px; }
.bp-footer__bottom-links { display: flex; gap: 20px; }
.bp-footer__bottom-links a { color: var(--muted); }
.bp-footer__bottom-links a:hover { color: var(--text); }

/* ── Utility ─────────────────────────────────────────────────── */
.bp-text-green { color: var(--green); }
.bp-text-red   { color: var(--red); }
.bp-text-amber { color: var(--amber); }
.bp-text-muted { color: var(--muted2); }
.bp-text-accent{ color: var(--accent); }
.bp-fw-900 { font-weight: 900; }
.bp-fw-700 { font-weight: 700; }
.bp-num    { font-variant-numeric: tabular-nums; }
.bp-mono   { font-family: monospace; }
.bp-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.bp-empty { text-align: center; padding: 80px 20px; color: var(--muted2); }
.bp-empty__icon { font-size: 48px; margin-bottom: 16px; }
.bp-empty h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; }

/* ── Label pill ─────────────────────────────────────────────── */
.bp-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.3);
  border-radius: 20px; padding: 5px 14px;
  font-size: 12px; font-weight: 700; color: #A5B4FC; letter-spacing: .05em;
}

/* ── Two-column content + sidebar layout ─────────────────────── */
.bp-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start;
  padding-top: 40px; padding-bottom: 80px;
}
.bp-sidebar { display: flex; flex-direction: column; gap: 16px; }
.bp-sidebar--sticky { position: sticky; top: 88px; }
.bp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Sidebar context: related list becomes flex column */
.bp-sidebar .bp-related-grid { display: flex; flex-direction: column; gap: 8px; }

/* ── Sticky discount bar ─────────────────────────────────────── */
.bp-sticky-discount { position: sticky; top: 68px; z-index: 89; }
@media (max-width: 768px) { .bp-sticky-discount { top: 0; } }

/* ── Editorial content ───────────────────────────────────────── */
.bp-editorial { margin-bottom: 40px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bp-nav__links { display: none; }
  .bp-burger { display: block; margin-left: auto; }
  .bp-layout { grid-template-columns: 1fr; }
  .bp-sidebar { position: static; }
  .bp-firm-hero__layout { grid-template-columns: 1fr; }
  .bp-footer__grid { grid-template-columns: 1fr 1fr; }
  .bp-featured-grid { grid-template-columns: 1fr; }
  .bp-vs-hero__firms { flex-direction: column; text-align: center; }
  .bp-vs-hero__firm--b { flex-direction: row; text-align: left; }
}
@media (max-width: 768px) {
  .bp-section { padding: 56px 0; }
  .bp-hero { padding: 72px 0 56px; }
  .bp-hero__stats { gap: 20px; flex-wrap: wrap; }
  .bp-stat strong { font-size: 24px; }
  .bp-stat span { font-size: 10px; }
  .bp-pros-cons { grid-template-columns: 1fr; }
  .bp-metrics { flex-wrap: wrap; }
  .bp-metrics__item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .bp-cta-block { flex-direction: column; text-align: center; }
  .bp-challenges__filters { flex-direction: column; }
  .bp-challenges__search input { width: 100%; }
  .bp-tab { padding: 12px 14px; font-size: 13px; }
  .bp-tab-icon { display: none; }
  .bp-sticky-discount { top: 0; }
  .bp-layout { padding-top: 24px; padding-bottom: 48px; }
}
@media (max-width: 600px) {
  .bp-wrap { padding: 0 16px; }
  .bp-firms-grid { grid-template-columns: 1fr; }
  .bp-codes-grid { grid-template-columns: 1fr; }
  .bp-footer__grid { grid-template-columns: 1fr; }
  .bp-how-grid { grid-template-columns: 1fr; }
  .bp-section-head { flex-direction: column; align-items: flex-start; }
  .bp-dir__filters { flex-direction: column; }
  .bp-ch-table th, .bp-ch-table td { padding: 10px 8px; font-size: 13px; }
  .bp-dir-table th, .bp-dir-table td { padding: 10px 8px; font-size: 13px; }
  .bp-featured-cats { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────────
   NEW COMPONENTS v2.3 — Featured cats, CTA section, Social,
   FAQ, Who-should-choose, Internal links, Firm page polishing
   ────────────────────────────────────────────────────────────── */

/* ── Featured categories (homepage) ─────────────────────────── */
.bp-featured-cats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 768px) { .bp-featured-cats { grid-template-columns: 1fr; } }
.bp-featured-cat__head {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: var(--muted); margin-bottom: 14px; text-align: center;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.bp-featured-row {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 8px; text-decoration: none;
  color: var(--text); transition: all var(--trans);
}
.bp-featured-row:hover { border-color: var(--accent); transform: translateX(3px); }
.bp-featured-row__name { flex: 1; font-size: 14px; font-weight: 700; }
.bp-featured-row__badge {
  background: var(--accent); color: #fff; border-radius: 6px;
  padding: 3px 10px; font-size: 11px; font-weight: 800; white-space: nowrap;
}

/* ── Bottom CTA section ──────────────────────────────────────── */
.bp-cta-section {
  background: linear-gradient(135deg, rgba(99,102,241,.12) 0%, rgba(91,91,214,.06) 100%);
  border-top: 1px solid rgba(99,102,241,.2);
  padding: 80px 0; text-align: center;
}
.bp-cta-section h2 { font-size: clamp(26px,3.5vw,40px); font-weight: 900; margin-bottom: 14px; }
.bp-cta-section p  { font-size: 17px; color: var(--muted2); max-width: 520px; margin: 0 auto 32px; }

/* ── Social links footer ─────────────────────────────────────── */
.bp-social-links { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.bp-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--muted2); transition: all var(--trans); text-decoration: none; font-size: 15px;
}
.bp-social-link:hover { border-color: var(--accent); color: var(--text); }

/* ── FAQ block ───────────────────────────────────────────────── */
.bp-faq { margin: 40px 0; }
.bp-faq__title { font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.bp-faq__item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 10px; overflow: hidden;
}
.bp-faq__q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; font-size: 15px; font-weight: 700; cursor: pointer;
  background: var(--surface); transition: background var(--trans); gap: 12px;
  border: none; width: 100%; text-align: left; color: var(--text);
}
.bp-faq__q:hover { background: var(--surface2); }
.bp-faq__icon { flex-shrink: 0; font-size: 18px; color: var(--accent); transition: transform .2s; }
.bp-faq__item.open .bp-faq__icon { transform: rotate(45deg); }
.bp-faq__a {
  display: none; padding: 16px 20px; font-size: 14px; color: var(--text2);
  line-height: 1.7; border-top: 1px solid var(--border); background: var(--surface2);
}
.bp-faq__item.open .bp-faq__a { display: block; }

/* ── Who should choose block ─────────────────────────────────── */
.bp-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
@media (max-width: 640px) { .bp-who-grid { grid-template-columns: 1fr; } }
.bp-who-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.bp-who-card--a { border-top: 3px solid var(--accent); }
.bp-who-card--b { border-top: 3px solid var(--green); }
.bp-who-card__head { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 8px; }
.bp-who-card__title { font-size: 17px; font-weight: 900; margin-bottom: 14px; }
.bp-who-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.bp-who-card li { display: flex; gap: 8px; font-size: 14px; color: var(--text2); }
.bp-who-card li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; }

/* ── Internal links block ────────────────────────────────────── */
.bp-internal-links {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin: 32px 0;
}
.bp-internal-links__title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; }
.bp-internal-links__grid { display: flex; flex-wrap: wrap; gap: 8px; }
.bp-internal-links__grid a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 700;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text2); text-decoration: none; transition: all var(--trans);
}
.bp-internal-links__grid a:hover { border-color: var(--accent); color: var(--text); }

/* ── Blog preview cards ──────────────────────────────────────── */
.bp-blog-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 900px) { .bp-blog-preview-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .bp-blog-preview-grid { grid-template-columns: 1fr; } }

/* ── Page hero — centered variant ────────────────────────────── */
.bp-page-hero { padding: 56px 0 44px; text-align: center; border-bottom: 1px solid var(--border); }
.bp-page-hero h1 { font-size: clamp(28px,4vw,48px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 14px; }
.bp-page-hero p { font-size: 17px; color: var(--muted2); max-width: 560px; margin: 0 auto; }

/* ── Table improvements ──────────────────────────────────────── */
.bp-dir-table .bp-btn--green { min-width: 80px; justify-content: center; }
.bp-dir-table .bp-btn--ghost { min-width: 72px; justify-content: center; }
.bp-actions-cell { display: flex; gap: 6px; }

/* ── Hero — larger score display on single firm ──────────────── */
.bp-firm-score-display { font-size: 48px; font-weight: 900; color: var(--green); line-height: 1; }
.bp-firm-score-display span { font-size: 20px; color: var(--muted); font-weight: 600; }

/* ── Comparison table improved ───────────────────────────────── */
.bp-comp-table .bp-comp-winner-a { background: rgba(99,102,241,.06); }
.bp-comp-table .bp-comp-winner-b { background: rgba(16,185,129,.06); }
.bp-comp-table td:first-child { font-size: 13px; color: var(--muted2); font-weight: 600; }

/* ── Mobile table — stacked cards ───────────────────────────── */
@media (max-width: 640px) {
  .bp-dir-table-wrap { overflow-x: auto; }
  .bp-ch-table-wrap  { overflow-x: auto; }
}

/* ════════════════════════════════════════════════════════════
   FIRM PAGE — Linear 12-step layout
   ══════════════════════════════════════════════════════════ */

/* ── Firm Hero ──────────────────────────────────────────────── */
.bp-firm-hero {
  background: linear-gradient(135deg, rgba(99,102,241,.12) 0%, rgba(139,92,246,.07) 50%, transparent 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 44px;
}
.bp-firm-hero__inner { display: flex; align-items: flex-start; gap: 32px; }
.bp-firm-hero__left { display: flex; align-items: flex-start; gap: 24px; flex: 1; }
.bp-firm-hero__cats { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.bp-firm-hero__flag { font-size: 22px; }
.bp-firm-hero__title {
  font-size: clamp(24px, 3.5vw, 40px); font-weight: 900; letter-spacing: -.025em;
  line-height: 1.15; margin-bottom: 10px;
}
.bp-firm-hero__verdict { font-size: 16px; color: var(--muted2); margin-bottom: 18px; max-width: 560px; }
.bp-firm-hero__rating { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.bp-firm-hero__stars { display: flex; flex-direction: column; gap: 4px; }
.bp-firm-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Score badges ───────────────────────────────────────────── */
.bp-score-badge {
  display: inline-flex; align-items: baseline; gap: 3px;
  font-size: 22px; font-weight: 900; color: #fff;
  padding: 6px 14px; border-radius: var(--radius-sm); line-height: 1;
}
.bp-score-badge--lg { font-size: 28px; padding: 8px 16px; }
.bp-score-badge--xl { font-size: 48px; padding: 14px 24px; border-radius: var(--radius); }
.bp-score-badge small { font-size: .45em; font-weight: 600; opacity: .75; }

/* ── Quick facts strip ──────────────────────────────────────── */
.bp-quick-facts { display: flex; gap: 16px; flex-wrap: wrap; }
.bp-quick-fact {
  flex: 1 1 140px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 16px; text-align: center;
  transition: border-color var(--trans);
}
.bp-quick-fact:hover { border-color: var(--accent); }
.bp-quick-fact__icon { font-size: 22px; margin-bottom: 6px; }
.bp-quick-fact__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 4px; }
.bp-quick-fact__val { font-size: 17px; font-weight: 800; color: var(--text); }

/* ── Overview table ─────────────────────────────────────────── */
.bp-overview-table { margin-top: 28px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.bp-overview-table table { width: 100%; border-collapse: collapse; }
.bp-overview-table th, .bp-overview-table td { padding: 13px 20px; font-size: 14px; border-bottom: 1px solid var(--border); }
.bp-overview-table th { background: var(--surface2); color: var(--muted2); font-weight: 700; width: 36%; }
.bp-overview-table td { background: var(--surface); color: var(--text); }
.bp-overview-table tr:last-child th, .bp-overview-table tr:last-child td { border-bottom: none; }

/* ── Rules table ────────────────────────────────────────────── */
.bp-rules-table { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.bp-rules-table table { width: 100%; border-collapse: collapse; }
.bp-rules-table th { background: linear-gradient(135deg,rgba(99,102,241,.15),rgba(139,92,246,.1)); color: var(--text); font-size: 12px; text-transform: uppercase; letter-spacing: .07em; padding: 13px 20px; text-align: left; font-weight: 800; }
.bp-rules-table td { padding: 12px 20px; font-size: 14px; border-bottom: 1px solid var(--border); background: var(--surface); }
.bp-rules-table td:first-child { color: var(--muted2); font-weight: 600; background: var(--surface2); }
.bp-rules-table tr:last-child td { border-bottom: none; }
.bp-rules-table tr:hover td { background: var(--surface2); }
.bp-rules-table tr:hover td:first-child { background: var(--surface3); }

/* ── Price table ────────────────────────────────────────────── */
.bp-price-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.bp-price-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.bp-price-table th { background: linear-gradient(135deg,rgba(99,102,241,.15),rgba(139,92,246,.1)); color: var(--text); font-size: 12px; text-transform: uppercase; letter-spacing: .07em; padding: 13px 16px; text-align: left; font-weight: 800; }
.bp-price-table td { padding: 13px 16px; font-size: 14px; border-bottom: 1px solid var(--border); background: var(--surface); vertical-align: middle; }
.bp-price-table tr:last-child td { border-bottom: none; }
.bp-price-table tr:hover td { background: var(--surface2); }
.bp-price--discounted { color: var(--green); font-weight: 800; }

/* ── Pros/cons ──────────────────────────────────────────────── */
.bp-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .bp-pros-cons { grid-template-columns: 1fr; } }
.bp-pros-block, .bp-cons-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.bp-pros-block { border-top: 3px solid var(--green); }
.bp-cons-block { border-top: 3px solid var(--amber); }
.bp-pros-block__head, .bp-cons-block__head {
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 14px; color: var(--text);
}
.bp-pros-block ul, .bp-cons-block ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bp-pros-block li, .bp-cons-block li { display: flex; gap: 10px; font-size: 14px; color: var(--text2); }
.bp-pros-block li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; }
.bp-cons-block li::before { content: '✗'; color: var(--amber); font-weight: 900; flex-shrink: 0; }

/* ── Verdict box ────────────────────────────────────────────── */
.bp-verdict-box {
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  border: 1px solid rgba(99,102,241,.25); border-radius: var(--radius);
  padding: 36px; display: flex; align-items: center; gap: 40px;
  position: relative; overflow: hidden;
}
.bp-verdict-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.bp-verdict-box__left { flex: 1; }
.bp-verdict-box__label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 6px; }
.bp-verdict-box__title { font-size: 22px; font-weight: 900; margin-bottom: 10px; }
.bp-verdict-box p { font-size: 15px; color: var(--text2); margin-bottom: 20px; }
.bp-verdict-box__ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.bp-verdict-box__score { text-align: center; flex-shrink: 0; }
@media (max-width: 640px) { .bp-verdict-box { flex-direction: column; } .bp-verdict-box__score { display: none; } }

/* ── Comp card links ────────────────────────────────────────── */
.bp-comp-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 900px) { .bp-comp-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .bp-comp-cards { grid-template-columns: 1fr; } }
.bp-comp-card-link {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  text-decoration: none; color: var(--text); transition: all var(--trans);
}
.bp-comp-card-link:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--glow); }
.bp-comp-card-link__firms { display: flex; align-items: center; gap: 10px; }
.bp-comp-card-link__vs { font-size: 12px; font-weight: 800; color: var(--muted); text-transform: uppercase; flex-shrink: 0; }
.bp-comp-card-link__title { font-size: 14px; font-weight: 700; line-height: 1.4; flex: 1; }
.bp-comp-card-link__cta { font-size: 12px; font-weight: 700; color: var(--accent); margin-top: auto; }

/* ── Internal links (firm page) ─────────────────────────────── */
.bp-internal-links { display: flex; flex-wrap: wrap; gap: 10px; }
.bp-internal-links a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 700;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text2); text-decoration: none; transition: all var(--trans);
}
.bp-internal-links a:hover { border-color: var(--accent); color: var(--text); }

/* ── Firm cards grid ────────────────────────────────────────── */
.bp-firm-cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 1024px) { .bp-firm-cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .bp-firm-cards-grid { grid-template-columns: 1fr; } }
.bp-firm-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  display: flex; flex-direction: column; gap: 12px; transition: all var(--trans);
}
.bp-firm-card:hover { border-color: rgba(99,102,241,.4); transform: translateY(-2px); box-shadow: 0 16px 56px rgba(99,102,241,.2); }
.bp-firm-card__head { display: flex; align-items: center; gap: 12px; }
.bp-firm-card__name { font-size: 14px; font-weight: 800; }
.bp-firm-card__score { font-size: 13px; font-weight: 700; color: var(--green); }
.bp-firm-card__verdict { font-size: 13px; color: var(--muted2); line-height: 1.5; flex: 1; }
.bp-firm-card__actions { display: flex; gap: 8px; }

/* ── Logo size variants ─────────────────────────────────────── */
.bp-logo--xl {
  width: 80px; height: 80px; border-radius: 16px; font-size: 24px; flex-shrink: 0;
  background: var(--surface2); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-weight: 900; overflow: hidden;
}
.bp-logo--xl img { width: 100%; height: 100%; object-fit: contain; }

/* ── Code cards (homepage) ──────────────────────────────────── */
.bp-codes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 1024px) { .bp-codes-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .bp-codes-grid { grid-template-columns: 1fr; } }
.bp-code-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 14px;
  transition: all var(--trans);
}
.bp-code-card:hover { border-color: rgba(99,102,241,.4); }
.bp-code-card__head { display: flex; align-items: center; gap: 12px; }
.bp-code-card__name { font-size: 14px; font-weight: 800; }
.bp-code-card__discount { font-size: 12px; color: var(--green); font-weight: 700; }
.bp-code-card__actions { display: flex; gap: 8px; }

/* ── Discount strip ─────────────────────────────────────────── */
.bp-discount-strip {
  background: linear-gradient(135deg,rgba(16,185,129,.12),rgba(5,150,105,.08));
  border-top: 1px solid rgba(16,185,129,.2); border-bottom: 1px solid rgba(16,185,129,.2);
  padding: 14px 0;
}
.bp-discount-strip__inner {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.bp-discount-strip__tag {
  background: var(--green); color: #fff; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em; padding: 3px 10px; border-radius: 6px;
}
.bp-discount-strip__msg { font-size: 15px; font-weight: 600; color: var(--text2); }

/* ── Stars ──────────────────────────────────────────────────── */
.bp-stars { font-size: 18px; color: var(--amber); letter-spacing: 1px; }

/* ── Tag chip ───────────────────────────────────────────────── */
.bp-tag {
  display: inline-block; padding: 3px 10px; border-radius: 6px; font-size: 11px;
  font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  background: rgba(99,102,241,.15); border: 1px solid rgba(99,102,241,.25); color: var(--accent);
}

/* ── Featured row score ─────────────────────────────────────── */
.bp-featured-row__score { font-size: 12px; font-weight: 800; color: var(--green); margin-left: 4px; }

/* ── Prose ──────────────────────────────────────────────────── */
.bp-prose { font-size: 16px; color: var(--text2); line-height: 1.75; max-width: 760px; }
.bp-prose h2, .bp-prose h3 { color: var(--text); font-weight: 800; margin: 28px 0 12px; }
.bp-prose p { margin-bottom: 16px; }
.bp-prose ul, .bp-prose ol { margin: 12px 0 16px 20px; }
.bp-prose li { margin-bottom: 6px; }
.bp-prose a { color: var(--accent); }
.bp-prose a:hover { text-decoration: underline; }

/* ── Code pill large ────────────────────────────────────────── */
.bp-code-pill--lg { font-size: 16px; padding: 10px 20px; }

/* ── Blog card ──────────────────────────────────────────────── */
.bp-blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; display: flex;
  flex-direction: column; transition: all var(--trans);
}
.bp-blog-card:hover { border-color: rgba(99,102,241,.4); transform: translateY(-2px); }
.bp-blog-card__img { position: relative; display: block; height: 180px; overflow: hidden; background: var(--surface2); }
.bp-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.bp-blog-card:hover .bp-blog-card__img img { transform: scale(1.04); }
.bp-blog-card__placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 40px; }
.bp-blog-card__cat-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 800;
  padding: 3px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: .05em;
}
.bp-blog-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.bp-blog-card__meta { font-size: 12px; color: var(--muted); font-weight: 600; }
.bp-blog-card__title { font-size: 16px; font-weight: 800; line-height: 1.4; }
.bp-blog-card__title a { color: var(--text); }
.bp-blog-card__title a:hover { color: var(--accent); }
.bp-blog-card__excerpt { font-size: 13px; color: var(--muted2); line-height: 1.6; flex: 1; }

/* ── Firm page mobile ───────────────────────────────────────── */
@media (max-width: 768px) {
  .bp-firm-hero__left { flex-direction: column; }
  .bp-firm-hero__title { font-size: 24px; }
  .bp-firm-hero__ctas { flex-direction: column; }
  .bp-quick-facts { gap: 10px; }
  .bp-quick-fact { flex: 1 1 120px; }
  .bp-comp-cards { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   VISUAL POLISH PASS v2.4 — Animations, Identity, Rhythm
   ════════════════════════════════════════════════════════════ */

/* ── Extended keyframes ──────────────────────────────────────── */
@keyframes gradShift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
@keyframes orb {
  0%,100% { transform: scale(1) translate(0,0); opacity:.6; }
  33%     { transform: scale(1.15) translate(20px,-15px); opacity:.8; }
  66%     { transform: scale(.9) translate(-10px,20px); opacity:.5; }
}
@keyframes shimmerSlide {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
@keyframes fadeSlideUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 24px rgba(99,102,241,.25); }
  50%     { box-shadow: 0 0 48px rgba(99,102,241,.55); }
}

/* ── Animated gradient headline ─────────────────────────────── */
.bp-grad-text {
  background: linear-gradient(135deg, #818CF8, #A78BFA, #60A5FA, #6366F1, #818CF8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 6s ease infinite;
}

/* ── Mouse-follow hero glow ─────────────────────────────────── */
.bp-hero {
  --mx: 50%; --my: 50%;
}
.bp-hero::after {
  content: ''; position: absolute; pointer-events: none;
  width: 700px; height: 700px; border-radius: 50%;
  left: var(--mx); top: var(--my);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(99,102,241,.13) 0%, transparent 65%);
  transition: left .4s ease, top .4s ease;
  z-index: 0;
}
.bp-hero > * { position: relative; z-index: 1; }

/* ── Ambient orb blobs ──────────────────────────────────────── */
.bp-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(80px); animation: orb 12s ease-in-out infinite;
}
.bp-orb--a {
  width: 400px; height: 400px;
  background: rgba(99,102,241,.12);
  top: -100px; right: -80px;
  animation-delay: 0s;
}
.bp-orb--b {
  width: 300px; height: 300px;
  background: rgba(139,92,246,.1);
  bottom: -60px; left: -60px;
  animation-delay: -4s;
}
.bp-orb--c {
  width: 200px; height: 200px;
  background: rgba(16,185,129,.07);
  top: 40%; right: 10%;
  animation-delay: -8s;
}

/* ── Section spacing rhythm ─────────────────────────────────── */
.bp-section { padding: 80px 0; }
.bp-section--lg  { padding: 120px 0; }
.bp-section--xl  { padding: 160px 0; }
.bp-section--sm  { padding: 56px 0; }
.bp-section--alt {
  background: rgba(12,15,30,.7);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Stronger alt section differentiation */
.bp-section--alt .bp-how-card { background: var(--bg); }
.bp-section--alt .bp-firm-card { background: var(--bg); }

/* ── Section heading ────────────────────────────────────────── */
.bp-section-title {
  font-size: clamp(26px,3.5vw,40px); font-weight: 900;
  letter-spacing: -.025em; line-height: 1.15; margin-bottom: 10px;
}
.bp-section-sub { font-size: 17px; color: var(--muted2); line-height: 1.6; max-width: 540px; }
.bp-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 36px; flex-wrap: wrap;
}

/* ── Stagger animation system ───────────────────────────────── */
.bp-stagger > * {
  transition: opacity .5s ease, transform .5s ease;
}
.bp-js .bp-stagger > * { opacity: 0; transform: translateY(18px); }
.bp-js .bp-stagger > *.visible { opacity: 1; transform: translateY(0); }

/* ── Button shimmer on primary ──────────────────────────────── */
.bp-btn--primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0; transition: opacity .3s;
}
.bp-btn--primary:hover::after {
  opacity: 1;
  animation: shimmerSlide .6s ease;
}
.bp-btn--primary:active { transform: translateY(0) scale(.97); }

/* ── Button text CTA (tertiary) ─────────────────────────────── */
.bp-btn--link {
  background: none; border: none; padding: 0;
  color: var(--accent); font-weight: 700; font-size: 14px;
  text-decoration: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
}
.bp-btn--link:hover { text-decoration: underline; color: var(--text); }

/* ── Nav scroll effect ──────────────────────────────────────── */
.bp-nav.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,.4); }
.bp-nav__link { position: relative; }
.bp-nav__link.active::after,
.bp-nav__link:hover::after {
  content: '';
  position: absolute; bottom: 0; left: 18px; right: 18px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  animation: fadeIn .2s ease;
}
.bp-nav__link { border-bottom: none !important; }

/* ── Hero trust row ──────────────────────────────────────────── */
.bp-hero-trust {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap; margin-top: 40px; padding-top: 36px;
  border-top: 1px solid var(--border);
}
.bp-hero-trust__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--muted2);
}
.bp-hero-trust__item strong { color: var(--text); }
.bp-hero-trust__sep { color: var(--border2); font-size: 20px; user-select:none; }

/* ── Floating trust badge ───────────────────────────────────── */
.bp-float-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25);
  border-radius: 32px; padding: 8px 18px; font-size: 12px; font-weight: 700;
  color: var(--green); animation: floatY 3s ease-in-out infinite;
  white-space: nowrap;
}

/* ── Hero review stars strip ─────────────────────────────────── */
.bp-hero-stars {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 24px; color: var(--muted2); font-size: 13px; font-weight: 600;
}
.bp-hero-stars .stars { color: #FBBF24; font-size: 16px; letter-spacing: 1px; }

/* ── Stats counter row ──────────────────────────────────────── */
.bp-stat strong { font-size: 32px; }
.bp-stat span { font-size: 13px; }
.bp-stat [data-count] { display: inline; }

/* ── Featured band ──────────────────────────────────────────── */
.bp-featured-band {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.bp-featured-cats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 768px) { .bp-featured-cats { grid-template-columns: 1fr; } }
.bp-featured-cat {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; gap: 2px;
  transition: border-color var(--trans);
}
.bp-featured-cat:hover { border-color: rgba(99,102,241,.3); }
.bp-featured-cat__head {
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted2); margin-bottom: 12px;
}

/* ── Directory table hover ──────────────────────────────────── */
.bp-dir-row { transition: background var(--trans); cursor: pointer; }
.bp-dir-row:hover { background: rgba(99,102,241,.05) !important; }
.bp-dir-row:hover .bp-logo { transform: scale(1.08); }
.bp-logo { transition: transform var(--trans); }
.bp-logo.hovered { transform: scale(1.08); }

/* Row CTA fade-in */
.bp-row-cta { opacity: 0; transition: opacity .2s ease; pointer-events: none; }
.bp-row-cta.visible { opacity: 1; pointer-events: auto; }

/* ── Card hover states ───────────────────────────────────────── */
.bp-how-card {
  transition: all var(--trans); position: relative; overflow: hidden;
}
.bp-how-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.bp-how-card:hover::before { transform: scaleX(1); }
.bp-how-card:hover {
  border-color: rgba(99,102,241,.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(99,102,241,.15);
}

/* Quick-fact card hover */
.bp-quick-fact:hover .bp-quick-fact__icon { animation: floatY .6s ease; }

/* ── Discount code pill ──────────────────────────────────────── */
.bp-code-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,.1); border: 1.5px dashed rgba(99,102,241,.4);
  border-radius: var(--radius-sm); padding: 8px 16px;
  font-size: 14px; font-weight: 800; letter-spacing: .08em;
  cursor: pointer; transition: all var(--trans); color: var(--text);
  font-family: 'Courier New', monospace; position: relative; overflow: hidden;
}
.bp-code-pill:hover { background: rgba(99,102,241,.18); border-color: var(--accent); }
.bp-code-pill.copied {
  background: rgba(16,185,129,.15); border-color: var(--green); color: var(--green);
}
.bp-code-pill__icon { font-size: 12px; color: var(--muted); flex-shrink: 0; }

/* ── Trust badges strip ─────────────────────────────────────── */
.bp-trust-row {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap; padding: 32px 0;
}
.bp-trust-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  font-size: 12px; font-weight: 700; color: var(--muted2); white-space: nowrap;
  transition: all var(--trans);
}
.bp-trust-badge:hover { border-color: rgba(99,102,241,.3); color: var(--text); }
.bp-trust-badge__icon { font-size: 16px; }

/* ── View toggle improved ────────────────────────────────────── */
.bp-view-toggle {
  display: inline-flex; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 4px; gap: 4px;
}
.bp-view-btn {
  padding: 10px 24px; border-radius: 9px; border: none;
  background: transparent; color: var(--muted2); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all var(--trans);
}
.bp-view-btn.active {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 16px rgba(99,102,241,.35);
}
.bp-view-btn:hover:not(.active) { color: var(--text); background: var(--surface2); }

/* ── CTA section enhanced ────────────────────────────────────── */
.bp-cta-section {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(99,102,241,.14) 0%, transparent 70%);
  border-top: 1px solid rgba(99,102,241,.15);
  padding: 120px 0;
}
.bp-cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(99,102,241,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bp-cta-section > * { position: relative; z-index: 1; }

/* ── Footer newsletter ───────────────────────────────────────── */
.bp-footer-newsletter {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; margin-bottom: 48px;
}
.bp-footer-newsletter h4 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.bp-footer-newsletter p  { font-size: 13px; color: var(--muted2); margin-bottom: 16px; }
.bp-footer-newsletter form { display: flex; gap: 8px; }
.bp-footer-newsletter input {
  flex: 1; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 16px; color: var(--text);
  font-size: 14px; outline: none; transition: border-color var(--trans);
}
.bp-footer-newsletter input:focus { border-color: var(--accent); }
.bp-footer-newsletter input::placeholder { color: var(--muted); }

/* ── Comparison page storytelling improvements ─────────────── */
.bp-vs-hero {
  padding: 60px 0 48px;
  background: linear-gradient(135deg, rgba(99,102,241,.1) 0%, rgba(139,92,246,.06) 50%, transparent 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.bp-vs-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(99,102,241,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── Winner highlight card ───────────────────────────────────── */
.bp-winner-highlight {
  background: linear-gradient(135deg, rgba(16,185,129,.1), rgba(5,150,105,.06));
  border: 1px solid rgba(16,185,129,.25); border-radius: var(--radius);
  padding: 28px; display: flex; align-items: center; gap: 24px;
  margin-bottom: 40px; position: relative; overflow: hidden;
}
.bp-winner-highlight::before {
  content: '🏆 Our Pick'; position: absolute; top: 12px; right: 16px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: var(--green);
}
.bp-winner-highlight::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), #34D399);
}
.bp-winner-highlight__info { flex: 1; }
.bp-winner-highlight__name { font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.bp-winner-highlight__score {
  font-size: 40px; font-weight: 900; color: var(--green); line-height: 1;
}

/* ── Key differences block ───────────────────────────────────── */
.bp-key-diffs {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 36px;
}
.bp-key-diffs__title {
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin-bottom: 16px;
}
.bp-key-diff-row {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.bp-key-diff-row:last-child { border-bottom: none; }
.bp-key-diff-row .label { color: var(--muted2); text-align: center; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.bp-key-diff-row .val-a { font-weight: 700; text-align: right; }
.bp-key-diff-row .val-b { font-weight: 700; text-align: left; }
.bp-key-diff-row .val-a.winner, .bp-key-diff-row .val-b.winner { color: var(--green); }

/* ── FAQ improved (smooth height) ───────────────────────────── */
.bp-faq { display: flex; flex-direction: column; gap: 8px; }
.bp-faq__item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; transition: border-color var(--trans);
}
.bp-faq__item.open { border-color: rgba(99,102,241,.3); }
.bp-faq__q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 18px 22px; background: none; border: none;
  color: var(--text); font-size: 15px; font-weight: 700; text-align: left;
  cursor: pointer; gap: 12px; transition: background var(--trans);
}
.bp-faq__q:hover { background: rgba(255,255,255,.02); }
.bp-faq__icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--surface2); display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: var(--accent);
  transition: transform .3s ease, background .2s;
}
.bp-faq__item.open .bp-faq__icon {
  background: rgba(99,102,241,.15); transform: rotate(45deg);
}
.bp-faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .32s ease;
  border-top: 0;
}
.bp-faq__item.open .bp-faq__a { border-top: 1px solid var(--border); }
.bp-faq__a p {
  padding: 16px 22px; font-size: 14px; color: var(--text2); line-height: 1.75; margin: 0;
}

/* ── Discount strip improved ─────────────────────────────────── */
.bp-discount-strip {
  background: linear-gradient(135deg,rgba(16,185,129,.1),rgba(5,150,105,.06));
  border-top: 1px solid rgba(16,185,129,.2); border-bottom: 1px solid rgba(16,185,129,.2);
  padding: 16px 0;
}
.bp-discount-strip__inner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
}

/* ── How-we-rank improved cards ──────────────────────────────── */
.bp-how-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
@media (max-width: 900px) { .bp-how-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .bp-how-grid { grid-template-columns: 1fr; } }

.bp-how-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
}
.bp-how-card__num {
  font-size: 40px; font-weight: 900; color: rgba(99,102,241,.2);
  line-height: 1; margin-bottom: 16px; letter-spacing: -.04em;
}
.bp-how-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.bp-how-card p  { font-size: 14px; color: var(--muted2); line-height: 1.6; }

/* ── Pros block improved ────────────────────────────────────── */
.bp-pros-block li::before { content: '✓'; }
.bp-cons-block li::before { content: '✗'; }

/* ── Score badge ring ───────────────────────────────────────── */
.bp-score-ring {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px;
}
.bp-score-ring svg { position: absolute; top: 0; left: 0; transform: rotate(-90deg); }
.bp-score-ring__val { font-size: 22px; font-weight: 900; line-height: 1; }
.bp-score-ring__sub { font-size: 10px; color: var(--muted); }

/* ── Comparison score cards (hero) ──────────────────────────── */
.bp-vs-hero__firms {
  display: flex; align-items: center; justify-content: center; gap: 28px; margin-bottom: 40px;
}
.bp-vs-hero__firm {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px; flex: 1; max-width: 340px;
}
.bp-vs-hero__firm--b { flex-direction: row-reverse; }
.bp-vs-hero__name { font-size: 20px; font-weight: 900; margin-bottom: 4px; }
.bp-vs-hero__score { font-size: 36px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 4px; }
.bp-vs-hero__sep {
  font-size: 20px; font-weight: 900; color: var(--muted); flex-shrink: 0;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 50%; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
}

/* ── Section—alt improved ────────────────────────────────────── */
.bp-section--alt { background: rgba(11,14,27,.6); }

/* ── "How we review" process strip ──────────────────────────── */
.bp-process-strip {
  display: flex; gap: 0; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--border); margin: 36px 0;
}
.bp-process-step {
  flex: 1; padding: 20px 16px; text-align: center;
  background: var(--surface); border-right: 1px solid var(--border);
  position: relative; font-size: 13px;
}
.bp-process-step:last-child { border-right: none; }
.bp-process-step__num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(99,102,241,.15); border: 1px solid rgba(99,102,241,.3);
  color: var(--accent); font-size: 12px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 8px;
}
.bp-process-step strong { display: block; font-size: 13px; font-weight: 800; margin-bottom: 3px; color: var(--text); }
.bp-process-step span   { color: var(--muted2); font-size: 12px; }

/* ── Table sorting indicators ────────────────────────────────── */
[data-sort-col] { user-select: none; }
[data-sort-col]::after { content: ' ↕'; opacity: .4; font-size: 10px; }
[data-sort-col].sorted-asc::after  { content: ' ↑'; opacity: 1; color: var(--accent); }
[data-sort-col].sorted-desc::after { content: ' ↓'; opacity: 1; color: var(--accent); }

/* ── Methodology / SEO page shared layout ───────────────────── */
.bp-text-hero {
  padding: 72px 0 56px; border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(99,102,241,.08) 0%, transparent 60%);
}
.bp-text-hero h1 { font-size: clamp(28px,4vw,52px); font-weight: 900; letter-spacing: -.025em; margin-bottom: 14px; }
.bp-text-hero p  { font-size: 18px; color: var(--muted2); max-width: 580px; line-height: 1.7; }

/* ── Blog card reading time ──────────────────────────────────── */
.bp-blog-card__meta {
  display: flex; align-items: center; gap: 10px;
}
.bp-read-time { color: var(--muted); }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.bp-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted2); flex-wrap: wrap;
}
.bp-breadcrumb a { color: var(--muted2); text-decoration: none; }
.bp-breadcrumb a:hover { color: var(--accent); }
.bp-breadcrumb__sep { color: var(--border2); }
.bp-breadcrumb span:last-child { color: var(--text2); font-weight: 600; }

/* ── Footer improved ─────────────────────────────────────────── */
.bp-footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.bp-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px;
}
@media (max-width: 900px) {
  .bp-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .bp-footer__grid { grid-template-columns: 1fr; }
}
.bp-footer__logo {
  font-size: 22px; font-weight: 900; margin-bottom: 12px; color: var(--text);
}
.bp-footer__logo strong { color: var(--accent); }
.bp-footer__brand p { font-size: 14px; color: var(--muted2); line-height: 1.7; max-width: 300px; }
.bp-footer__col h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 16px; }
.bp-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bp-footer__col a  { font-size: 14px; color: var(--muted2); transition: color var(--trans); }
.bp-footer__col a:hover { color: var(--accent); }
.bp-footer__disclaimer {
  font-size: 12px; color: var(--muted); line-height: 1.7;
  padding: 24px 0; border-top: 1px solid var(--border);
}
.bp-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding: 20px 0;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted);
}
.bp-footer__bottom-links { display: flex; gap: 20px; }
.bp-footer__bottom-links a { color: var(--muted); }
.bp-footer__bottom-links a:hover { color: var(--accent); }

/* ── Social links ────────────────────────────────────────────── */
.bp-social-links { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.bp-social-link {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted2); font-size: 15px; transition: all var(--trans); text-decoration: none;
}
.bp-social-link:hover {
  border-color: var(--accent); color: var(--text);
  background: rgba(99,102,241,.1);
  transform: translateY(-2px);
}

/* ── Mobile global ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .bp-nav__links    { display: none; }
  .bp-nav__search   { display: none; }
  .bp-burger        { display: block; }
  .bp-hero { padding: 72px 0 60px; }
  .bp-hero__stats { flex-wrap: wrap; gap: 20px; max-width: 100%; }
  .bp-hero__stats .bp-stat { flex: 0 0 calc(50% - 10px); }
  .bp-hero-trust { gap: 14px; }
  .bp-cta-section { padding: 80px 0; }
  .bp-how-grid { grid-template-columns: 1fr 1fr; }
  .bp-vs-hero__firms { flex-direction: column; }
  .bp-vs-hero__firm { max-width: 100%; width: 100%; }
  .bp-vs-hero__firm--b { flex-direction: row; }
  .bp-vs-hero__sep { order: 1; }
  .bp-section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .bp-how-grid { grid-template-columns: 1fr; }
  .bp-codes-grid { grid-template-columns: 1fr; }
  .bp-featured-cats { grid-template-columns: 1fr; }
  .bp-firm-cards-grid { grid-template-columns: 1fr 1fr; }
  .bp-comp-cards { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   FORMS, CONTACT, NEWSLETTER — v2.5
   ════════════════════════════════════════════════════════════ */

/* ── Shared form inputs ─────────────────────────────────────── */
.bp-input {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  color: var(--text); font-size: 15px; font-family: inherit;
  outline: none; transition: border-color var(--trans), box-shadow var(--trans);
}
.bp-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.bp-input::placeholder { color: var(--muted); }
.bp-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.bp-label {
  display: block; font-size: 13px; font-weight: 700; color: var(--text2);
  margin-bottom: 7px; letter-spacing: .02em;
}
.bp-form-row { margin-bottom: 20px; }

/* ── Contact page grid ──────────────────────────────────────── */
.bp-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
@media (max-width: 860px) { .bp-contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.bp-contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px; margin-bottom: 14px;
  transition: border-color var(--trans);
}
.bp-contact-card:hover { border-color: rgba(99,102,241,.3); }
.bp-contact-card__icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.bp-contact-card__label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 4px; }
.bp-contact-card__email { font-size: 15px; font-weight: 700; color: var(--accent); display: block; margin-bottom: 4px; }
.bp-contact-card__email:hover { text-decoration: underline; }
.bp-contact-card__desc { font-size: 13px; color: var(--muted2); }

.bp-contact-faq { margin-top: 32px; }
.bp-contact-faq__title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 12px; }

.bp-contact-form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  position: sticky; top: 88px;
}

.bp-contact-info { display: flex; flex-direction: column; }

/* ── Newsletter block (shortcode) ───────────────────────────── */
.bp-newsletter-block {
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  border: 1px solid rgba(99,102,241,.2); border-radius: var(--radius);
  padding: 36px; display: flex; align-items: center; gap: 36px;
  position: relative; overflow: hidden;
}
.bp-newsletter-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.bp-newsletter-block__content { flex: 1; }
.bp-newsletter-block__icon { font-size: 32px; margin-bottom: 10px; }
.bp-newsletter-block__content h3 { font-size: 20px; font-weight: 900; margin-bottom: 6px; }
.bp-newsletter-block__content p  { font-size: 14px; color: var(--muted2); }
.bp-newsletter-block__form { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.bp-newsletter-block__row { display: flex; gap: 8px; }
.bp-newsletter-block__row .bp-btn { flex-shrink: 0; white-space: nowrap; }
.bp-newsletter-block__row input { flex: 1; }
.bp-nl-legal { font-size: 11px; color: var(--muted); }
@media (max-width: 768px) {
  .bp-newsletter-block { flex-direction: column; gap: 24px; }
  .bp-newsletter-block__row { flex-direction: column; }
}

/* ── Footer newsletter ──────────────────────────────────────── */
.bp-footer-newsletter {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 32px; margin-bottom: 48px;
  display: flex; align-items: center; gap: 32px;
}
.bp-footer-newsletter__text { flex: 1; }
.bp-footer-newsletter__text h4 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.bp-footer-newsletter__text p  { font-size: 13px; color: var(--muted2); }
.bp-footer-newsletter__form { display: flex; gap: 8px; flex: 1; }
.bp-footer-newsletter__form .bp-nl-email { flex: 1; }
@media (max-width: 768px) {
  .bp-footer-newsletter { flex-direction: column; align-items: stretch; gap: 16px; }
  .bp-footer-newsletter__form { flex-direction: column; }
}

/* ── Challenge Rules Grid ───────────────────────────────────────────────── */
.bp-rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.bp-rule-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  transition: border-color .2s, transform .15s;
}
.bp-rule-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.bp-rule-card__icon { font-size: 20px; margin-bottom: 8px; }
.bp-rule-card__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 6px; }
.bp-rule-card__val { font-size: 15px; font-weight: 800; color: var(--text); }
.bp-rule-yes { color: #10B981; }
.bp-rule-no  { color: #F87171; }
@media (max-width: 600px) {
  .bp-rules-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Frontend challenge type tabs */
.bp-front-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.bp-front-tab { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 8px 20px; font-size: 13px; font-weight: 700; color: var(--muted); cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.bp-front-tab.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.bp-front-tab:hover:not(.is-active) { border-color: var(--accent); color: var(--text); }
.bp-front-panel { display: none; }
.bp-front-panel.is-active { display: block; }

/* === FIRM PAGE v3 === */
.bp-firm-page__wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px 60px; }
.bp-breadcrumb { font-size: 13px; color: var(--muted); padding: 16px 0; display: flex; gap: 6px; align-items: center; }
.bp-breadcrumb a { color: var(--muted); text-decoration: none; }
.bp-breadcrumb a:hover { color: var(--accent); }
.bp-firm-hero { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 28px; margin-bottom: 2px; }
.bp-firm-hero__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.bp-firm-hero__identity { display: flex; gap: 20px; align-items: flex-start; }
.bp-firm-hero__logo img { width: 80px; height: 80px; object-fit: contain; border-radius: 12px; border: 1px solid var(--border); }
.bp-firm-hero__title { font-size: 28px; font-weight: 900; color: var(--text); margin: 0 0 4px; }
.bp-firm-hero__tagline { font-size: 15px; color: var(--muted); margin: 0 0 10px; }
.bp-firm-hero__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.bp-badge { font-size: 12px; font-weight: 700; background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 3px 10px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.bp-firm-hero__right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.bp-hero-score__num { font-size: 36px; font-weight: 900; }
.bp-hero-score__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.bp-score--high { color: #10B981; } .bp-score--mid { color: #F59E0B; } .bp-score--low { color: #F87171; }
.bp-tp-stars { color: #F59E0B; font-size: 18px; letter-spacing: 1px; }
.bp-hero-tp__val { font-size: 20px; font-weight: 900; color: var(--text); }
.bp-hero-tp__count { font-size: 12px; color: var(--muted); margin-left: 4px; }
.bp-hero-tp__label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.bp-firm-cta-bar { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.bp-cta-bar__disc-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); }
.bp-cta-bar__amount { font-size: 18px; font-weight: 900; color: var(--text); }
.bp-cta-bar__code { background: var(--bg); border: 1px dashed var(--accent); border-radius: 6px; padding: 4px 10px; font-size: 14px; font-weight: 800; color: var(--accent); letter-spacing: .05em; }
.bp-cta-bar__copy { background: none; border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; font-size: 12px; font-weight: 700; color: var(--muted); cursor: pointer; }
.bp-cta-bar__copy:hover { border-color: var(--accent); color: var(--accent); }
.bp-quick-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.bp-quick-strip__item { background: var(--surface); padding: 14px 16px; }
.bp-quick-strip__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 4px; }
.bp-quick-strip__val { font-size: 14px; font-weight: 800; color: var(--text); }
.bp-review-wrap { display: grid; grid-template-columns: 1fr; gap: 32px; }
.bp-review-article { color: var(--text); line-height: 1.75; font-size: 16px; }
.bp-review-article h2 { font-size: 22px; font-weight: 900; color: var(--text); margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.bp-review-article h3 { font-size: 18px; font-weight: 800; color: var(--text); margin: 28px 0 12px; }
.bp-review-article p { margin: 0 0 16px; }
.bp-review-article ul, .bp-review-article ol { margin: 0 0 16px; padding-left: 24px; }
.bp-review-article li { margin-bottom: 6px; }
.bp-review-article strong { color: var(--text); font-weight: 700; }
.bp-review-article a { color: var(--accent); text-decoration: none; }
.bp-review-article a:hover { text-decoration: underline; }
.bp-review-article table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; overflow-x: auto; display: block; }
.bp-review-article th { background: var(--surface); color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 10px 14px; text-align: left; border-bottom: 2px solid var(--border); white-space: nowrap; }
.bp-review-article td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.bp-review-article tr:last-child td { border-bottom: none; }
.bp-review-article blockquote { border-left: 3px solid var(--accent); margin: 20px 0; padding: 12px 20px; background: var(--surface); border-radius: 0 8px 8px 0; color: var(--muted); font-style: italic; }
.bp-review-article hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.bp-review-placeholder { background: var(--surface); border: 1px dashed var(--border); border-radius: 12px; padding: 40px; text-align: center; color: var(--muted); }
.bp-lp-nav { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.bp-lp-nav__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 12px; }
.bp-lp-nav__links { display: flex; gap: 8px; flex-wrap: wrap; }
.bp-lp-nav__link { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 7px 14px; font-size: 13px; font-weight: 700; color: var(--text); text-decoration: none; }
.bp-lp-nav__link:hover { border-color: var(--accent); color: var(--accent); }
.bp-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-top: 16px; }
.bp-related-card { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px; text-decoration: none; transition: border-color .2s, transform .15s; }
.bp-related-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.bp-related-card__info { flex: 1; }
.bp-related-card__info strong { display: block; color: var(--text); font-size: 14px; }
.bp-related-card__fee { font-size: 12px; color: var(--muted); }
.bp-related-card__arrow { color: var(--muted); font-size: 16px; }
.bp-lp-cta { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 24px; margin: 28px 0; text-align: center; }
.bp-discount-box { display: flex; align-items: center; gap: 20px; background: var(--surface); border: 2px solid var(--accent); border-radius: 12px; padding: 20px 24px; margin: 20px 0; flex-wrap: wrap; }
.bp-discount-box__label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--muted); display: block; }
.bp-discount-box__val { font-size: 28px; font-weight: 900; color: var(--accent); letter-spacing: .1em; display: block; }
.bp-alt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; margin: 20px 0; }
.bp-alt-card { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.bp-alt-card__info { flex: 1; }
.bp-alt-card__info a { color: var(--text); font-weight: 700; text-decoration: none; }
.bp-faq { margin: 32px 0; }
.bp-faq__item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.bp-faq__item h3 { font-size: 16px; font-weight: 800; margin: 0 0 8px; color: var(--text); }
.bp-faq__item p { font-size: 14px; color: var(--muted); margin: 0; }
@media (max-width: 768px) {
  .bp-firm-hero__inner { flex-direction: column; }
  .bp-quick-strip { grid-template-columns: repeat(2, 1fr); }
  .bp-related-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   FIRM PAGE v3.1 - Full integrated styles
   ============================================================= */

/* Breadcrumb */
.bp-breadcrumb {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 10px 0; font-size: 13px; color: var(--muted);
}
.bp-breadcrumb a { color: var(--muted2); transition: color var(--trans); }
.bp-breadcrumb a:hover { color: var(--accent); }
.bp-breadcrumb span { margin: 0 6px; }

/* -- Firm page wrapper */
.bp-firm-page__wrap { padding-bottom: 80px; }

/* -- Hero */
.bp-firm-hero {
  padding: 48px 0 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99,102,241,.15) 0%, transparent 65%);
}
.bp-firm-hero__inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; animation: fadeUp .5s ease both;
}
.bp-firm-hero__identity { display: flex; align-items: flex-start; gap: 20px; }
.bp-firm-hero__logo img { width: 72px; height: 72px; object-fit: contain; border-radius: 12px; background: var(--surface2); border: 1px solid var(--border); padding: 4px; }
.bp-firm-hero__title { font-size: clamp(24px,3.5vw,42px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 6px; }
.bp-firm-hero__tagline { color: var(--muted2); font-size: 16px; margin-bottom: 12px; }
.bp-firm-hero__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.bp-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--surface2); border: 1px solid var(--border2);
  border-radius: 20px; padding: 4px 12px; font-size: 12px; font-weight: 700; color: var(--muted2);
}
.bp-badge--green { background: rgba(16,185,129,.1); border-color: rgba(16,185,129,.3); color: var(--green); }
.bp-badge--red   { background: rgba(239,68,68,.1); border-color: rgba(239,68,68,.3); color: var(--red); }
.bp-firm-hero__right { display: flex; gap: 20px; align-items: flex-start; flex-shrink: 0; }

/* Score */
.bp-hero-score { text-align: center; }
.bp-hero-score__num {
  font-size: 48px; font-weight: 900; line-height: 1; letter-spacing: -.04em;
  border-radius: var(--radius); padding: 12px 20px; min-width: 100px; text-align: center;
}
.bp-score--high { color: var(--green); background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25); }
.bp-score--mid  { color: var(--amber); background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.25); }
.bp-score--low  { color: var(--red);   background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.25); }
.bp-hero-score__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-top: 6px; }

/* Trustpilot */
.bp-hero-tp { text-align: center; }
.bp-tp-stars { font-size: 20px; color: #00b67a; letter-spacing: 1px; }
.bp-hero-tp__val { font-size: 20px; font-weight: 900; display: block; }
.bp-hero-tp__count { font-size: 12px; color: var(--muted); display: block; }
.bp-hero-tp__label { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; display: block; margin-top: 2px; }

/* CTA bar */
.bp-firm-cta-bar {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 32px; padding: 20px 24px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); animation: fadeUp .6s .1s ease both;
}
.bp-cta-bar__discount { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text2); flex-wrap: wrap; }
.bp-cta-bar__disc-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--amber); }
.bp-cta-bar__amount { color: var(--green); font-size: 16px; }
.bp-cta-bar__code {
  font-family: monospace; font-size: 15px; font-weight: 700;
  background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.3);
  color: var(--accent); border-radius: 6px; padding: 4px 10px; letter-spacing: .06em;
}
.bp-cta-bar__copy {
  background: rgba(99,102,241,.08); border: 1px solid rgba(99,102,241,.25);
  color: var(--accent); border-radius: 6px; padding: 4px 10px; font-size: 12px;
  font-weight: 700; cursor: pointer; transition: all var(--trans);
}
.bp-cta-bar__copy:hover { background: rgba(99,102,241,.15); }

/* Quick facts strip */
.bp-quick-strip {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-top: 0; animation: fadeIn .4s .2s ease both;
}
.bp-quick-strip__inner {
  display: flex; overflow-x: auto; gap: 0;
  scrollbar-width: none; -ms-overflow-style: none;
}
.bp-quick-strip__inner::-webkit-scrollbar { display: none; }
.bp-quick-strip__item {
  flex: 1; min-width: 120px; padding: 18px 20px;
  border-right: 1px solid var(--border); text-align: center;
  transition: background var(--trans);
}
.bp-quick-strip__item:hover { background: var(--surface2); }
.bp-quick-strip__item:last-child { border-right: none; }
.bp-quick-strip__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 4px; }
.bp-quick-strip__val { font-size: 15px; font-weight: 800; color: var(--text); }

/* Challenge programs table */
.bp-challenge-section { margin: 48px 0 0; }
.bp-ch-table-wrap { overflow-x: auto; margin-top: 20px; border-radius: var(--radius); border: 1px solid var(--border); }
.bp-ch-detail-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bp-ch-detail-table thead { background: var(--surface2); }
.bp-ch-detail-table th {
  padding: 12px 14px; text-align: left; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
  white-space: nowrap; border-bottom: 1px solid var(--border);
}
.bp-ch-detail-table td { padding: 12px 14px; border-bottom: 1px solid rgba(26,31,53,.7); color: var(--text2); vertical-align: middle; }
.bp-ch-detail-table tbody tr:last-child td { border-bottom: none; }
.bp-ch-detail-table tbody tr:hover td { background: var(--surface2); }
.bp-ch-type strong { color: var(--text); font-weight: 700; }
.bp-ch-price { color: var(--text); font-weight: 800; }
.bp-ch-na { color: var(--muted); font-size: 12px; }

/* Review article */
.bp-review-wrap { margin-top: 48px; }
.bp-review-article {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 48px;
  margin-bottom: 32px; line-height: 1.8;
}
.bp-review-article h2 {
  font-size: 24px; font-weight: 800; margin: 40px 0 16px;
  padding-top: 40px; border-top: 1px solid var(--border);
  color: var(--text); letter-spacing: -.01em;
}
.bp-review-article h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.bp-review-article h3 { font-size: 18px; font-weight: 700; margin: 28px 0 12px; color: var(--text); }
.bp-review-article p { color: var(--text2); margin-bottom: 16px; }
.bp-review-article ul, .bp-review-article ol { color: var(--text2); padding-left: 24px; margin-bottom: 16px; }
.bp-review-article li { margin-bottom: 8px; }
.bp-review-article strong { color: var(--text); font-weight: 700; }
.bp-review-article a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.bp-review-article a:hover { color: var(--accent2); }
.bp-review-article table { width: 100%; border-collapse: collapse; margin: 20px 0; border-radius: var(--radius-sm); overflow: hidden; }
.bp-review-article table thead { background: var(--surface2); }
.bp-review-article table th { padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); border-bottom: 1px solid var(--border); }
.bp-review-article table td { padding: 11px 16px; border-bottom: 1px solid rgba(26,31,53,.5); color: var(--text2); font-size: 14px; }
.bp-review-article table tbody tr:hover td { background: rgba(99,102,241,.04); }
.bp-review-article table tbody tr:last-child td { border-bottom: none; }
.bp-review-article blockquote { border-left: 3px solid var(--accent); padding: 12px 20px; background: rgba(99,102,241,.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 20px 0; font-style: italic; color: var(--text2); }
.bp-review-article hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.bp-review-placeholder { padding: 40px; text-align: center; color: var(--muted); }

/* FAQ within review */
.bp-faq { margin-top: 32px; }
.bp-faq h2 { font-size: 24px !important; }
.bp-faq__item { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 24px; margin-bottom: 12px; transition: border-color var(--trans); }
.bp-faq__item:hover { border-color: var(--border2); }
.bp-faq__item h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.bp-faq__item p { color: var(--text2); font-size: 14px; margin: 0; }

/* Landing page nav */
.bp-lp-nav {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.bp-lp-nav__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); white-space: nowrap; }
.bp-lp-nav__links { display: flex; flex-wrap: wrap; gap: 8px; }
.bp-lp-nav__link {
  padding: 7px 14px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 700;
  background: var(--surface3); border: 1px solid var(--border);
  color: var(--muted2); text-decoration: none; transition: all var(--trans);
}
.bp-lp-nav__link:hover, .bp-lp-nav__link.active { border-color: var(--accent); color: var(--accent); background: rgba(99,102,241,.08); }

/* Final CTA */
.bp-firm-final-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: linear-gradient(135deg, rgba(99,102,241,.12) 0%, rgba(139,92,246,.08) 100%);
  border: 1px solid rgba(99,102,241,.25); border-radius: var(--radius);
  padding: 32px 40px; margin-bottom: 48px;
}
.bp-firm-final-cta__content h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.bp-firm-final-cta__content p { color: var(--muted2); margin: 0; }

/* Related grid */
.bp-related { margin-top: 48px; }
.bp-related .bp-section-title { margin-bottom: 20px; }
.bp-related-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.bp-related-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 18px; text-decoration: none;
  transition: all var(--trans); color: var(--text);
}
.bp-related-card:hover { border-color: var(--accent); background: var(--surface2); transform: translateY(-1px); }
.bp-related-card__info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.bp-related-card__info strong { font-size: 14px; font-weight: 700; }
.bp-related-card__fee { font-size: 12px; color: var(--muted); }
.bp-related-card__arrow { color: var(--muted); transition: transform var(--trans); }
.bp-related-card:hover .bp-related-card__arrow { transform: translateX(4px); color: var(--accent); }

/* Discount box */
.bp-discount-box {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: rgba(16,185,129,.06); border: 1px solid rgba(16,185,129,.25);
  border-radius: var(--radius); padding: 20px 24px; margin: 20px 0;
}
.bp-discount-box__code { display: flex; align-items: center; gap: 12px; }
.bp-discount-box__label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--muted); letter-spacing: .07em; }
.bp-discount-box__val { font-size: 24px; font-weight: 900; color: var(--text); font-family: monospace; letter-spacing: .08em; }
.bp-discount-box__save { font-size: 16px; font-weight: 700; color: var(--green); }

/* Alt grid */
.bp-alt-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 14px; margin: 20px 0; }
.bp-alt-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px; transition: all var(--trans);
}
.bp-alt-card:hover { border-color: var(--border2); background: var(--surface2); }
.bp-alt-card__logo img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.bp-alt-card__info { flex: 1; }
.bp-alt-card__info a { color: var(--text); font-weight: 700; text-decoration: none; }
.bp-alt-card__info a:hover { color: var(--accent); }

/* Sticky mobile CTA */
.bp-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 12px 20px; gap: 12px; align-items: center;
  box-shadow: 0 -8px 32px rgba(0,0,0,.4);
  transform: translateY(100%); transition: transform .3s ease;
}
.bp-sticky-cta.visible { transform: translateY(0); }
.bp-sticky-cta__code { font-size: 12px; color: var(--muted2); white-space: nowrap; }
.bp-sticky-cta__code strong { color: var(--accent); }

/* LCta within landing pages */
.bp-lp-cta {
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(139,92,246,.05));
  border: 1px solid rgba(99,102,241,.2); border-radius: var(--radius);
  padding: 28px 32px; margin: 32px 0; text-align: center;
}
.bp-lp-code { margin-bottom: 14px; color: var(--text2); }
.bp-lp-code code { background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.25); color: var(--accent); padding: 2px 8px; border-radius: 4px; font-size: 15px; }

/* Landing page template */
.bp-lp-page__wrap { padding-bottom: 80px; }
.bp-lp-content {
  display: grid; grid-template-columns: 1fr 300px; gap: 32px;
  align-items: start; margin-top: 40px;
}
.bp-lp-sidebar-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; position: sticky; top: 90px;
  text-align: center;
}
.bp-lp-sidebar-card h3 { font-size: 18px; font-weight: 800; margin: 12px 0 8px; }
.bp-lp-sidebar-card__logo { margin-bottom: 4px; }
.bp-lp-sidebar-card__logo img { margin: 0 auto; }
.bp-lp-sidebar-card__code { font-size: 13px; color: var(--muted2); display: flex; align-items: center; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 10px 0; }
.bp-lp-sidebar-card__code code { color: var(--accent); background: rgba(99,102,241,.1); padding: 2px 8px; border-radius: 4px; }

/* Challenges table on directory page */
.bp-challenges__table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); margin-top: 0; }
.bp-ch-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bp-ch-table thead { background: var(--surface2); position: sticky; top: 0; z-index: 1; }
.bp-ch-table th { padding: 12px 14px; text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); white-space: nowrap; border-bottom: 1px solid var(--border); }
.bp-ch-table td { padding: 12px 14px; border-bottom: 1px solid rgba(26,31,53,.5); color: var(--text2); vertical-align: middle; }
.bp-ch-table tbody tr:hover td { background: var(--surface2); cursor: pointer; }
.bp-ch-table tbody tr:last-child td { border-bottom: none; }
.bp-ch-firm__link { color: var(--text); font-weight: 700; text-decoration: none; display: flex; align-items: center; white-space: nowrap; }
.bp-ch-firm__link:hover { color: var(--accent); }
.bp-ch-price { color: var(--text); font-weight: 800; }
.bp-ch-row.hidden { display: none; }
.bp-ch-empty { display: none; padding: 40px; text-align: center; color: var(--muted); }

/* Responsive */
@media (max-width: 900px) {
  .bp-firm-hero__inner { flex-direction: column; }
  .bp-firm-hero__right { flex-direction: row; gap: 16px; }
  .bp-review-article { padding: 24px; }
  .bp-related-grid { grid-template-columns: 1fr; }
  .bp-firm-final-cta { flex-direction: column; text-align: center; }
  .bp-lp-content { grid-template-columns: 1fr; }
  .bp-lp-sidebar { display: none; }
  .bp-sticky-cta { display: flex; }
}
@media (max-width: 600px) {
  .bp-firm-hero { padding: 24px 0 0; }
  .bp-firm-cta-bar { flex-direction: column; align-items: stretch; }
  .bp-quick-strip__item { min-width: 100px; padding: 14px 12px; }
  .bp-challenge-section { margin-top: 32px; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE FIX — v3.1.2
   Addresses three root causes found via CSS audit:
   1. overflow-x:clip requires iOS 16+; use hidden on body as fallback
   2. .bp-quick-strip has display:grid from old CSS (line 1923) that
      is never overridden — breaks the v3 template which wraps items
      in .bp-wrap. Must explicitly reset to block.
   3. position:fixed + transform:translateY on sticky CTA triggers iOS
      Safari ≤15 bug where fixed becomes absolute — replaced with
      opacity/visibility toggle.
   ══════════════════════════════════════════════════════════════ */

/* 1. Overflow prevention — two layers for full iOS compatibility */
html { overflow-x: clip; }      /* iOS 16+ / modern browsers */
body { overflow-x: hidden; width: 100%; max-width: 100%; }

/* Every direct child of .bp-wrap must not exceed the viewport */
.bp-wrap > * { max-width: 100%; box-sizing: border-box; }

/* 2. Quick-strip CSS conflict fix
   Old definition (line ~1923): display:grid + overflow:hidden
   v3 template wraps items in .bp-wrap, so grid makes .bp-wrap one
   narrow track and overflow:hidden kills the inner scroll.
   Reset to block so the inner flex+scroll works correctly. */
.bp-quick-strip {
  display: block !important;
  overflow: visible !important;
}

/* 3. Firm logo: fixed 80×80 container, image fills with contain */
.bp-firm-hero__logo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bp-firm-hero__logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 6px;
}

/* 4. Review article containment */
.bp-review-article {
  overflow-x: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.bp-review-article table {
  display: block !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

/* 5. Flex children: min-width:0 prevents flex items from overflowing */
.bp-firm-hero__inner,
.bp-firm-hero__identity,
.bp-firm-cta-bar,
.bp-quick-strip__inner {
  min-width: 0;
}

/* 6. Mobile menu: !important ensures theme CSS cannot override open state */
.bp-mobile-menu.open { display: flex !important; }

/* 7. Sticky CTA — use opacity toggle instead of transform on fixed element.
   iOS Safari ≤15: position:fixed + transform = acts as position:absolute,
   placing the element below the document and creating phantom scroll area. */
@media (max-width: 900px) {
  .bp-sticky-cta {
    transform: none !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease !important;
  }
  .bp-sticky-cta.visible {
    opacity: 1;
    pointer-events: auto;
  }
}

/* 8. Small-screen padding */
@media (max-width: 480px) {
  .bp-review-article { padding: 20px 16px; }
  .bp-firm-hero__identity { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bp-firm-hero__right { flex-direction: row; flex-wrap: wrap; gap: 12px; }
}

/* ══════════════════════════════════════════════════════════════
   DESIGN PASS v3.2.0 — Premium polish, typography, interactions
   ══════════════════════════════════════════════════════════════ */

/* Display font for headings — loaded via Google Fonts in PHP */
:root {
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

/* Apply display font to ALL headings — one font system across the whole site */
h1, h2, h3, h4, h5, h6,
.bp-hero__title,
.bp-section-title,
.bp-page-hero h1,
.bp-text-hero h1,
.bp-firm-hero__title,
.bp-vs-hero__name,
.bp-cta-section h2 {
  font-family: var(--font-display);
}

/* ── Enhanced hero heading ───────────────────────────────────── */
.bp-hero__title {
  font-size: clamp(36px, 5.5vw, 68px);
  letter-spacing: -.03em;
  line-height: 1.08;
}

/* ── Nav: add a "Get Funded" CTA pill ───────────────────────── */
.bp-nav__right::after {
  content: 'Get Funded →';
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  margin-left: 12px;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  pointer-events: none; /* decorative only — real link in PHP nav */
}
@media (max-width: 1024px) { .bp-nav__right::after { display: none; } }

/* ── Card: premium shimmer border on hover ───────────────────── */
.bp-firm-card {
  background: linear-gradient(145deg, var(--surface), rgba(30,33,50,.9));
  position: relative;
}
.bp-firm-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(99,102,241,.0), rgba(99,102,241,.4), rgba(139,92,246,.2), rgba(99,102,241,.0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.bp-firm-card:hover::after { opacity: 1; }

/* ── Firm card score: larger, more prominent ─────────────────── */
.bp-firm-card__score-num {
  font-size: 32px;
  font-family: var(--font-display);
  letter-spacing: -.03em;
}

/* ── Featured category card: gradient top accent ────────────── */
.bp-featured-cat {
  position: relative;
  overflow: hidden;
}
.bp-featured-cat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.bp-featured-cat:hover::before { transform: scaleX(1); }

/* ── Featured row: stronger hover ───────────────────────────── */
.bp-featured-row {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.bp-featured-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .2s ease;
  border-radius: 2px 0 0 2px;
}
.bp-featured-row:hover::before { transform: scaleY(1); }
.bp-featured-row:hover { padding-left: 18px; }

/* ── Table rows: left accent stripe on hover ─────────────────── */
.bp-dir-table tbody tr:hover td:first-child {
  border-left: 3px solid var(--accent);
  padding-left: 13px;
}

/* ── Challenges filter bar: glass effect ─────────────────────── */
.bp-challenges__filters {
  background: rgba(var(--surface-rgb, 16,19,32), .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Score card: glowing ring ────────────────────────────────── */
.bp-score-card {
  position: relative;
  overflow: hidden;
}
.bp-score-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(99,102,241,.12), transparent);
  pointer-events: none;
}

/* ── Comparison hero: VS separator glow ─────────────────────── */
.bp-vs-hero__sep {
  box-shadow: 0 0 24px rgba(99,102,241,.3);
  border-color: rgba(99,102,241,.4);
  color: var(--accent);
  font-family: var(--font-display);
}

/* ── Buttons: stronger shadow, improved letter-spacing ──────── */
.bp-btn--primary {
  letter-spacing: .01em;
  box-shadow: 0 4px 20px rgba(99,102,241,.35), 0 1px 3px rgba(0,0,0,.3);
}
.bp-btn--primary:hover {
  box-shadow: 0 8px 32px rgba(99,102,241,.5), 0 2px 8px rgba(0,0,0,.4);
  transform: translateY(-2px);
}

.bp-btn--green {
  box-shadow: 0 4px 16px rgba(16,185,129,.25);
}
.bp-btn--green:hover {
  box-shadow: 0 8px 28px rgba(16,185,129,.4);
  transform: translateY(-1px);
}

/* ── Section headings: tighter tracking ─────────────────────── */
.bp-section-title {
  letter-spacing: -.03em;
}

/* ── Footer newsletter: accent border highlight ──────────────── */
.bp-footer-newsletter {
  border-color: rgba(99,102,241,.2);
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  position: relative;
  overflow: hidden;
}
.bp-footer-newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

/* ── Blog cards: image zoom on hover ─────────────────────────── */
.bp-blog-card__img img {
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.bp-blog-card:hover .bp-blog-card__img img {
  transform: scale(1.06);
}

/* ── Hero stats: better visual weight ────────────────────────── */
.bp-stat {
  position: relative;
}
.bp-stat strong {
  display: block;
  font-family: var(--font-display);
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Firm page: Quick strip items animate in ─────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bp-quick-strip__inner .bp-quick-strip__item {
  animation: fadeUp .4s ease both;
}
.bp-quick-strip__inner .bp-quick-strip__item:nth-child(1) { animation-delay: .05s; }
.bp-quick-strip__inner .bp-quick-strip__item:nth-child(2) { animation-delay: .1s; }
.bp-quick-strip__inner .bp-quick-strip__item:nth-child(3) { animation-delay: .15s; }
.bp-quick-strip__inner .bp-quick-strip__item:nth-child(4) { animation-delay: .2s; }
.bp-quick-strip__inner .bp-quick-strip__item:nth-child(5) { animation-delay: .25s; }
.bp-quick-strip__inner .bp-quick-strip__item:nth-child(6) { animation-delay: .3s; }

/* ── FAQ items: refined open state ──────────────────────────── */
.bp-faq__item.open {
  border-color: rgba(99,102,241,.35);
  box-shadow: 0 2px 16px rgba(99,102,241,.08);
}

/* ── Direction table: number column ─────────────────────────── */
.bp-dir-table td:first-child {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  font-size: 13px;
}

/* ── Discount code pill: dashed → solid on hover ─────────────── */
.bp-code-pill {
  border-style: dashed;
  transition: all .2s ease;
}
.bp-code-pill:hover {
  border-style: solid;
  border-color: var(--accent);
  letter-spacing: .1em;
}

/* ── Comparison table winner cells ───────────────────────────── */
.bp-comp-winner { font-weight: 900; position: relative; }

/* ── Score chip in alternatives ──────────────────────────────── */
.bp-score-chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
}
.bp-score-chip--high { background: rgba(16,185,129,.12); color: var(--green); border: 1px solid rgba(16,185,129,.25); }
.bp-score-chip--mid  { background: rgba(245,158,11,.12); color: var(--amber); border: 1px solid rgba(245,158,11,.25); }
.bp-score-chip--low  { background: rgba(239,68,68,.12);  color: var(--red);   border: 1px solid rgba(239,68,68,.25); }

/* ── Breadcrumb: subtle hover ─────────────────────────────────── */
.bp-breadcrumb a { transition: color var(--trans); }

/* ── Filter select: more premium ────────────────────────────── */
.bp-filter-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236b7280' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* ── Hero eyebrow: animated pulse dot ───────────────────────── */
.bp-hero__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── Reveal animation: smoother easing ──────────────────────── */
.bp-reveal {
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.bp-js .bp-reveal { opacity: 0; transform: translateY(20px); }
.bp-js .bp-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Green metric value: gradient ───────────────────────────── */
.bp-metric__value--green {
  background: linear-gradient(135deg, #10B981, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Page transitions (subtle) ───────────────────────────────── */
.bp-wrap { animation: fadeUp .35s ease; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
