/* BestProp.io — Public styles
   Color palette:
   --bp-bg       #0B0D1A   page background
   --bp-surface  #131629   card / panel surface
   --bp-border   #1E2340   borders
   --bp-accent   #7C3AED   primary accent (purple)
   --bp-green    #10B981   positive / CTA
   --bp-amber    #F59E0B   warning / badge
   --bp-red      #EF4444   negative
   --bp-text     #E2E8F0   primary text
   --bp-muted    #94A3B8   secondary text
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bp-bg:      #0B0D1A;
    --bp-surface: #131629;
    --bp-surface2:#1A1E35;
    --bp-border:  #1E2340;
    --bp-accent:  #7C3AED;
    --bp-green:   #10B981;
    --bp-amber:   #F59E0B;
    --bp-red:     #EF4444;
    --bp-text:    #E2E8F0;
    --bp-muted:   #94A3B8;
    --bp-radius:  10px;
    --bp-shadow:  0 4px 24px rgba(0,0,0,0.4);
}

body.bestprop-body {
    background: var(--bp-bg);
    color: var(--bp-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ================================================================
   CONTAINERS
================================================================ */
.bp-container        { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bp-container--wide  { max-width: 1440px; margin: 0 auto; padding: 0 20px; }
.bp-container--article { max-width: 780px; margin: 0 auto; padding: 0 20px; }

/* ================================================================
   NAV
================================================================ */
.bp-nav {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(11,13,26,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--bp-border);
}
.bp-nav__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; gap: 32px; height: 64px;
}
.bp-nav__logo {
    display: flex; align-items: center; gap: 8px;
    font-size: 20px; font-weight: 700; color: var(--bp-text);
    text-decoration: none; flex-shrink: 0;
}
.bp-nav__logo-mark {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--bp-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 900; color: #fff;
}
.bp-nav__links { display: flex; list-style: none; gap: 4px; }
.bp-nav__link {
    display: block; padding: 6px 14px; border-radius: 6px;
    color: var(--bp-muted); text-decoration: none; font-size: 14px;
    transition: color .2s, background .2s;
}
.bp-nav__link:hover, .bp-nav__link.active {
    color: var(--bp-text); background: var(--bp-surface2);
}
.bp-nav__actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.bp-nav__search {
    background: var(--bp-surface2); border: 1px solid var(--bp-border);
    color: var(--bp-text); border-radius: 8px; padding: 7px 14px; font-size: 14px;
    width: 200px; outline: none;
}
.bp-nav__search:focus { border-color: var(--bp-accent); }
.bp-nav__burger { display: none; background: none; border: none; color: var(--bp-text); font-size: 22px; cursor: pointer; }
.bp-mobile-menu { display: none; flex-direction: column; background: var(--bp-surface); border-bottom: 1px solid var(--bp-border); padding: 16px 20px; gap: 4px; }
.bp-mobile-menu a { color: var(--bp-muted); text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--bp-border); font-size: 15px; }
.bp-mobile-menu.open { display: flex; }

/* ================================================================
   SECTIONS
================================================================ */
.bp-section       { padding: 60px 0; }
.bp-section--xs   { padding: 20px 0; }
.bp-section--metrics { background: var(--bp-surface); border-top: 1px solid var(--bp-border); border-bottom: 1px solid var(--bp-border); padding: 32px 0; }
.bp-section--cta  { background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(16,185,129,0.08) 100%); border-top: 1px solid var(--bp-border); }
.bp-main          { min-height: 70vh; }

/* ================================================================
   PAGE HERO
================================================================ */
.bp-page-hero {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, rgba(124,58,237,0.12) 0%, transparent 100%);
    border-bottom: 1px solid var(--bp-border);
}
.bp-page-hero h1 { font-size: clamp(28px,4vw,44px); font-weight: 800; margin-bottom: 12px; }
.bp-page-hero p  { color: var(--bp-muted); font-size: 18px; max-width: 600px; }

/* ================================================================
   BREADCRUMB
================================================================ */
.bp-breadcrumb { font-size: 13px; color: var(--bp-muted); margin-bottom: 20px; }
.bp-breadcrumb a { color: var(--bp-accent); text-decoration: none; }
.bp-breadcrumb a:hover { text-decoration: underline; }

/* ================================================================
   BUTTONS
================================================================ */
.bp-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 22px; border-radius: 8px; font-size: 14px; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer; transition: all .2s;
    white-space: nowrap;
}
.bp-btn--claim {
    background: var(--bp-green); color: #fff;
}
.bp-btn--claim:hover { background: #0da271; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(16,185,129,0.35); }
.bp-btn--details, .bp-btn--outline {
    background: transparent; color: var(--bp-muted); border: 1px solid var(--bp-border);
}
.bp-btn--details:hover, .bp-btn--outline:hover { border-color: var(--bp-accent); color: var(--bp-text); }
.bp-btn--full { width: 100%; }
.bp-btn--sm   { padding: 6px 14px; font-size: 13px; }

/* ================================================================
   CODE / COPY BUTTON
================================================================ */
.bp-code-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--bp-surface2); border: 1px dashed var(--bp-accent);
    color: var(--bp-accent); border-radius: 8px; padding: 8px 14px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
    cursor: pointer; font-family: monospace; transition: all .2s;
    white-space: nowrap;
}
.bp-code-btn:hover { background: rgba(124,58,237,0.15); }
.bp-code-btn.copied { background: rgba(16,185,129,0.15); border-color: var(--bp-green); color: var(--bp-green); }
.bp-code-btn--large { width: 100%; justify-content: center; font-size: 16px; padding: 12px 20px; }
.bp-code-icon { font-size: 12px; opacity: 0.7; }
.bp-muted { color: var(--bp-muted); }

/* ================================================================
   BADGES
================================================================ */
.bp-badge { display: inline-block; padding: 2px 8px; border-radius: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; }
.bp-badge--amber { background: rgba(245,158,11,0.15); color: var(--bp-amber); border: 1px solid rgba(245,158,11,0.3); }
.bp-badge--green { background: rgba(16,185,129,0.15); color: var(--bp-green); border: 1px solid rgba(16,185,129,0.3); }
.bp-tag { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; color: var(--bp-muted); background: var(--bp-surface2); border: 1px solid var(--bp-border); }
.bp-green { color: var(--bp-green); }
.bp-red   { color: var(--bp-red); }

/* ================================================================
   FIRM HERO
================================================================ */
.bp-firm-hero { padding: 50px 0 40px; border-bottom: 1px solid var(--bp-border); background: linear-gradient(180deg, rgba(124,58,237,0.1) 0%, transparent 100%); }
.bp-firm-hero__inner { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.bp-firm-hero__logo-wrap { display: flex; align-items: center; gap: 20px; margin: 16px 0; }
.bp-firm-hero__logo-wrap h1 { font-size: 36px; font-weight: 800; }
.bp-firm-hero__tagline { color: var(--bp-muted); font-size: 16px; margin-top: 4px; }
.bp-firm-hero__meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
.bp-firm-hero__meta span { color: var(--bp-muted); font-size: 14px; }
.bp-score-panel { background: var(--bp-surface); border: 1px solid var(--bp-border); border-radius: var(--bp-radius); padding: 24px; text-align: center; }
.bp-score-panel__num { font-size: 56px; font-weight: 900; color: var(--bp-green); line-height: 1; }
.bp-score-panel__stars { font-size: 20px; color: var(--bp-amber); margin: 8px 0; }
.bp-score-panel__label { color: var(--bp-muted); font-size: 13px; }
.bp-score-panel__trustpilot { margin-top: 12px; font-size: 13px; color: var(--bp-muted); }
.bp-coupon-panel { background: var(--bp-surface); border: 1px solid var(--bp-border); border-radius: var(--bp-radius); padding: 20px; margin-top: 16px; }
.bp-coupon-panel__label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bp-muted); margin-bottom: 10px; }
.bp-coupon-panel__amount { text-align: center; margin-top: 8px; font-size: 13px; color: var(--bp-green); }
.bp-affiliate-note { text-align: center; font-size: 11px; color: var(--bp-muted); margin-top: 8px; }

/* ================================================================
   METRICS STRIP
================================================================ */
.bp-metrics-strip { display: flex; gap: 0; flex-wrap: wrap; }
.bp-metrics-strip__item {
    flex: 1; min-width: 140px; text-align: center; padding: 20px 16px;
    border-right: 1px solid var(--bp-border);
}
.bp-metrics-strip__item:last-child { border-right: none; }
.bp-metrics-strip__val { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.bp-metrics-strip__label { font-size: 12px; color: var(--bp-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ================================================================
   PROS & CONS
================================================================ */
.bp-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bp-pros-cons__title { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--bp-border); }
.bp-pros-cons__title--pros { color: var(--bp-green); border-color: var(--bp-green); }
.bp-pros-cons__title--cons { color: var(--bp-red); border-color: var(--bp-red); }
.bp-pros-cons__list { list-style: none; }
.bp-pros-cons__item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--bp-border); font-size: 15px; }
.bp-pros-cons__item--pro .bp-pros-cons__icon { color: var(--bp-green); font-weight: 800; }
.bp-pros-cons__item--con .bp-pros-cons__icon { color: var(--bp-red); font-weight: 800; }

/* ================================================================
   TABLES
================================================================ */
.bp-table-wrap { overflow-x: auto; border-radius: var(--bp-radius); border: 1px solid var(--bp-border); }
.bp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bp-table thead { background: var(--bp-surface); border-bottom: 2px solid var(--bp-border); }
.bp-table th { padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bp-muted); white-space: nowrap; }
.bp-table td { padding: 13px 16px; border-bottom: 1px solid var(--bp-border); vertical-align: middle; }
.bp-table tbody tr:last-child td { border-bottom: none; }
.bp-table tbody tr:hover { background: rgba(124,58,237,0.04); }
.bp-table--rules td { font-size: 15px; }
.bp-th--firm { min-width: 160px; }
.bp-td--firm { white-space: nowrap; }
.bp-td--num  { font-variant-numeric: tabular-nums; font-weight: 600; }
.bp-td--split { color: var(--bp-green); font-weight: 700; }
.bp-td--price { font-variant-numeric: tabular-nums; }
.bp-td--actions { white-space: nowrap; }
.bp-td--actions .bp-btn { margin-right: 6px; }
.bp-price-orig { text-decoration: line-through; color: var(--bp-muted); font-size: 12px; margin-right: 4px; }
.bp-price-disc { color: var(--bp-green); font-size: 11px; font-weight: 700; margin-left: 4px; }
.bp-row-firm { display: flex; align-items: center; gap: 8px; }

/* ================================================================
   CHALLENGES FILTER BAR
================================================================ */
.bp-filters {
    display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bp-surface);
    border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius);
}
.bp-filters__left  { display: flex; gap: 12px; flex-wrap: wrap; flex: 1; }
.bp-filters__right { flex-shrink: 0; }
.bp-filter {
    background: var(--bp-surface2); border: 1px solid var(--bp-border);
    color: var(--bp-text); border-radius: 8px; padding: 8px 12px; font-size: 14px;
    cursor: pointer; outline: none; min-width: 140px;
}
.bp-filter:focus { border-color: var(--bp-accent); }
.bp-search-input {
    background: var(--bp-surface2); border: 1px solid var(--bp-border);
    color: var(--bp-text); border-radius: 8px; padding: 8px 14px; font-size: 14px;
    outline: none; width: 220px;
}
.bp-search-input:focus { border-color: var(--bp-accent); }
.bp-challenges__count { margin-top: 12px; font-size: 13px; color: var(--bp-muted); text-align: right; }
.bp-row--hidden { display: none; }

/* ================================================================
   FIRM CARDS
================================================================ */
.bp-firms-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(340px,1fr)); gap: 20px; }
.bp-firm-card {
    background: var(--bp-surface); border: 1px solid var(--bp-border);
    border-radius: var(--bp-radius); padding: 24px;
    transition: border-color .2s, transform .2s;
    position: relative;
}
.bp-firm-card:hover { border-color: var(--bp-accent); transform: translateY(-2px); }
.bp-firm-card__badge { position: absolute; top: 16px; right: 16px; }
.bp-firm-card__header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.bp-firm-card__title h3 { font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.bp-firm-card__title p { font-size: 13px; color: var(--bp-muted); }
.bp-firm-card__score { margin-left: auto; text-align: center; }
.bp-firm-card__stars { font-size: 14px; color: var(--bp-amber); }
.bp-score-num { font-size: 22px; font-weight: 900; color: var(--bp-green); }
.bp-firm-card__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.bp-metric { background: var(--bp-surface2); border-radius: 8px; padding: 10px 12px; }
.bp-metric__label { font-size: 11px; color: var(--bp-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.bp-metric__value { font-size: 14px; font-weight: 700; }
.bp-firm-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.bp-firm-card__actions { display: flex; gap: 8px; }
.bp-firm-card__actions .bp-btn { flex: 1; }

/* ================================================================
   COUPON CARDS
================================================================ */
.bp-coupons-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 20px; }
.bp-coupon-card { background: var(--bp-surface); border: 1px solid var(--bp-border); border-radius: var(--bp-radius); padding: 24px; }
.bp-coupon-card__header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.bp-coupon-card__header h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.bp-coupon-card__actions { display: flex; gap: 8px; margin-top: 14px; }
.bp-coupon-card__actions .bp-btn { flex: 1; }

/* ================================================================
   VERDICT BOX
================================================================ */
.bp-verdict-box {
    background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(16,185,129,0.06) 100%);
    border: 1px solid rgba(124,58,237,0.4);
    border-radius: var(--bp-radius); padding: 28px; margin: 32px 0;
}
.bp-verdict-box__label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bp-accent); margin-bottom: 12px; }
.bp-verdict-box__btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

/* ================================================================
   COMPARISON HERO
================================================================ */
.bp-comparison-hero { padding: 50px 0 40px; background: linear-gradient(180deg, rgba(124,58,237,0.08) 0%, transparent 100%); border-bottom: 1px solid var(--bp-border); }
.bp-comparison-hero h1 { font-size: 32px; font-weight: 800; margin-top: 28px; }
.bp-comparison-hero__firms { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.bp-comparison-hero__firm { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 200px; }
.bp-comparison-hero__firm--right { flex-direction: row-reverse; text-align: right; }
.bp-comparison-hero__score { display: flex; align-items: center; gap: 8px; margin: 4px 0 12px; font-size: 14px; }
.bp-comparison-hero__vs { font-size: 28px; font-weight: 900; color: var(--bp-border); flex-shrink: 0; }

/* ================================================================
   COMPARISON TABLE (in articles)
================================================================ */
.bp-comparison-table-wrap { overflow-x: auto; margin: 32px 0; }
.bp-comparison-table { width: 100%; border-collapse: collapse; border: 1px solid var(--bp-border); border-radius: var(--bp-radius); overflow: hidden; }
.bp-comparison-table th { background: var(--bp-surface); padding: 14px 16px; font-size: 13px; color: var(--bp-muted); text-align: left; }
.bp-comparison-table td { padding: 12px 16px; border-bottom: 1px solid var(--bp-border); font-size: 14px; }
.bp-comparison-table tr:last-child td { border-bottom: none; }
.bp-ct-category-row td { background: rgba(124,58,237,0.08); color: var(--bp-accent); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 8px 16px; }
.bp-ct-firm-header { display: flex; align-items: center; gap: 8px; }

/* ================================================================
   QUICK COMPARE (in comparison articles)
================================================================ */
.bp-quick-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bp-quick-compare__col { background: var(--bp-surface); border: 1px solid var(--bp-border); border-radius: var(--bp-radius); padding: 24px; }
.bp-quick-compare__col--a { border-color: rgba(124,58,237,0.4); }
.bp-quick-compare__col--b { border-color: rgba(16,185,129,0.3); }
.bp-quick-compare__header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-weight: 700; font-size: 16px; }
.bp-qm { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--bp-border); font-size: 14px; }
.bp-qm span { color: var(--bp-muted); }
.bp-qm strong { font-weight: 700; }
.bp-quick-compare__code { margin-top: 14px; }
.bp-link-strip { display: flex; gap: 12px; flex-wrap: wrap; }

/* ================================================================
   COMPARISONS ARCHIVE
================================================================ */
.bp-comp-group { margin-bottom: 32px; }
.bp-comp-group__letter { font-size: 28px; font-weight: 900; color: var(--bp-accent); margin-bottom: 12px; }
.bp-comp-group__list { display: flex; flex-direction: column; gap: 4px; }
.bp-comp-link {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    background: var(--bp-surface); border: 1px solid var(--bp-border);
    border-radius: 8px; text-decoration: none; color: var(--bp-text); font-size: 14px;
    transition: border-color .2s;
}
.bp-comp-link:hover { border-color: var(--bp-accent); }
.bp-comp-link__arrow { margin-left: auto; color: var(--bp-muted); }

/* ================================================================
   RELATED / RELATED GRID
================================================================ */
.bp-related-block { margin-top: 48px; }
.bp-related-block h3 { margin-bottom: 16px; font-size: 20px; }
.bp-related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 12px; }
.bp-related-card {
    display: flex; align-items: center; gap: 10px; padding: 14px 16px;
    background: var(--bp-surface); border: 1px solid var(--bp-border);
    border-radius: 8px; text-decoration: none; color: var(--bp-text); font-size: 14px;
    transition: border-color .2s;
}
.bp-related-card:hover { border-color: var(--bp-accent); }

/* ================================================================
   CTA PANEL
================================================================ */
.bp-cta-panel { display: flex; align-items: center; gap: 28px; background: var(--bp-surface); border: 1px solid var(--bp-border); border-radius: var(--bp-radius); padding: 36px; }
.bp-cta-panel h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.bp-cta-panel p { color: var(--bp-muted); margin-bottom: 16px; }

/* ================================================================
   CATEGORY CHIPS
================================================================ */
.bp-category-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.bp-chip { display: inline-block; padding: 7px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; text-decoration: none; border: 1px solid var(--bp-border); color: var(--bp-muted); transition: all .2s; }
.bp-chip:hover, .bp-chip.active { background: var(--bp-accent); color: #fff; border-color: var(--bp-accent); }

/* ================================================================
   ARTICLE BODY
================================================================ */
.bp-article-body { color: var(--bp-text); line-height: 1.75; }
.bp-article-body h2 { font-size: 26px; font-weight: 800; margin: 40px 0 16px; }
.bp-article-body h3 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
.bp-article-body p  { margin-bottom: 18px; }
.bp-article-body ul, .bp-article-body ol { margin: 16px 0 16px 24px; }
.bp-article-body li { margin-bottom: 8px; }
.bp-article-body a  { color: var(--bp-accent); }

/* ================================================================
   FOOTER
================================================================ */
.bp-footer { background: var(--bp-surface); border-top: 1px solid var(--bp-border); padding: 60px 0 32px; margin-top: 80px; }
.bp-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.bp-footer__logo { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.bp-footer__brand p { color: var(--bp-muted); font-size: 14px; line-height: 1.7; }
.bp-footer__col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bp-muted); margin-bottom: 14px; }
.bp-footer__col ul { list-style: none; }
.bp-footer__col li { margin-bottom: 10px; }
.bp-footer__col a { color: var(--bp-muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.bp-footer__col a:hover { color: var(--bp-text); }
.bp-footer__disclaimer { font-size: 13px; color: var(--bp-muted); border-top: 1px solid var(--bp-border); padding-top: 24px; margin-bottom: 20px; line-height: 1.7; }
.bp-footer__bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--bp-muted); flex-wrap: wrap; gap: 12px; }
.bp-footer__bottom a { color: var(--bp-muted); text-decoration: none; margin-left: 16px; }
.bp-footer__bottom a:hover { color: var(--bp-text); }

/* ================================================================
   HERO (homepage)
================================================================ */
.bp-hero {
    position: relative; overflow: hidden;
    padding: 100px 0 80px;
    background: linear-gradient(180deg, rgba(124,58,237,0.18) 0%, rgba(11,13,26,0) 100%);
    border-bottom: 1px solid var(--bp-border);
    text-align: center;
}
.bp-hero__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.bp-hero__badge {
    display: inline-block; margin-bottom: 20px;
    padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 700;
    background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.4); color: var(--bp-accent);
}
.bp-hero__title {
    font-size: clamp(36px,6vw,64px); font-weight: 900; line-height: 1.1;
    margin-bottom: 20px; letter-spacing: -1px;
}
.bp-hero__title--accent {
    background: linear-gradient(135deg, #7C3AED 0%, #10B981 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bp-hero__sub { font-size: 18px; color: var(--bp-muted); margin-bottom: 36px; line-height: 1.6; }
.bp-hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.bp-btn--lg { padding: 14px 32px; font-size: 16px; }
.bp-hero__stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.bp-hero__stat strong { display: block; font-size: 32px; font-weight: 900; color: var(--bp-text); }
.bp-hero__stat span { font-size: 13px; color: var(--bp-muted); }
.bp-hero__glow {
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* ================================================================
   SECTION HEADER
================================================================ */
.bp-section-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 32px; flex-wrap: wrap; }
.bp-section-head h2 { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.bp-section-sub { color: var(--bp-muted); font-size: 15px; }

/* ================================================================
   EMPTY STATE
================================================================ */
.bp-empty-state { text-align: center; padding: 80px 20px; }
.bp-empty-state__icon { font-size: 48px; margin-bottom: 16px; }
.bp-empty-state h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.bp-empty-state p { color: var(--bp-muted); }

/* ================================================================
   HOW WE RANK
================================================================ */
.bp-how-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 20px; }
.bp-how-card { background: var(--bp-surface); border: 1px solid var(--bp-border); border-radius: var(--bp-radius); padding: 28px; }
.bp-how-card__num { font-size: 36px; font-weight: 900; color: var(--bp-accent); opacity: 0.5; margin-bottom: 12px; }
.bp-how-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.bp-how-card p { font-size: 14px; color: var(--bp-muted); line-height: 1.6; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 900px) {
    .bp-nav__links, .bp-nav__actions { display: none; }
    .bp-nav__burger { display: block; margin-left: auto; }
    .bp-firm-hero__inner { grid-template-columns: 1fr; }
    .bp-pros-cons { grid-template-columns: 1fr; }
    .bp-quick-compare { grid-template-columns: 1fr; }
    .bp-footer__grid { grid-template-columns: 1fr 1fr; }
    .bp-comparison-hero__firms { flex-direction: column; }
    .bp-comparison-hero__firm--right { flex-direction: row; text-align: left; }
    .bp-cta-panel { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .bp-section { padding: 40px 0; }
    .bp-firms-grid { grid-template-columns: 1fr; }
    .bp-coupons-grid { grid-template-columns: 1fr; }
    .bp-filters { flex-direction: column; }
    .bp-search-input { width: 100%; }
    .bp-filter { width: 100%; }
    .bp-footer__grid { grid-template-columns: 1fr; }
    .bp-metrics-strip__item { flex: 0 0 50%; }
}
