/* ==========================================================================
   BrainerBot — Product Page Shell
   Shared styles for /products/*.html — warm-orange, Fraunces + DM Sans.
   Every product page links this in addition to theme.css + nav.css.
   ========================================================================== */

/* ------- Trust strip ------------------------------------------------------- */
.bb-ppage-trust {
    background: linear-gradient(90deg, var(--bb-primary), var(--bb-primary-hover));
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.bb-ppage-trust span { display: inline-flex; align-items: center; gap: 4px; }
@media (max-width: 640px) { .bb-ppage-trust { font-size: 11px; gap: 6px; padding: 6px 12px; } }

/* ------- Page container ---------------------------------------------------- */
.bb-ppage-wrap { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .bb-ppage-wrap { padding: 0 24px; } }

/* ------- Hero (split: copy left, image right) ------------------------------ */
.bb-ppage-hero {
    padding: 32px 0 24px;
    background: linear-gradient(180deg, var(--bb-primary-soft) 0%, transparent 100%);
}
@media (min-width: 768px) { .bb-ppage-hero { padding: 56px 0 40px; } }

.bb-ppage-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .bb-ppage-hero-inner { grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; }
}

.bb-ppage-hero-copy { max-width: 520px; margin: 0 auto; }
@media (min-width: 768px) { .bb-ppage-hero-copy { margin: 0; } }

.bb-ppage-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bb-primary-soft);
    color: var(--bb-primary);
    border: 1px solid var(--bb-primary-soft-2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}
.bb-ppage-h1 {
    font-family: var(--bb-font-display);
    font-weight: 500;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: var(--bb-text);
}
.bb-ppage-h1 em { font-style: italic; color: var(--bb-primary); }
.bb-ppage-lede {
    font-size: 15px;
    line-height: 1.65;
    color: var(--bb-text-muted);
    margin: 0 0 22px;
}

.bb-ppage-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; justify-content: center; }
@media (min-width: 768px) { .bb-ppage-cta { justify-content: flex-start; } }

.bb-ppage-pay-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 18px;
}
@media (min-width: 768px) { .bb-ppage-pay-row { justify-content: flex-start; } }
.bb-ppage-pay-row span { font-size: 13px; color: var(--bb-text-muted); }
.bb-ppage-pay-icons { display: flex; gap: 8px; }
.bb-ppage-pay-icons img { height: 24px; width: auto; }

.bb-ppage-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid var(--bb-border);
}
@media (min-width: 768px) { .bb-ppage-stats { justify-content: flex-start; } }
.bb-ppage-stat { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--bb-text-muted); }
.bb-ppage-stat strong { color: var(--bb-text); font-weight: 700; }

.bb-ppage-hero-img {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--bb-radius-lg);
    box-shadow: var(--bb-shadow-lg);
}
@media (max-width: 767.98px) {
    .bb-ppage-hero { padding-top: 16px; }
    .bb-ppage-hero-inner { gap: 20px; }
    .bb-ppage-hero-copy { order: 2; }
    .bb-ppage-hero-img {
        order: 1;
        max-width: min(420px, 88vw);
        aspect-ratio: auto;
        height: auto;
        object-fit: contain;
        background: var(--bb-primary-soft);
    }
}

/* ------- Section header ---------------------------------------------------- */
.bb-ppage-section { padding: 40px 0; }
@media (min-width: 768px) { .bb-ppage-section { padding: 56px 0; } }
.bb-ppage-section-alt { background: var(--bb-primary-soft); }

.bb-ppage-section-head { text-align: center; margin-bottom: 28px; }
.bb-ppage-section-head h2 {
    font-family: var(--bb-font-display);
    font-weight: 500;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    letter-spacing: -0.02em;
    margin: 0 0 6px;
    color: var(--bb-text);
}
.bb-ppage-section-head p {
    font-size: 14px;
    color: var(--bb-text-muted);
    margin: 0;
}

/* Subsection header — splits a section into labeled groups (e.g. Shared / Personal) */
.bb-ppage-subhead {
    max-width: 900px;
    margin: 0 auto 16px;
    padding: 12px 0 12px 14px;
    border-left: 3px solid var(--bb-primary);
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
.bb-ppage-subhead + .bb-ppage-pricing { margin-bottom: 28px; }
.bb-ppage-subhead h3 {
    font-family: var(--bb-font-display);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--bb-text);
}
.bb-ppage-subhead p {
    font-size: 13px;
    color: var(--bb-text-muted);
    margin: 0;
}
.bb-ppage-subhead .bb-ppage-subhead-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: var(--bb-primary-soft);
    color: var(--bb-primary);
    border: 1px solid var(--bb-primary-soft-2);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Comparison table — side-by-side feature comparison (e.g. Shared vs Personal) */
.bb-compare-wrap { max-width: 880px; margin: 0 auto; }
.bb-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bb-surface);
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
    overflow: hidden;
    font-size: 14px;
    box-shadow: var(--bb-shadow-sm);
}
.bb-compare-table thead th {
    font-family: var(--bb-font-display);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: -0.01em;
    text-align: left;
    padding: 16px 18px;
    background: var(--bb-surface-2);
    border-bottom: 1px solid var(--bb-border);
    color: var(--bb-text);
    vertical-align: middle;
}
.bb-compare-table thead th.is-featured {
    background: var(--bb-primary-soft);
    color: var(--bb-primary);
    border-bottom-color: var(--bb-primary-soft-2);
    position: relative;
}
.bb-compare-table thead th .bb-compare-head-sub {
    display: block;
    font-family: var(--bb-font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--bb-text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 2px;
}
.bb-compare-table thead th.is-featured .bb-compare-head-sub { color: var(--bb-primary); opacity: .75; }
.bb-compare-table tbody th {
    text-align: left;
    font-weight: 600;
    color: var(--bb-text);
    padding: 13px 18px;
    vertical-align: top;
    border-bottom: 1px solid var(--bb-border);
    background: var(--bb-surface);
    width: 36%;
}
.bb-compare-table tbody td {
    padding: 13px 18px;
    vertical-align: top;
    color: var(--bb-text-muted);
    border-bottom: 1px solid var(--bb-border);
    border-left: 1px solid var(--bb-border);
    line-height: 1.55;
}
.bb-compare-table tbody td.is-featured {
    background: var(--bb-primary-soft);
    border-bottom-color: var(--bb-primary-soft-2);
    color: var(--bb-text);
}
.bb-compare-table tbody tr:last-child th,
.bb-compare-table tbody tr:last-child td { border-bottom: none; }
.bb-compare-cell { display: inline-flex; align-items: flex-start; gap: 8px; }
.bb-compare-ico { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; }
.bb-compare-ico--yes { color: var(--bb-ok); }
.bb-compare-ico--no { color: var(--bb-text-faint); }
.bb-compare-ico--featured { color: var(--bb-primary); }
@media (max-width: 640px) {
    .bb-compare-table { font-size: 12px; table-layout: fixed; }
    .bb-compare-table thead th { font-size: 13px; padding: 10px 8px; }
    .bb-compare-table thead th .bb-compare-head-sub { font-size: 9px; letter-spacing: .05em; }
    .bb-compare-table tbody th { padding: 10px 8px; font-size: 12px; width: 36%; }
    .bb-compare-table tbody td { padding: 10px 8px; line-height: 1.45; }
    .bb-compare-cell { gap: 5px; }
    .bb-compare-ico { width: 14px; height: 14px; margin-top: 2px; }
}
@media (max-width: 380px) {
    .bb-compare-table { font-size: 11px; }
    .bb-compare-table thead th { font-size: 12px; padding: 9px 6px; }
    .bb-compare-table tbody th,
    .bb-compare-table tbody td { padding: 9px 6px; }
}

/* Plan-family switcher — mobile-only segmented control for pages with 2+ plan families (e.g. Shared / Personal on Crunchyroll) */
.bb-plan-switcher {
    display: none;
    gap: 4px;
    padding: 4px;
    background: var(--bb-surface-2);
    border: 1px solid var(--bb-border);
    border-radius: 999px;
    max-width: 320px;
    margin: 0 auto 20px;
}
.bb-plan-tab {
    flex: 1;
    padding: 10px 18px;
    border: none;
    background: transparent;
    border-radius: 999px;
    font: inherit;
    font-weight: 600;
    font-size: 14px;
    color: var(--bb-text-muted);
    cursor: pointer;
    transition: background .15s ease, color .15s ease, box-shadow .15s ease;
    white-space: nowrap;
}
.bb-plan-tab.is-active {
    background: var(--bb-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(234, 88, 12, .22);
}
@media (max-width: 767.98px) {
    .bb-plan-switcher { display: flex; }
    .bb-plan-family { display: none; }
    .bb-plan-family.is-active { display: block; }
    .bb-plan-family .bb-ppage-subhead { margin-top: 0; }
}

/* ------- Pricing cards ----------------------------------------------------- */
.bb-ppage-pricing {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 560px) { .bb-ppage-pricing { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .bb-ppage-pricing.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .bb-ppage-pricing.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.bb-ppage-pricing.cols-1 { grid-template-columns: 1fr; max-width: 380px; }

.bb-price-card {
    background: var(--bb-surface);
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
    padding: 28px 24px;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
}
.bb-price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bb-shadow-lg);
    border-color: var(--bb-primary-soft-2);
}
.bb-price-card.featured {
    border-color: var(--bb-primary);
    box-shadow: 0 6px 32px rgba(234, 88, 12, .12);
}
.bb-price-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: var(--bb-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    white-space: nowrap;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.bb-price-duration {
    font-family: var(--bb-font-display);
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: -0.01em;
    margin: 0 0 2px;
    color: var(--bb-text);
}
.bb-price-type {
    font-size: 11px;
    color: var(--bb-primary);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    margin-bottom: 14px;
}
.bb-price-amount { display: flex; align-items: baseline; gap: 3px; margin-bottom: 2px; }
.bb-price-amount .bb-price-currency { font-size: 1rem; color: var(--bb-text-muted); font-weight: 600; }
.bb-price-amount .bb-price-num {
    font-family: var(--bb-font-display);
    font-weight: 500;
    font-size: 2.4rem;
    color: var(--bb-text);
    line-height: 1;
    letter-spacing: -0.02em;
}
.bb-price-permonth {
    font-size: 13px;
    color: var(--bb-ok);
    font-weight: 600;
    margin-bottom: 16px;
}
.bb-price-features { list-style: none; padding: 0; margin: 0 0 20px; }
.bb-price-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 5px 0;
    font-size: 13px;
    color: var(--bb-text-muted);
    line-height: 1.5;
}
.bb-price-features li svg { width: 15px; height: 15px; color: var(--bb-ok); flex-shrink: 0; margin-top: 3px; }

.bb-price-btn {
    display: block;
    width: 100%;
    padding: 13px;
    text-align: center;
    background: var(--bb-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    border: none;
    border-radius: var(--bb-radius);
    cursor: pointer;
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
    box-shadow: 0 4px 14px rgba(234, 88, 12, .18);
    margin-top: auto;
}
.bb-price-btn:hover { background: var(--bb-primary-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(234, 88, 12, .25); }

/* Stock out state */
.bb-price-card.oos { opacity: .6; }
.bb-price-card.oos .bb-price-btn { background: var(--bb-surface-2) !important; color: var(--bb-text-faint) !important; box-shadow: none !important; pointer-events: none; cursor: not-allowed; font-size: 0; }
.bb-price-card.oos .bb-price-btn::before { content: 'Stock out'; font-size: 14px; }
.bb-price-card .bb-oos-badge { display: none; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); padding: 4px 14px; background: var(--bb-danger); color: #fff; font-size: 11px; font-weight: 700; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; z-index: 2; }
.bb-price-card.oos .bb-oos-badge { display: block; }

/* Admin stock toggle bar (when ?admin=1) */
.bb-stock-toggles { display: none; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px 20px; padding: 10px 16px; background: #fffbeb; border-bottom: 1px solid #fde68a; }
.bb-stock-toggles.visible { display: flex; }
.bb-stock-toggle { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--bb-text); }
.bb-toggle-switch { position: relative; width: 44px; height: 24px; cursor: pointer; }
.bb-toggle-switch input { opacity: 0; width: 0; height: 0; }
.bb-toggle-slider { position: absolute; inset: 0; background: var(--bb-border-strong); border-radius: 24px; transition: background .2s ease; }
.bb-toggle-slider::before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: transform .2s ease; }
.bb-toggle-switch input:checked + .bb-toggle-slider { background: var(--bb-ok); }
.bb-toggle-switch input:checked + .bb-toggle-slider::before { transform: translateX(20px); }
.bb-stock-status { padding: 2px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.bb-stock-status.in { background: #ecfdf5; color: #065f46; }
.bb-stock-status.oos { background: #fff1f2; color: #9f1239; }

/* ------- Features grid ----------------------------------------------------- */
.bb-ppage-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) { .bb-ppage-features { grid-template-columns: repeat(4, 1fr); gap: 14px; } }

.bb-feature-card {
    background: var(--bb-surface);
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius);
    padding: 20px 16px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.bb-feature-card:hover { transform: translateY(-2px); box-shadow: var(--bb-shadow); border-color: var(--bb-primary-soft-2); }
.bb-feature-ico {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    border-radius: 10px;
    background: var(--bb-primary-soft);
    color: var(--bb-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bb-feature-card h3 {
    font-family: var(--bb-font-display);
    font-weight: 500;
    font-size: 15px;
    margin: 0 0 4px;
    color: var(--bb-text);
}
.bb-feature-card p { font-size: 12px; color: var(--bb-text-muted); margin: 0; line-height: 1.5; }

/* ------- FAQ --------------------------------------------------------------- */
.bb-ppage-faq-list { max-width: 720px; margin: 0 auto; }
.bb-ppage-faq-item {
    background: var(--bb-surface);
    border: 1px solid var(--bb-border);
    border-left: 3px solid var(--bb-primary-soft-2);
    border-radius: var(--bb-radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.bb-ppage-faq-item[open] { border-left-color: var(--bb-primary); box-shadow: var(--bb-shadow); }
.bb-ppage-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 15px;
    color: var(--bb-text);
    cursor: pointer;
    list-style: none;
}
.bb-ppage-faq-item summary::-webkit-details-marker { display: none; }
.bb-ppage-faq-item summary::marker { content: ''; }
.bb-ppage-faq-chev {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--bb-primary-soft);
    color: var(--bb-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease, background .2s ease, color .2s ease;
}
.bb-ppage-faq-item[open] .bb-ppage-faq-chev { transform: rotate(180deg); background: var(--bb-primary); color: #fff; }
.bb-ppage-faq-body {
    padding: 0 20px 18px;
    color: var(--bb-text-muted);
    font-size: 14px;
    line-height: 1.7;
}
.bb-ppage-faq-body p { margin: 0; }
.bb-ppage-faq-body p + p { margin-top: 8px; }
.bb-ppage-faq-body a { color: var(--bb-primary); font-weight: 600; border-bottom: 1px solid var(--bb-primary-soft-2); }
.bb-ppage-faq-body strong { color: var(--bb-text); }
.bb-ppage-faq-body ul { padding-left: 18px; margin: 6px 0 0; }
.bb-ppage-faq-body li { margin-bottom: 4px; }

/* ------- Footer (product page compact) ------------------------------------- */
.bb-ppage-footer {
    background: var(--bb-primary-soft);
    border-top: 1px solid var(--bb-primary-soft-2);
    padding: 28px 16px;
    text-align: center;
    color: var(--bb-text-muted);
    font-size: 13px;
}
.bb-ppage-footer a { color: var(--bb-primary); font-weight: 600; }
.bb-ppage-footer-links { margin-top: 8px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ------- WhatsApp floating button ------------------------------------------ */
.bb-wa-fab {
    position: fixed;
    right: 16px;
    bottom: calc(var(--bb-nav-bottom) + 16px + env(safe-area-inset-bottom, 0px));
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
    transition: transform .15s ease;
}
.bb-wa-fab:hover { transform: translateY(-2px); }
.bb-wa-fab svg { width: 18px; height: 18px; }
@media (min-width: 768px) { .bb-wa-fab { bottom: 20px; } }
@media (max-width: 520px) { .bb-wa-fab span { display: none; } .bb-wa-fab { padding: 12px; } }

/* ------- Admin modal ------------------------------------------------------- */
.bb-admin-overlay { display: none; position: fixed; inset: 0; background: rgba(28, 25, 23, .55); z-index: 200; align-items: center; justify-content: center; padding: 16px; }
.bb-admin-overlay.visible { display: flex; }
.bb-admin-modal { background: var(--bb-surface); border-radius: var(--bb-radius-lg); padding: 28px 24px; width: 320px; max-width: 100%; text-align: center; box-shadow: 0 20px 60px rgba(28, 25, 23, .25); }
.bb-admin-modal h3 { font-family: var(--bb-font-display); font-size: 18px; margin: 0 0 6px; }
.bb-admin-modal p { font-size: 13px; color: var(--bb-text-muted); margin: 0 0 16px; }
.bb-admin-modal input { width: 100%; padding: 10px 14px; border: 1px solid var(--bb-border); border-radius: var(--bb-radius); font: inherit; margin-bottom: 10px; }
.bb-admin-modal input:focus { outline: none; border-color: var(--bb-primary); box-shadow: 0 0 0 3px var(--bb-ring); }
.bb-admin-modal button.bb-admin-login { width: 100%; padding: 11px; background: var(--bb-primary); color: #fff; border: none; border-radius: var(--bb-radius); font-weight: 700; font-size: 14px; cursor: pointer; }
.bb-admin-modal .bb-admin-error { color: var(--bb-danger); font-size: 12px; margin-top: 8px; display: none; }
.bb-admin-modal .bb-admin-error.show { display: block; }

/* ------- Utility: section intro / notes ------------------------------------ */
.bb-ppage-note {
    max-width: 680px;
    margin: 24px auto 0;
    padding: 16px 20px;
    background: var(--bb-surface-tint);
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--bb-text-muted);
    line-height: 1.6;
}
.bb-ppage-note strong { color: var(--bb-text); }

/* ------- Steps grid (for "How it works" sections) -------------------------- */
.bb-steps-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 800px; margin: 0 auto; }
@media (min-width: 640px) { .bb-steps-grid { grid-template-columns: repeat(3, 1fr); } }
.bb-step {
    background: var(--bb-surface);
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius);
    padding: 22px 18px;
    text-align: center;
}
.bb-step-num {
    width: 36px; height: 36px;
    margin: 0 auto 12px;
    background: var(--bb-primary-soft);
    color: var(--bb-primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--bb-font-display);
    font-weight: 500;
    font-size: 16px;
}
.bb-step h3 { font-family: var(--bb-font-display); font-weight: 500; font-size: 15px; margin: 0 0 4px; color: var(--bb-text); }
.bb-step p { font-size: 13px; color: var(--bb-text-muted); margin: 0; line-height: 1.55; }

/* ------- Hero stats row (4 micro-stats under CTA) -------------------------- */
.bb-ppage-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid var(--bb-border);
    max-width: 520px;
}
.bb-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
}
.bb-hero-stat-ico {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 3px;
}
.bb-hero-stat strong {
    font-family: var(--bb-font-display);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--bb-text);
    white-space: nowrap;
}
.bb-hero-stat small {
    font-size: 10px;
    color: var(--bb-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
    white-space: nowrap;
}
@media (max-width: 767.98px) {
    .bb-ppage-hero-stats {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        gap: 8px;
    }
    .bb-hero-stat { align-items: center; text-align: center; }
    .bb-hero-stat strong { font-size: 14px; }
    .bb-hero-stat small { font-size: 9px; letter-spacing: .04em; }
}

/* ------- Reviews section --------------------------------------------------- */
.bb-reviews-head-row {
    max-width: 960px;
    margin: 0 auto 26px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.bb-reviews-head-row .bb-ppage-section-head {
    text-align: left;
    margin: 0;
}
.bb-reviews-fb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: #1877f2;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(24, 119, 242, .22);
    transition: background .15s ease, transform .1s ease, box-shadow .15s ease;
    white-space: nowrap;
}
.bb-reviews-fb-link:hover {
    background: #1465d0;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(24, 119, 242, .32);
}
.bb-reviews-fb-link svg { width: 14px; height: 14px; }

.bb-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
}
@media (min-width: 720px) {
    .bb-reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.bb-review {
    background: var(--bb-surface);
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius-lg);
    padding: 20px 18px;
    box-shadow: var(--bb-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.bb-review:hover {
    transform: translateY(-2px);
    box-shadow: var(--bb-shadow);
    border-color: var(--bb-primary-soft-2);
}
.bb-review-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1;
}
.bb-review-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--bb-text);
    margin: 0;
    flex: 1;
}
.bb-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bb-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bb-primary), var(--bb-secondary));
    color: #fff;
    font-family: var(--bb-font-display);
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(234, 88, 12, .18);
}
.bb-review-meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.bb-review-name { font-weight: 700; font-size: 13px; color: var(--bb-text); }
.bb-review-date { font-size: 11px; color: var(--bb-text-faint); }
