/* ================================================================
   buildcrex — GLOBAL STYLESHEET
   Brand: #f5f5f5  ·  #ffd700  ·  #0a1f3d
   Covers: topbar, header, mobile nav, homepage sections
================================================================ */

/* ----------------------------------------------------------------
   DESIGN TOKENS
---------------------------------------------------------------- */
:root {
    /* Brand palette */
    --bc-gold:          #ffd700;
    --bc-gold-deep:     #c9a800;
    --bc-gold-grad:     linear-gradient(90deg, #ffd700 0%, #e6b800 100%);
    --bc-gold-light:    rgba(255,215,0,.10);
    --bc-gold-mid:      rgba(255,215,0,.20);
    --bc-gold-border:   rgba(255,215,0,.30);

    --bc-navy:          #0a1f3d;
    --bc-navy-2:        #112a52;

    --bc-light:         #f5f5f5;
    --bc-white:         #ffffff;
    --bc-body:          #2c3547;
    --bc-muted:         #64748b;
    --bc-muted-2:       #94a3b8;
    --bc-border:        #e2e8f0;
    --bc-border-2:      #f1f5f9;

    /* Radius */
    --r-sm:  6px;
    --r:     10px;
    --r-lg:  14px;
    --r-xl:  20px;

    /* Shadows */
    --sh-xs: 0 1px 4px  rgba(10,31,61,.05);
    --sh-sm: 0 2px 12px rgba(10,31,61,.07);
    --sh-md: 0 6px 24px rgba(10,31,61,.10);
    --sh-lg: 0 12px 48px rgba(10,31,61,.13);

    --bc-transition: all .22s ease;

    /* Header */
    --header-shadow: 0 4px 24px rgba(10,31,61,.07);
    --mobile-bottom-height: 76px;
}

/* ----------------------------------------------------------------
   PAGE BASE
---------------------------------------------------------------- */
.bc-page { color: var(--bc-body); }
.bc-page *, .bc-page *::before, .bc-page *::after { box-sizing: border-box; }
.bc-page a { text-decoration: none; }
.bc-page p { margin-bottom: 0; }
.bc-page img { max-width: 100%; display: block; }

/* ================================================================
   TOPBAR
================================================================ */
.fs-13 { font-size: 13px; }

.buildcrex-topbar {
    background: var(--bc-navy) !important;
    border-bottom: 2px solid var(--bc-gold-border);
}

.top-accent { color: var(--bc-gold) !important; }

/* ================================================================
   HEADER
================================================================ */
.buildcrex-header {
    background: var(--bc-white);
    border-bottom: 1px solid var(--bc-border);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: var(--header-shadow);
}

.buildcrex-header .navbar-brand { margin-right: 0; }
.buildcrex-header .navbar-brand img {
    max-height: 40px;
    width: auto;
    display: block;
}

/* Nav links */
.buildcrex-nav .nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--bc-navy);
    padding: .55rem .95rem;
    border-radius: var(--r-lg);
    transition: var(--bc-transition);
}
.buildcrex-nav .nav-link:hover,
.buildcrex-nav .nav-link.active {
    color: var(--bc-gold-deep) !important;
    background: var(--bc-gold-light);
}

/* Dropdowns */
.buildcrex-dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 18px 45px rgba(10,31,61,.13);
    border-radius: var(--r-xl);
    padding: .6rem;
    min-width: 230px;
    margin-top: .7rem;
    border-top: 3px solid var(--bc-gold);
}
.buildcrex-dropdown .dropdown-item {
    border-radius: var(--r);
    padding: .7rem .95rem;
    font-weight: 500;
    color: var(--bc-body);
    transition: var(--bc-transition);
}
.buildcrex-dropdown .dropdown-item:hover {
    background: var(--bc-gold-light);
    color: var(--bc-navy);
}

/* Icon buttons */
.header-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--r-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bc-gold-light);
    color: var(--bc-navy);
    position: relative;
    text-decoration: none;
    transition: var(--bc-transition);
    border: 1px solid var(--bc-gold-border);
}
.header-icon-btn:hover {
    background: var(--bc-gold);
    color: var(--bc-navy);
    transform: translateY(-1px);
}
.header-icon-badge {
    position: absolute;
    top: -4px; right: -4px;
    min-width: 18px; height: 18px;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    font-weight: 700;
    border: 2px solid var(--bc-white);
    line-height: 1;
}

/* Header CTA buttons */
.buildcrex-btn {
    background: var(--bc-gold-grad) !important;
    border: none !important;
    color: var(--bc-navy) !important;
    font-weight: 700;
    border-radius: 999px;
    padding: .65rem 1.2rem;
    transition: var(--bc-transition);
    box-shadow: 0 3px 14px rgba(255,215,0,.28);
}
.buildcrex-btn:hover {
    opacity: .9;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(255,215,0,.4);
}
.buildcrex-btn-outline {
    border: 2px solid var(--bc-gold) !important;
    color: var(--bc-navy) !important;
    background: var(--bc-white) !important;
    border-radius: 999px;
    font-weight: 600;
    padding: .55rem 1rem;
    transition: var(--bc-transition);
}
.buildcrex-btn-outline:hover {
    background: var(--bc-gold-light) !important;
}

/* User menu */
.user-menu .dropdown-menu {
    min-width: 260px;
    border-radius: var(--r-xl);
    border: 1px solid var(--bc-border);
    padding: .75rem;
    box-shadow: var(--sh-lg);
    border-top: 3px solid var(--bc-gold);
}
.user-menu .dropdown-item {
    border-radius: var(--r-lg);
    padding: .8rem 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--bc-body);
    transition: var(--bc-transition);
}
.user-menu .dropdown-item:hover { background: var(--bc-gold-light); color: var(--bc-navy); }

.user-avatar {
    width: 36px; height: 36px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--bc-gold-border);
    display: block;
}

/* ================================================================
   MOBILE HEADER
================================================================ */
.mobile-header-row { min-height: 64px; }

.mobile-logo-wrap {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}
.mobile-logo-wrap .navbar-brand { margin: 0; }

.mobile-header-actions {
    min-width: 94px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Hamburger */
.hamburger-btn {
    width: 42px; height: 42px;
    border: none;
    background: var(--bc-gold-light);
    border: 1px solid var(--bc-gold-border);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    cursor: pointer;
    transition: var(--bc-transition);
    flex-shrink: 0;
}
.hamburger-btn:hover { background: var(--bc-gold); }
.hamburger-btn span {
    display: block;
    width: 18px; height: 2px;
    background: var(--bc-navy);
    border-radius: 999px;
}

/* ================================================================
   OFFCANVAS / MOBILE MENU
================================================================ */
.mobile-offcanvas {
    width: 86vw;
    max-width: 360px;
    border: none;
    border-radius: 0 22px 22px 0;
}
.mobile-offcanvas .offcanvas-header {
    background: var(--bc-navy);
    color: var(--bc-white);
    padding: 1.15rem 1.25rem;
    border-radius: 0 22px 0 0;
    border-bottom: 3px solid var(--bc-gold-border);
}
.mobile-offcanvas .offcanvas-title img { max-height: 35px; }
.mobile-offcanvas .btn-close { filter: invert(1); opacity: .85; }

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--bc-border);
    background: var(--bc-white);
}
.mobile-user-info img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bc-gold-border);
}
.mobile-user-info .name { font-weight: 700; color: var(--bc-navy); font-size: 15px; }
.mobile-user-info .role { font-size: 13px; color: var(--bc-muted); }

/* Menu list */
.mobile-menu-list, .mobile-submenu { list-style: none; padding: 0; margin: 0; }
.mobile-menu-list > li { border-bottom: 1px solid var(--bc-border-2); }

.mobile-menu-link, .mobile-submenu a {
    width: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--bc-navy);
    font-weight: 600;
    font-size: 15px;
    padding: 1rem 1.25rem;
    transition: var(--bc-transition);
    background: transparent;
    border: 0;
}
.mobile-menu-link:hover, .mobile-menu-link.active,
.mobile-submenu a:hover, .mobile-submenu a.active {
    color: var(--bc-gold-deep);
    background: var(--bc-gold-light);
}
.mobile-menu-link i { margin-right: .8rem; width: 22px; text-align: center; font-size: 1.05rem; flex-shrink: 0; }
.mobile-menu-link .menu-end-badge { margin-left: auto; }

/* Submenu toggle */
.mobile-has-submenu > .mobile-menu-link {
    justify-content: flex-start;
    position: relative;
    padding-right: 3rem;
}
.mobile-has-submenu > .mobile-menu-link::after {
    content: '';
    position: absolute;
    right: 1.3rem;
    width: 8px; height: 8px;
    border-right: 2px solid var(--bc-muted);
    border-bottom: 2px solid var(--bc-muted);
    transform: rotate(45deg);
    transition: transform .25s ease, top .25s ease;
    top: 1.3rem;
}
.mobile-has-submenu.open > .mobile-menu-link::after { transform: rotate(-135deg); top: 1.55rem; }

.mobile-submenu { display: none; background: var(--bc-light); }
.mobile-submenu.show { display: block; }
.mobile-submenu a {
    padding: .85rem 1.25rem .85rem 3.2rem;
    font-size: 14px;
    font-weight: 500;
    color: var(--bc-muted);
}

/* Quick actions */
.mobile-quick-actions {
    padding: 1.2rem 1.25rem calc(1.2rem + env(safe-area-inset-bottom));
    background: var(--bc-gold-light);
    border-top: 1px solid var(--bc-gold-border);
}

.logout-mobile-btn {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 0;
    text-align: left;
}

/* ================================================================
   MOBILE BOTTOM NAV BAR
================================================================ */
.mobile-bottom-bar { display: none; }

@media (max-width: 991.98px) {
    body { padding-bottom: calc(var(--mobile-bottom-height) + env(safe-area-inset-bottom)); }
    .desktop-only { display: none !important; }

    .buildcrex-header .navbar-brand img { max-height: 34px; }

    .mobile-bottom-bar {
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 1040;
        height: calc(var(--mobile-bottom-height) + env(safe-area-inset-bottom));
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid var(--bc-border);
        box-shadow: 0 -8px 30px rgba(10,31,61,.08);
    }

    .mobile-nav-item {
        flex: 1 1 20%;
        min-width: 0;
        height: 58px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-decoration: none;
        color: var(--bc-muted);
        font-size: 11px;
        font-weight: 700;
        border-radius: var(--r-lg);
        position: relative;
        transition: var(--bc-transition);
    }
    .mobile-nav-item i { font-size: 20px; line-height: 1; }
    .mobile-nav-item:hover, .mobile-nav-item.active { color: var(--bc-navy); background: var(--bc-gold-light); }
    .mobile-nav-item.active i { color: var(--bc-gold-deep); }

    .mobile-nav-item-badge {
        position: absolute;
        top: 4px;
        right: calc(50% - 16px);
        min-width: 18px; height: 18px;
        border-radius: 999px;
        background: #dc3545;
        color: var(--bc-white);
        font-size: 10px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 5px;
        line-height: 1;
        border: 2px solid var(--bc-white);
    }
}

@media (min-width: 992px) {
    .mobile-only { display: none !important; }
}

@media (max-width: 420px) {
    .mobile-header-actions { min-width: 88px; }
    .header-icon-btn { width: 40px; height: 40px; border-radius: var(--r); }
    .mobile-nav-item { font-size: 10px; }
}

/* ================================================================
   HOMEPAGE — TYPOGRAPHY
================================================================ */
.bc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bc-gold-deep);
    margin-bottom: 12px;
}
.bc-eyebrow::before {
    content: '';
    display: inline-block;
    width: 18px; height: 2px;
    background: var(--bc-gold-grad);
    border-radius: 2px;
    flex-shrink: 0;
}
.bc-eyebrow--center { display: flex; justify-content: center; }
.bc-eyebrow--light  { color: rgba(255,215,0,.85); }
.bc-eyebrow--light::before { background: rgba(255,215,0,.5); }

.bc-h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.025em;
    color: var(--bc-navy);
    margin-bottom: 0;
}
.bc-h2 {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -.018em;
    color: var(--bc-navy);
    margin-bottom: 0;
}
.bc-lead   { font-size: .96rem; color: var(--bc-muted); line-height: 1.8; }
.bc-text-sm{ font-size: .84rem; color: var(--bc-muted); line-height: 1.7; }

.bc-divider-accent {
    display: block;
    width: 32px; height: 3px;
    background: var(--bc-gold-grad);
    border-radius: 3px;
    margin-top: 12px;
}
.bc-divider-accent--center { margin-left: auto; margin-right: auto; }

/* ================================================================
   HOMEPAGE — BUTTONS
================================================================ */
.bc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .875rem;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    transition: var(--bc-transition);
    white-space: nowrap;
    line-height: 1;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
}
.bc-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background .18s ease;
}
.bc-btn:hover::after { background: rgba(255,255,255,.08); }

.bc-btn-primary {
    background: var(--bc-gold-grad);
    color: var(--bc-navy);
    box-shadow: 0 3px 14px rgba(255,215,0,.32);
}
.bc-btn-primary:hover {
    color: var(--bc-navy);
    box-shadow: 0 6px 22px rgba(255,215,0,.44);
    transform: translateY(-1px);
}
.bc-btn-navy {
    background: var(--bc-navy);
    color: var(--bc-white);
    box-shadow: var(--sh-sm);
}
.bc-btn-navy:hover {
    background: var(--bc-navy-2);
    color: var(--bc-white);
    transform: translateY(-1px);
}
.bc-btn-outline {
    background: transparent;
    color: var(--bc-navy);
    border: 1.5px solid var(--bc-border);
}
.bc-btn-outline:hover {
    border-color: var(--bc-gold-border);
    background: var(--bc-gold-light);
    color: var(--bc-navy);
}
.bc-btn-ghost {
    background: transparent;
    color: var(--bc-body);
    border: 1.5px solid var(--bc-border);
}
.bc-btn-ghost:hover {
    border-color: #c0cada;
    background: var(--bc-light);
    color: var(--bc-navy);
}
.bc-btn-white {
    background: var(--bc-white);
    color: var(--bc-navy);
    font-weight: 800;
    box-shadow: var(--sh-sm);
}
.bc-btn-white:hover { background: rgba(255,255,255,.92); color: var(--bc-navy); }

.bc-btn-white-outline {
    background: transparent;
    color: rgba(255,255,255,.75);
    border: 1.5px solid rgba(255,255,255,.22);
}
.bc-btn-white-outline:hover {
    border-color: rgba(255,215,0,.5);
    color: var(--bc-gold);
    background: rgba(255,215,0,.07);
}
.bc-btn-sm { padding: 8px 16px; font-size: .8rem; }
.bc-btn-lg { padding: 13px 30px; font-size: .94rem; }

/* ================================================================
   HOMEPAGE — SECTION LAYOUT
================================================================ */
.bc-section        { padding: 72px 0; overflow-x: hidden; }
.bc-section--tight { padding: 52px 0; overflow-x: hidden; }
.bc-section--white { background: var(--bc-white); }
.bc-section--gray  { background: var(--bc-light); }
.bc-section--navy  { background: var(--bc-navy); }

.bc-section__header { margin-bottom: 44px; }
.bc-section__header--center { text-align: center; }
.bc-section__header--center .bc-lead { margin: 12px auto 0; max-width: 510px; }

/* ================================================================
   SKELETON LOADER
================================================================ */
@keyframes bc-shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position:  600px 0; }
}
.bc-skeleton {
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 1200px 100%;
    animation: bc-shimmer 1.4s ease-in-out infinite;
    border-radius: var(--r);
}
.bc-skeleton-img {
    width: 100%; height: 100%;
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    transition: opacity .4s ease;
}
.bc-skeleton-img.loaded { opacity: 0; pointer-events: none; }

.bc-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--bc-border-2);
}
.bc-img-wrap img {
    position: relative;
    z-index: 1;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .5s ease;
}
.bc-img-wrap img.bc-loaded { opacity: 1; }

/* ================================================================
   1. HERO
================================================================ */
.bc-hero {
    background: var(--bc-white);
    padding: 80px 0 72px;
    overflow: hidden;
    position: relative;
}
.bc-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 48%; height: 100%;
    background: var(--bc-light);
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
    pointer-events: none;
}
.bc-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--bc-gold-grad);
    z-index: 10;
}
.bc-hero .container { position: relative; z-index: 1; }
.bc-hero__content   { padding-right: 28px; }

.bc-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bc-navy);
    background: var(--bc-gold-light);
    border: 1px solid var(--bc-gold-border);
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 22px;
}
.bc-hero__kicker-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--bc-gold);
    flex-shrink: 0;
    animation: bc-pulse 2s ease infinite;
}
@keyframes bc-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,.5); }
    50%       { box-shadow: 0 0 0 5px rgba(255,215,0,0); }
}

.bc-hero__title {
    font-size: clamp(1.95rem, 4vw, 2.85rem);
    font-weight: 900;
    line-height: 1.13;
    letter-spacing: -.026em;
    color: var(--bc-navy);
    margin-bottom: 20px;
}
.bc-hero__title .bc-hl {
    color: var(--bc-gold-deep);
    position: relative;
    display: inline-block;
}
.bc-hero__title .bc-hl::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 4px;
    background: var(--bc-gold-grad);
    border-radius: 2px;
    opacity: .35;
}

.bc-hero__desc {
    font-size: 1rem;
    color: var(--bc-muted);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 460px;
}
.bc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 30px;
}
.bc-hero__divider { width: 1px; height: 22px; background: var(--bc-border); }

.bc-hero__quicknav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.bc-hero__quicknav-label {
    font-size: .75rem;
    color: var(--bc-muted-2);
    font-weight: 600;
    margin-right: 2px;
}
.bc-hero__quicknav a {
    font-size: .77rem;
    font-weight: 600;
    color: var(--bc-muted);
    background: var(--bc-white);
    border: 1px solid var(--bc-border);
    padding: 5px 12px;
    border-radius: 30px;
    transition: var(--bc-transition);
    box-shadow: var(--sh-xs);
}
.bc-hero__quicknav a:hover {
    color: var(--bc-navy);
    border-color: var(--bc-gold-border);
    background: var(--bc-gold-light);
}

.bc-hero__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--bc-border-2);
    margin-top: 20px;
}
.bc-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--bc-muted);
}
.bc-hero__trust-item svg { flex-shrink: 0; }

/* Hero visual */
.bc-hero__visual { position: relative; }
.bc-hero__img-frame {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--bc-border);
}
.bc-hero__img-frame .bc-skeleton-img { border-radius: var(--r-xl); }

/* Float cards */
.bc-hero__float {
    position: absolute;
    background: var(--bc-white);
    border: 1px solid var(--bc-border);
    border-radius: var(--r-lg);
    padding: 10px 14px;
    box-shadow: var(--sh-md);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}
.bc-hero__float--tl { top: -14px; left: -20px; }
.bc-hero__float--br { bottom: -14px; right: -16px; }
.bc-hero__float-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: var(--bc-gold-light);
    border: 1px solid var(--bc-gold-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0;
}
.bc-hero__float-text strong {
    display: block;
    font-size: .8rem;
    font-weight: 800;
    color: var(--bc-navy);
    line-height: 1.2;
    white-space: nowrap;
}
.bc-hero__float-text span {
    font-size: .7rem;
    color: var(--bc-muted-2);
    white-space: nowrap;
}

/* ================================================================
   2. STATS STRIP
================================================================ */
.bc-stats {
    background: var(--bc-navy);
    padding: 28px 0;
    position: relative;
}
.bc-stats::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--bc-gold-grad);
}
.bc-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.bc-stats__item {
    text-align: center;
    padding: 8px 16px;
    border-right: 1px solid rgba(255,255,255,.07);
}
.bc-stats__item:last-child { border-right: none; }
.bc-stats__item strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--bc-gold);
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: -.02em;
}
.bc-stats__item span {
    font-size: .73rem;
    color: rgba(255,255,255,.4);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ================================================================
   3. PLATFORM INTRO
================================================================ */
.bc-intro-card {
    background: var(--bc-white);
    border: 1px solid var(--bc-border);
    border-radius: var(--r-xl);
    padding: 30px;
    box-shadow: var(--sh-sm);
    border-top: 3px solid var(--bc-gold);
}
.bc-intro-card__label {
    font-size: .74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--bc-muted-2);
    margin-bottom: 18px;
}
.bc-intro-list { list-style: none; padding: 0; margin: 0; }
.bc-intro-list__item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid var(--bc-border-2);
}
.bc-intro-list__item:first-child { padding-top: 0; }
.bc-intro-list__item:last-child  { border-bottom: none; padding-bottom: 0; }
.bc-intro-list__icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: var(--bc-navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}
.bc-intro-list__body strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--bc-navy);
    margin-bottom: 3px;
}
.bc-intro-list__body span {
    font-size: .81rem;
    color: var(--bc-muted);
    line-height: 1.6;
}

/* ================================================================
   4. FEATURES
================================================================ */
.bc-feat-card {
    background: var(--bc-white);
    border: 1px solid var(--bc-border);
    border-radius: var(--r-lg);
    padding: 26px 24px;
    height: 100%;
    transition: var(--bc-transition);
    position: relative;
    overflow: hidden;
}
.bc-feat-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--bc-gold-grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .24s ease;
}
.bc-feat-card:hover {
    box-shadow: var(--sh-md);
    border-color: var(--bc-gold-border);
    transform: translateY(-3px);
}
.bc-feat-card:hover::before { transform: scaleX(1); }
.bc-feat-card__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--bc-navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.bc-feat-card h4 { font-size: .93rem; font-weight: 800; color: var(--bc-navy); margin-bottom: 9px; line-height: 1.3; }
.bc-feat-card p  { font-size: .83rem; color: var(--bc-muted); line-height: 1.7; margin: 0; }

/* ================================================================
   5. TWO PATHS
================================================================ */
.bc-path-card {
    background: var(--bc-white);
    border: 1px solid var(--bc-border);
    border-radius: var(--r-xl);
    padding: 36px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--bc-transition);
    box-shadow: var(--sh-xs);
}
.bc-path-card:hover { box-shadow: var(--sh-md); border-color: var(--bc-gold-border); }
.bc-path-card__stripe {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--bc-gold-grad);
}
.bc-path-card__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    padding-top: 4px;
}
.bc-path-card__icon {
    width: 52px; height: 52px;
    border-radius: 13px;
    background: var(--bc-navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.bc-path-card__head-text h3 { font-size: 1.07rem; font-weight: 800; color: var(--bc-navy); margin: 0 0 4px; }
.bc-path-card__head-text span { font-size: .79rem; color: var(--bc-muted-2); font-weight: 500; }
.bc-path-card > p {
    font-size: .87rem;
    color: var(--bc-muted);
    line-height: 1.75;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bc-border-2);
}
.bc-path-list { list-style: none; padding: 0; margin: 0 0 26px; }
.bc-path-list li {
    font-size: .85rem;
    color: var(--bc-body);
    padding: 9px 0;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    border-bottom: 1px dashed var(--bc-border);
}
.bc-path-list li:last-child { border-bottom: none; padding-bottom: 0; }
.bc-path-list__dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--bc-gold-light);
    border: 1px solid var(--bc-gold-border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.bc-path-list__dot::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--bc-gold-deep);
}
.bc-path-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ================================================================
   6. HOW IT WORKS
================================================================ */
.bc-how-step {
    text-align: center;
    padding: 30px 18px;
    background: var(--bc-white);
    border: 1px solid var(--bc-border);
    border-radius: var(--r-lg);
    height: 100%;
    position: relative;
    transition: var(--bc-transition);
}
.bc-how-step:hover {
    box-shadow: var(--sh-md);
    border-color: var(--bc-gold-border);
    transform: translateY(-3px);
}
.bc-how-step__num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bc-navy);
    color: var(--bc-gold);
    font-size: .83rem;
    font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    border: 2px solid var(--bc-gold-border);
}
.bc-how-step__icon { font-size: 28px; margin-bottom: 12px; display: block; }
.bc-how-step h4   { font-size: .93rem; font-weight: 800; color: var(--bc-navy); margin-bottom: 9px; }
.bc-how-step p    { font-size: .82rem; color: var(--bc-muted); line-height: 1.68; margin: 0; }
.bc-how-arrow {
    position: absolute;
    right: -13px; top: 38%;
    font-size: 18px;
    color: var(--bc-gold-deep);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

/* ================================================================
   7. TRUST
================================================================ */
.bc-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--bc-border-2);
}
.bc-trust-item:first-child { padding-top: 0; }
.bc-trust-item:last-child  { border-bottom: none; padding-bottom: 0; }
.bc-trust-item__icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--bc-navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 1px;
}
.bc-trust-item strong { display: block; font-size: .92rem; font-weight: 800; color: var(--bc-navy); margin-bottom: 5px; }
.bc-trust-item p { font-size: .83rem; color: var(--bc-muted); line-height: 1.65; margin: 0; }

.bc-trust-aside {
    background: var(--bc-navy);
    border-radius: var(--r-xl);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh-lg);
}
.bc-trust-aside::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--bc-gold-grad);
}
.bc-trust-aside__icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: rgba(255,215,0,.12);
    border: 1.5px solid var(--bc-gold-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}
.bc-trust-aside h3 { font-size: 1.1rem; font-weight: 800; color: var(--bc-white); margin-bottom: 12px; line-height: 1.4; }
.bc-trust-aside > p { font-size: .87rem; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 28px; max-width: 270px; }

/* ================================================================
   8. TESTIMONIALS
================================================================ */
.bc-testi-section {
    padding: 72px 0;
    background: var(--bc-white);
    border-top: 1px solid var(--bc-border);
}
.bc-testi-header { text-align: center; margin-bottom: 50px; }
.bc-testi-header .bc-divider-accent { margin: 10px auto 14px; }

.bc-testi-card {
    background: var(--bc-white);
    border: 1.5px solid var(--bc-border);
    border-radius: var(--r-xl);
    padding: 26px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sh-xs);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.bc-testi-card::before {
    content: '';
    position: absolute;
    inset-x: 0; top: 0;
    height: 3px;
    background: var(--bc-gold-grad);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .26s ease;
}
.bc-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--bc-gold-border);
}
.bc-testi-card:hover::before { transform: scaleX(1); }

.bc-testi-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.bc-testi-star {
    width: 13px; height: 13px;
    background: var(--bc-gold-grad);
    clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
    flex-shrink: 0;
}
.bc-testi-quote {
    font-size: 2.6rem;
    line-height: .7;
    color: var(--bc-gold);
    opacity: .5;
    font-family: Georgia, serif;
    margin-bottom: 10px;
    display: block;
}
.bc-testi-text {
    font-size: .87rem;
    color: var(--bc-body);
    line-height: 1.78;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
}
.bc-testi-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--bc-border-2);
    padding-top: 14px;
    margin-top: auto;
}
.bc-testi-av {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--bc-navy);
    display: flex; align-items: center; justify-content: center;
    font-size: .74rem;
    font-weight: 900;
    color: var(--bc-gold);
    flex-shrink: 0;
    letter-spacing: .03em;
}
.bc-testi-name { font-size: .85rem; font-weight: 700; color: var(--bc-navy); display: block; margin-bottom: 2px; }
.bc-testi-role { font-size: .72rem; color: var(--bc-muted-2); display: block; }
.bc-testi-badge {
    margin-left: auto;
    flex-shrink: 0;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 20px;
    background: var(--bc-gold-light);
    border: 1px solid var(--bc-gold-border);
    color: var(--bc-gold-deep);
    line-height: 1.5;
}
.bc-testi-badge--provider { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.22); color: #065f46; }
.bc-testi-badge--vendor   { background: rgba(10,31,61,.07); border-color: rgba(10,31,61,.18); color: var(--bc-navy); }

/* ================================================================
   9. BANNER
================================================================ */
.bc-banner {
    background: var(--bc-navy);
    border-radius: var(--r-xl);
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    border: 1px solid rgba(255,255,255,.05);
    box-shadow: var(--sh-lg);
    position: relative;
    overflow: hidden;
}
.bc-banner::before {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,.10) 0%, transparent 70%);
    pointer-events: none;
}
.bc-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--bc-gold-grad);
}
.bc-banner__body h3 { font-size: 1.22rem; font-weight: 800; color: var(--bc-white); margin-bottom: 8px; line-height: 1.3; }
.bc-banner__body p  { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 430px; margin: 0; }
.bc-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ================================================================
   10. FINAL CTA
================================================================ */
.bc-cta {
    background: var(--bc-navy);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
.bc-cta::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,.07) 0%, transparent 65%);
    pointer-events: none;
}
.bc-cta::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--bc-gold-grad);
}
.bc-cta__inner { text-align: center; position: relative; z-index: 1; }
.bc-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bc-gold);
    background: rgba(255,215,0,.1);
    border: 1px solid rgba(255,215,0,.22);
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.bc-cta-pill::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--bc-gold);
    flex-shrink: 0;
}
.bc-cta__inner h2 {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--bc-white);
    line-height: 1.22;
    letter-spacing: -.022em;
    margin-bottom: 14px;
}
.bc-cta__inner p {
    font-size: .97rem;
    color: rgba(255,255,255,.42);
    max-width: 470px;
    margin: 0 auto 36px;
    line-height: 1.75;
}
.bc-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   SCROLL REVEAL
================================================================ */
.bc-anim {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
    will-change: opacity, transform;
}
.bc-anim.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1199px) {
    .bc-hero::before { width: 46%; }
}
@media (max-width: 991px) {
    .bc-hero           { padding: 56px 0 48px; }
    .bc-hero::before   { display: none; }
    .bc-hero__content  { padding-right: 0; margin-bottom: 40px; }
    .bc-hero__float--tl{ top: -8px; left: -8px; }
    .bc-hero__float--br{ bottom: -8px; right: -8px; }

    .bc-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .bc-stats__item:nth-child(2) { border-right: none; }
    .bc-stats__item:nth-child(3),
    .bc-stats__item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); }
    .bc-stats__item:nth-child(4) { border-right: none; }

    .bc-section       { padding: 56px 0; }
    .bc-testi-section { padding: 56px 0; }
    .bc-banner        { padding: 28px 26px; }
    .bc-cta           { padding: 64px 0; }
}
@media (max-width: 767px) {
    .bc-hero__float--tl, .bc-hero__float--br { display: none; }
    .bc-hero__divider   { display: none; }
    .bc-hero__actions   { gap: 8px; }
    .bc-hero__actions .bc-btn { flex: 1; min-width: 130px; }
    .bc-hero__trust     { gap: 14px; }
    .bc-how-arrow       { display: none; }
    .bc-banner__actions { width: 100%; }
    .bc-path-card       { padding: 24px 18px; }
    .bc-trust-aside     { padding: 30px 22px; height: auto; }
    .bc-testi-section   { padding: 48px 0; }
    .bc-testi-header    { margin-bottom: 32px; }
    .bc-testi-card      { padding: 20px 18px; }
    .bc-section         { padding: 48px 0; }
    .bc-section__header { margin-bottom: 28px; }
}
@media (max-width: 575px) {
    .bc-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .bc-cta__actions { flex-direction: column; align-items: center; }
    .bc-cta__actions .bc-btn { width: 100%; max-width: 320px; justify-content: center; }
    .bc-banner { padding: 24px 20px; }
    .bc-hero__trust-item span { display: none; }
}

/* ================================================================
   MARKETPLACE — GLOBAL
   All --mcx-* → BC token equivalents
================================================================ */

/* Shared button variants used by marketplace */
.mp-btn-primary {
    background: var(--bc-gold-grad);
    color: var(--bc-navy);
    border-radius: var(--r);
    padding: 10px 16px;
    font-weight: 700;
    border: 0;
    font-size: .92rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--bc-transition);
    box-shadow: 0 3px 12px rgba(255,215,0,.25);
}
.mp-btn-primary:hover { color: var(--bc-navy); opacity: .9; transform: translateY(-1px); }

.mp-btn-ghost {
    border-radius: var(--r);
    padding: 10px 16px;
    font-weight: 700;
    font-size: .92rem;
    line-height: 1;
    border: 1.5px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--bc-transition);
}
.mp-btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

.mp-btn-soft {
    border-radius: var(--r);
    padding: 9px 13px;
    font-weight: 700;
    border: 1px solid var(--bc-gold-border);
    background: var(--bc-gold-light);
    color: var(--bc-gold-deep);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .88rem;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--bc-transition);
}
.mp-btn-soft:hover { background: var(--bc-gold-mid); color: var(--bc-gold-deep); }

/* Section header (marketplace style) */
.mp-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0 14px;
}
.mp-section-head h3 {
    margin: 0;
    font-weight: 800;
    color: var(--bc-navy);
    letter-spacing: -.15px;
    font-size: 1.25rem;
}
.mp-section-head .mp-sub {
    color: var(--bc-muted);
    font-size: .9rem;
    margin-top: 3px;
}

/* ================================================================
   MARKETPLACE HERO
================================================================ */
.mp-hero {
    border: 1px solid var(--bc-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--bc-navy);
    position: relative;
}
.mp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(70% 90% at 15% 10%, rgba(255,215,0,.20) 0%, rgba(255,215,0,0) 60%),
        radial-gradient(70% 90% at 85% 20%, rgba(201,164,0,.15) 0%, rgba(201,164,0,0) 55%),
        linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.65) 100%);
    pointer-events: none;
}
.mp-hero::after {
    content: "";
    position: absolute;
    right: -60px; bottom: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    filter: blur(6px);
    pointer-events: none;
}
.mp-hero-inner {
    position: relative;
    padding: 20px 18px;
}
@media (min-width: 992px) { .mp-hero-inner { padding: 32px 30px; } }

.mp-hero h1 {
    color: #fff;
    font-weight: 900;
    letter-spacing: -.3px;
    margin: 0 0 10px;
    font-size: 1.45rem;
    line-height: 1.12;
    max-width: 680px;
}
@media (min-width: 992px) { .mp-hero h1 { font-size: 2.05rem; } }

.mp-hero p {
    color: rgba(255,255,255,.82);
    margin: 0 0 14px;
    max-width: 720px;
    line-height: 1.65;
    font-size: .97rem;
}
.mp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

/* Stats row */
.mp-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 10px;
    margin-top: 16px;
}
.mp-stat {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r-lg);
    padding: 12px;
}
.mp-stat .mp-stat-k { color: rgba(255,255,255,.72); font-weight: 600; font-size: .8rem; }
.mp-stat .mp-stat-v {
    color: var(--bc-gold);
    font-weight: 900;
    font-size: 1.1rem;
    margin-top: 3px;
    line-height: 1.1;
}

/* Quick links grid */
.mp-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 10px;
    margin-top: 16px;
}
.mp-quick-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 12px;
    border-radius: var(--r-lg);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    text-decoration: none;
    color: #fff;
    transition: var(--bc-transition);
}
.mp-quick-card:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.13);
    color: #fff;
    border-color: var(--bc-gold-border);
}
.mp-quick-icon {
    width: 40px; height: 40px;
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,215,0,.15);
    color: var(--bc-gold);
    flex-shrink: 0;
    font-size: 1rem;
}
.mp-quick-card h6 { margin: 0; font-size: .88rem; font-weight: 700; line-height: 1.15; color: #fff; }
.mp-quick-card .mp-sub { margin-top: 2px; color: rgba(255,255,255,.65); font-size: .73rem; }

/* Search panel */
.mp-search {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--r-xl);
    padding: 14px;
    margin-top: 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.mp-search .form-control,
.mp-search .form-select {
    border-radius: var(--r);
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    color: #fff;
    min-height: 46px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.mp-search .form-control::placeholder { color: rgba(255,255,255,.55); }
.mp-search .form-control:focus,
.mp-search .form-select:focus {
    border-color: var(--bc-gold-border);
    box-shadow: 0 0 0 3px rgba(255,215,0,.15);
    background: rgba(255,255,255,.12);
    color: #fff;
    outline: none;
}
.mp-search .form-select option { color: var(--bc-navy); background: #fff; }
.mp-search label { color: rgba(255,255,255,.82); font-weight: 600; font-size: .8rem; }

/* Action icon button (wishlist/view) */
.mp-action-btn {
    width: 36px; height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(238,240,244,.95);
    transition: var(--bc-transition);
    cursor: pointer;
    color: var(--bc-navy);
    text-decoration: none;
    backdrop-filter: blur(6px);
}
.mp-action-btn:hover { background: #fff; transform: translateY(-1px); color: var(--bc-navy); }
.mp-action-btn.active { background: #fff; }
.mp-action-btn.active i { color: #ef4444; }

/* ================================================================
   CATEGORY CARDS (marketplace)
================================================================ */
.mp-cat-slider {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 14px;
}
.mp-cat-card {
    border: 1px solid var(--bc-border);
    border-radius: var(--r-xl);
    background: var(--bc-white);
    overflow: hidden;
    height: 100%;
    transition: var(--bc-transition);
    text-decoration: none;
}
.mp-cat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
    border-color: var(--bc-gold-border);
}
.mp-cat-cover {
    position: relative;
    height: 130px;
    background: var(--bc-light);
    overflow: hidden;
}
.mp-cat-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    opacity: 0;
    transition: opacity .45s ease, transform .35s ease;
}
.mp-cat-cover img.bc-loaded { opacity: 1; }
.mp-cat-card:hover .mp-cat-cover img { transform: scale(1.05); }
.mp-cat-cover::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.02) 30%, rgba(0,0,0,.42) 100%);
    pointer-events: none;
}
.mp-cat-badge {
    position: absolute;
    top: 8px; left: 8px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: .28rem .5rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(238,240,244,.95);
    backdrop-filter: blur(6px);
    font-size: .72rem;
    font-weight: 700;
    color: var(--bc-navy);
}
.mp-cat-body { padding: 12px; }
.mp-cat-title { font-weight: 700; margin: 0; color: var(--bc-navy); font-size: .92rem; line-height: 1.2; }
.mp-cat-desc  { margin-top: 5px; color: var(--bc-muted); font-size: .78rem; line-height: 1.35; min-height: 2.1em; }
.mp-cat-foot  { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 10px; }
.mp-cat-count {
    display: inline-flex; align-items: center; gap: 5px;
    padding: .26rem .46rem; border-radius: 999px;
    background: var(--bc-light); border: 1px solid var(--bc-border);
    color: var(--bc-body); font-size: .72rem; font-weight: 600;
}
.mp-cat-link  { color: var(--bc-gold-deep); font-size: .76rem; font-weight: 700; }

/* ================================================================
   PRODUCT CARDS (marketplace)
================================================================ */
.mp-card {
    border: 1px solid var(--bc-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--bc-white);
    height: 100%;
    transition: var(--bc-transition);
}
.mp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(10,31,61,.10);
    border-color: var(--bc-gold-border);
}
.mp-media {
    position: relative;
    background: var(--bc-light);
    aspect-ratio: 4/3;
    overflow: hidden;
}
.mp-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity .45s ease, transform .35s ease;
    opacity: 0;
}
.mp-media img.bc-loaded { opacity: 1; }
.mp-card:hover .mp-media img { transform: scale(1.05); }

.mp-badges {
    position: absolute;
    top: 10px; left: 10px;
    display: flex; gap: 6px; flex-wrap: wrap;
    z-index: 2;
    max-width: calc(100% - 56px);
}
.mp-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .28rem .52rem;
    border-radius: 999px;
    font-size: .74rem;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(238,240,244,.95);
    backdrop-filter: blur(6px);
    font-weight: 700;
    white-space: nowrap;
    color: var(--bc-body);
}
.mp-badge-pill--danger  { background: rgba(239,68,68,.10); border-color: rgba(239,68,68,.18); color: #b91c1c; }
.mp-badge-pill--success { background: rgba(22,163,74,.10);  border-color: rgba(22,163,74,.18);  color: #15803d; }
.mp-badge-pill--discount{ background: rgba(239,68,68,.10); border-color: rgba(239,68,68,.18); color: #b91c1c; }

.mp-actions {
    position: absolute;
    top: 10px; right: 10px;
    display: flex; flex-direction: column; gap: 7px;
    z-index: 2;
}

.mp-body   { padding: 12px 12px 10px; }
.mp-title  {
    font-weight: 700; color: var(--bc-navy);
    font-size: .96rem; line-height: 1.25rem;
    margin: 0 0 8px; min-height: 2.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mp-meta {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 10px; color: var(--bc-muted);
    font-size: .83rem; margin-bottom: 10px;
}
.mp-meta .mp-meta-left { min-width: 0; display: flex; align-items: center; gap: 6px; }
.mp-meta .mp-meta-right{ flex-shrink: 0; white-space: nowrap; }
.mp-price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.mp-price {
    font-weight: 900; color: var(--bc-navy);
    font-size: 1.02rem; line-height: 1.1;
}
.mp-price-old {
    font-weight: 500; color: var(--bc-muted);
    font-size: .78rem; text-decoration: line-through;
    margin-left: 6px;
}
.mp-store-bar {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-top: 1px solid var(--bc-border);
    background: var(--bc-light);
    font-size: .82rem;
    color: var(--bc-muted);
    gap: 8px;
}
.mp-store-bar a { color: var(--bc-gold-deep); font-weight: 700; text-decoration: none; }
.mp-store-bar a:hover { color: var(--bc-navy); }

/* Add-to-cart soft btn */
.mp-add-btn {
    border-radius: var(--r);
    padding: 8px 12px;
    font-weight: 700;
    border: 1px solid var(--bc-gold-border);
    background: var(--bc-gold-light);
    color: var(--bc-gold-deep);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    white-space: nowrap;
    transition: var(--bc-transition);
    cursor: pointer;
}
.mp-add-btn:hover:not(:disabled) { background: var(--bc-gold-mid); color: var(--bc-gold-deep); }
.mp-add-btn:disabled { opacity: .55; cursor: not-allowed; }

/* ================================================================
   SELLER CARDS (marketplace)
================================================================ */
.mp-seller-card {
    border: 1px solid var(--bc-border);
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--bc-white);
    height: 100%;
    transition: var(--bc-transition);
}
.mp-seller-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
    border-color: var(--bc-gold-border);
}
.mp-seller-cover {
    position: relative;
    height: 120px;
    background: var(--bc-light);
    overflow: hidden;
}
.mp-seller-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
    transform: scale(1.02);
    opacity: 0;
    transition: opacity .45s ease;
}
.mp-seller-cover img.bc-loaded { opacity: 1; }
.mp-seller-cover::after {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(80% 80% at 20% 10%, rgba(255,215,0,.14) 0%, rgba(255,215,0,0) 60%),
        linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.55) 100%);
    pointer-events: none;
}
.mp-seller-logo {
    position: absolute;
    left: 12px; bottom: -22px;
    z-index: 3;
    width: 54px; height: 54px;
    border-radius: 999px;
    border: 3px solid var(--bc-white);
    background: var(--bc-white);
    box-shadow: var(--sh-md);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.mp-seller-logo img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .45s ease;
}
.mp-seller-logo img.bc-loaded { opacity: 1; }
.mp-seller-logo-fallback {
    background: var(--bc-gold-light);
    color: var(--bc-navy);
    font-weight: 900;
    letter-spacing: .5px;
    font-size: 1rem;
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    border-radius: 999px;
}
.mp-seller-body { padding: 30px 14px 14px; }
.mp-seller-name { margin: 0 0 6px; font-weight: 800; color: var(--bc-navy); font-size: 1rem; }
.mp-seller-sub  {
    color: var(--bc-muted); font-size: .84rem;
    display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.mp-seller-row  {
    display: flex; justify-content: space-between;
    align-items: center; gap: 10px; margin-top: 12px;
    flex-wrap: wrap;
}

/* ================================================================
   MARKETPLACE RESPONSIVE
================================================================ */
@media (max-width: 991.98px) {
    .mp-hero-inner  { padding: 18px 16px; }
    .mp-hero h1     { font-size: 1.5rem; }
    .mp-stat-row    { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .mp-quick-grid  { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .mp-section-head{ margin: 18px 0 10px; }

    .mp-cat-slider {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 4px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }
    .mp-cat-slider > * { min-width: 180px; scroll-snap-align: start; flex: 0 0 auto; }
}
@media (max-width: 767.98px) {
    .mp-hero { border-radius: var(--r-xl); }
    .mp-hero h1 { font-size: 1.28rem; }
    .mp-hero p  { font-size: .88rem; line-height: 1.52; }
    .mp-hero-cta { display: grid; grid-template-columns: 1fr 1fr; }
    .mp-hero-cta .mp-btn-primary,
    .mp-hero-cta .mp-btn-ghost  { justify-content: center; text-align: center; font-size: .8rem; padding: 10px; }
    .mp-stat-row { grid-template-columns: repeat(3,1fr); }
    .mp-stat .mp-stat-k { font-size: .74rem; }
    .mp-stat .mp-stat-v { font-size: .96rem; }
    .mp-search  { padding: 10px; border-radius: var(--r-lg); }
    .mp-search .form-control,
    .mp-search .form-select { min-height: 42px; font-size: .86rem; }
    .mp-quick-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .mp-quick-card { padding: 10px; gap: 8px; border-radius: var(--r); }
    .mp-quick-icon { width: 34px; height: 34px; }
    .mp-quick-card h6 { font-size: .78rem; }
    .mp-quick-card .mp-sub { font-size: .68rem; }

    .mp-cat-slider > * { min-width: 155px; }
    .mp-cat-cover { height: 92px; }
    .mp-cat-body  { padding: 10px; }
    .mp-cat-title { font-size: .82rem; }
    .mp-cat-desc  { font-size: .7rem; min-height: 1.9em; }
    .mp-cat-count { font-size: .64rem; padding: .2rem .38rem; }
    .mp-cat-link  { font-size: .68rem; }

    .mp-title     { font-size: .88rem; min-height: 2.2rem; }
    .mp-meta      { font-size: .76rem; }
    .mp-price     { font-size: .92rem; }
    .mp-price-old { font-size: .72rem; }
    .mp-badges    { top: 8px; left: 8px; gap: 5px; max-width: calc(100% - 50px); }
    .mp-actions   { top: 8px; right: 8px; gap: 5px; }
    .mp-action-btn{ width: 30px; height: 30px; }
    .mp-body      { padding: 10px; }
    .mp-add-btn   { font-size: .78rem; padding: 7px 10px; }
    .mp-badge-pill{ font-size: .63rem; padding: .2rem .4rem; }

    .mp-seller-cover { height: 108px; }
    .mp-seller-logo  { width: 48px; height: 48px; bottom: -18px; }
    .mp-seller-body  { padding: 26px 12px 12px; }
    .mp-seller-name  { font-size: .9rem; }
    .mp-seller-sub   { font-size: .76rem; gap: 8px; }
    .mp-seller-row   { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 575.98px) {
    .mp-hero h1     { font-size: 1.16rem; }
    .mp-hero p      { font-size: .82rem; }
    .mp-hero-cta    { grid-template-columns: 1fr; gap: 8px; }
    .mp-quick-grid  { grid-template-columns: 1fr 1fr; }
    .mp-quick-card  { padding: 9px; }
    .mp-cat-slider > * { min-width: 136px; }
    .mp-cat-cover   { height: 80px; }
    .mp-cat-badge   { font-size: .6rem; padding: .18rem .36rem; }
    .mp-title       { font-size: .82rem; min-height: 2.05rem; }
    .mp-price       { font-size: .88rem; }
    .mp-seller-name { font-size: .84rem; }
    .mp-section-head h3 { font-size: 1.08rem; }
}

/* ================================================================
   SERVICE DETAILS PAGE  (.sd-*)
================================================================ */

/* ── Gallery ─────────────────────────────────────────────────── */
.sd-gallery { margin-bottom: 24px; }

/* Main image wrapper */
.sd-main-img-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    background: var(--bc-light);
    aspect-ratio: 16/9;
    margin-bottom: 10px;
}
.sd-main-img-wrap .bc-skel-layer {
    position: absolute; inset: 0; z-index: 2;
    border-radius: inherit;
    transition: opacity .4s ease;
}
.sd-main-img-wrap .bc-skel-layer.loaded { opacity: 0; pointer-events: none; }
.sd-hero-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    opacity: 0;
    transition: opacity .5s ease;
    position: relative; z-index: 1;
}
.sd-hero-img.bc-loaded { opacity: 1; }

/* Gallery nav arrows */
.sd-gallery-prev,
.sd-gallery-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 40px; height: 40px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--bc-border);
    box-shadow: var(--sh-sm);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--bc-navy);
    transition: var(--bc-transition);
    font-size: 1rem;
}
.sd-gallery-prev:hover,
.sd-gallery-next:hover {
    background: var(--bc-gold-light);
    border-color: var(--bc-gold-border);
    transform: translateY(-50%) scale(1.06);
}
.sd-gallery-prev { left: 12px; }
.sd-gallery-next { right: 12px; }

/* Image counter badge */
.sd-img-counter {
    position: absolute;
    bottom: 12px; right: 12px; z-index: 5;
    background: rgba(10,31,61,.72);
    color: #fff;
    font-size: .74rem; font-weight: 700;
    padding: 4px 10px; border-radius: 999px;
    backdrop-filter: blur(6px);
    letter-spacing: .04em;
}

/* Thumbnail strip */
.sd-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.sd-thumbs::-webkit-scrollbar { height: 4px; }
.sd-thumbs::-webkit-scrollbar-thumb { background: var(--bc-border); border-radius: 2px; }

.sd-thumb {
    flex: 0 0 auto;
    width: 88px; height: 64px;
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--bc-transition);
    scroll-snap-align: start;
    background: var(--bc-light);
}
.sd-thumb.active  { border-color: var(--bc-gold); }
.sd-thumb:hover:not(.active) { border-color: var(--bc-gold-border); }
.sd-thumb img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    opacity: 0; transition: opacity .4s ease;
}
.sd-thumb img.bc-loaded { opacity: 1; }
.sd-thumb .bc-skel-layer {
    position: absolute; inset: 0; z-index: 2;
    border-radius: inherit; transition: opacity .4s ease;
}
.sd-thumb .bc-skel-layer.loaded { opacity: 0; pointer-events: none; }

/* ── Meta chips ──────────────────────────────────────────────── */
.sd-chip {
    display: inline-flex; align-items: center; gap: .38rem;
    padding: .34rem .65rem; border-radius: 999px;
    background: var(--bc-light); border: 1px solid var(--bc-border);
    font-size: .84rem; color: var(--bc-body);
    white-space: nowrap;
}
.sd-chip i { font-size: .9rem; }

.sd-tag {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .32rem .6rem; border-radius: 999px;
    background: var(--bc-white); border: 1px solid var(--bc-border);
    font-size: .86rem; color: var(--bc-body);
    margin: 0 .35rem .35rem 0;
    transition: var(--bc-transition);
}
.sd-tag:hover { border-color: var(--bc-gold-border); background: var(--bc-gold-light); }

/* ── Action row (wishlist / share) ───────────────────────────── */
.sd-action-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: var(--r);
    border: 1.5px solid var(--bc-border);
    background: var(--bc-white);
    color: var(--bc-body); font-size: .85rem; font-weight: 600;
    text-decoration: none; cursor: pointer;
    transition: var(--bc-transition);
}
.sd-action-link:hover {
    border-color: var(--bc-gold-border);
    background: var(--bc-gold-light);
    color: var(--bc-navy);
}
.sd-action-link.wishlisted i { color: #ef4444; }

/* ── Overview / Accordion ────────────────────────────────────── */
.sd-accordion .accordion-item {
    border: 1px solid var(--bc-border);
    border-radius: var(--r-lg) !important;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--sh-xs);
}
.sd-accordion .accordion-button {
    font-weight: 800; font-size: .95rem;
    color: var(--bc-navy); background: var(--bc-white);
    padding: 14px 18px;
    border-radius: 0 !important;
}
.sd-accordion .accordion-button:not(.collapsed) {
    background: var(--bc-gold-light);
    color: var(--bc-navy);
    box-shadow: none;
}
.sd-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(255,215,0,.18);
}
.sd-accordion .accordion-body {
    padding: 16px 18px;
    font-size: .92rem; color: var(--bc-body); line-height: 1.75;
}

/* Overview description box */
.sd-desc-box {
    background: var(--bc-light); border-radius: var(--r-lg);
    padding: 16px; border: 1px solid var(--bc-border);
    font-size: .93rem; line-height: 1.78; color: var(--bc-body);
}

/* ── Sticky sidebar ──────────────────────────────────────────── */
.sd-sticky { position: sticky; top: 92px; }

/* Price card */
.sd-price-card {
    border: 1px solid var(--bc-border);
    border-radius: var(--r-xl);
    background: var(--bc-white);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    margin-bottom: 16px;
}
.sd-price-card__head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--bc-border);
    background: var(--bc-light);
}
.sd-price-card__label { font-size: .78rem; color: var(--bc-muted); font-weight: 600; margin-bottom: 3px; }
.sd-price-card__amount {
    font-size: 1.75rem; font-weight: 900;
    color: var(--bc-navy); line-height: 1;
}
.sd-price-card__body { padding: 18px 20px; }

/* CTA button */
.sd-cta-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; width: 100%;
    padding: 13px 20px;
    border-radius: var(--r-lg);
    font-weight: 800; font-size: .97rem;
    background: var(--bc-gold-grad);
    color: var(--bc-navy); border: none;
    box-shadow: 0 4px 16px rgba(255,215,0,.30);
    cursor: pointer; text-decoration: none;
    transition: var(--bc-transition);
    margin-bottom: 10px;
}
.sd-cta-btn:hover { color: var(--bc-navy); opacity: .9; transform: translateY(-1px); }
.sd-cta-btn--outline {
    background: transparent;
    border: 1.5px solid var(--bc-border);
    color: var(--bc-body);
    box-shadow: none;
}
.sd-cta-btn--outline:hover { background: var(--bc-light); color: var(--bc-navy); border-color: #c0cada; }

/* ── Provider card ───────────────────────────────────────────── */
.sd-provider-card {
    border: 1px solid var(--bc-border);
    border-radius: var(--r-xl);
    background: var(--bc-white);
    box-shadow: var(--sh-sm);
    overflow: hidden;
}
.sd-provider-card__head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--bc-border-2);
    font-size: .95rem; font-weight: 800; color: var(--bc-navy);
}
.sd-provider-card__body { padding: 18px 20px; }

.sd-provider-profile {
    text-align: center;
    padding: 20px 16px;
    background: var(--bc-light);
    border-radius: var(--r-lg);
    border: 1px solid var(--bc-border);
    margin-bottom: 16px;
    position: relative;
}
/* Avatar with skeleton */
.sd-avatar-wrap {
    position: relative;
    width: 84px; height: 84px;
    border-radius: 50%;
    margin: 0 auto 12px;
    background: var(--bc-light);
}
.sd-avatar-wrap .bc-skel-layer {
    position: absolute; inset: 0;
    border-radius: 50%; z-index: 2;
    transition: opacity .4s ease;
}
.sd-avatar-wrap .bc-skel-layer.loaded { opacity: 0; pointer-events: none; }
.sd-avatar-img {
    width: 84px; height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bc-white);
    box-shadow: var(--sh-sm);
    opacity: 0; transition: opacity .45s ease;
    display: block;
}
.sd-avatar-img.bc-loaded { opacity: 1; }
.sd-verified-dot {
    position: absolute;
    bottom: 2px; right: 2px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #16a34a; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; border: 2px solid var(--bc-white);
    z-index: 3;
}
.sd-provider-name {
    font-size: 1rem; font-weight: 800;
    color: var(--bc-navy); margin-bottom: 4px;
}
.sd-provider-rating { font-size: .85rem; color: var(--bc-muted); }

/* Provider info rows */
.sd-info-row {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--bc-border-2);
    font-size: .88rem;
}
.sd-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.sd-info-row__label {
    display: flex; align-items: center; gap: 6px;
    font-weight: 700; color: var(--bc-navy);
    flex-shrink: 0;
}
.sd-info-row__value { color: var(--bc-muted); text-align: right; font-size: .85rem; }

/* Provider action buttons */
.sd-provider-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 7px; width: 100%;
    padding: 11px 16px; border-radius: var(--r-lg);
    font-weight: 700; font-size: .9rem;
    border: none; cursor: pointer;
    text-decoration: none; transition: var(--bc-transition);
    margin-bottom: 8px;
}
.sd-provider-btn--navy {
    background: var(--bc-navy); color: #fff;
}
.sd-provider-btn--navy:hover { background: var(--bc-navy-2); color: #fff; }
.sd-provider-btn--outline {
    background: transparent;
    border: 1.5px solid var(--bc-border);
    color: var(--bc-body);
}
.sd-provider-btn--outline:hover { background: var(--bc-light); color: var(--bc-navy); }

/* ── Reviews section ─────────────────────────────────────────── */
.sd-rating-box {
    background: var(--bc-light);
    border-radius: var(--r-xl);
    border: 1px solid var(--bc-border);
    padding: 20px;
    text-align: center;
}
.sd-rating-score {
    font-size: 2.8rem; font-weight: 900;
    color: var(--bc-navy); line-height: 1;
    margin-bottom: 8px;
}
.sd-stars { display: flex; align-items: center; justify-content: center; gap: 3px; margin-bottom: 6px; }
.sd-stars i { font-size: 18px; }
.sd-star-active   { color: var(--bc-gold); }
.sd-star-inactive { color: var(--bc-border); }

.sd-progress-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: .84rem; }
.sd-progress-row:last-child { margin-bottom: 0; }
.sd-progress-row .sd-star-label { color: var(--bc-muted); white-space: nowrap; width: 40px; flex-shrink: 0; }
.sd-progress-row .progress { flex: 1; height: 8px; border-radius: 999px; background: var(--bc-border); overflow: visible; }
.sd-progress-row .progress-bar { background: var(--bc-gold); border-radius: 999px; }
.sd-progress-row .sd-count { color: var(--bc-muted); white-space: nowrap; width: 24px; text-align: right; flex-shrink: 0; }

/* Review card */
.sd-review-card {
    border: 1px solid var(--bc-border);
    border-radius: var(--r-lg);
    padding: 16px;
    background: var(--bc-white);
    box-shadow: var(--sh-xs);
    margin-bottom: 12px;
    transition: var(--bc-transition);
}
.sd-review-card:hover { border-color: var(--bc-gold-border); box-shadow: var(--sh-sm); }
.sd-review-avatar-wrap {
    position: relative;
    width: 44px; height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--bc-light);
}
.sd-review-avatar-wrap .bc-skel-layer {
    position: absolute; inset: 0;
    border-radius: 50%; z-index: 2;
    transition: opacity .4s ease;
}
.sd-review-avatar-wrap .bc-skel-layer.loaded { opacity: 0; pointer-events: none; }
.sd-review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    opacity: 0; transition: opacity .4s ease;
}
.sd-review-avatar.bc-loaded { opacity: 1; }
.sd-review-rating {
    display: inline-flex; align-items: center; gap: 4px;
    background: #16a34a; color: #fff;
    font-size: .76rem; font-weight: 800;
    padding: 3px 9px; border-radius: 999px;
}

/* Leave-a-review form */
.sd-review-form {
    border: 1px solid var(--bc-gold-border);
    border-radius: var(--r-xl);
    background: linear-gradient(to bottom, var(--bc-gold-light), var(--bc-white));
    padding: 20px;
    margin-bottom: 20px;
}
.sd-review-form .form-control:focus,
.sd-review-form .form-select:focus {
    border-color: var(--bc-gold-border);
    box-shadow: 0 0 0 3px rgba(255,215,0,.15);
    outline: none;
}

/* ── Request modal ───────────────────────────────────────────── */
.sd-modal .modal-content {
    border: none;
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    overflow: hidden;
}
.sd-modal .modal-header {
    background: var(--bc-navy);
    border-bottom: none;
    padding: 16px 20px;
}
.sd-modal .modal-header .modal-title { color: #fff; font-weight: 800; font-size: 1rem; }
.sd-modal .modal-header .btn-close { filter: invert(1); opacity: .8; }
.sd-modal .modal-body { padding: 20px; }
.sd-modal .modal-footer { border-top: 1px solid var(--bc-border); padding: 14px 20px; }
.sd-modal .service-preview {
    display: flex; align-items: center; gap: 12px;
    background: var(--bc-light);
    border: 1px solid var(--bc-border);
    border-radius: var(--r-lg);
    padding: 12px;
    margin-bottom: 18px;
}
.sd-modal .service-preview-img {
    width: 60px; height: 60px;
    border-radius: var(--r);
    object-fit: cover; flex-shrink: 0;
    opacity: 0; transition: opacity .4s ease;
}
.sd-modal .service-preview-img.bc-loaded { opacity: 1; }
.sd-modal .form-control:focus,
.sd-modal .form-select:focus {
    border-color: var(--bc-gold-border);
    box-shadow: 0 0 0 3px rgba(255,215,0,.15);
    outline: none;
}
.sd-modal .btn-submit {
    background: var(--bc-gold-grad);
    color: var(--bc-navy); border: none;
    font-weight: 800; border-radius: var(--r-lg);
    padding: 11px 24px;
    box-shadow: 0 3px 12px rgba(255,215,0,.28);
    transition: var(--bc-transition);
}
.sd-modal .btn-submit:hover { opacity: .9; color: var(--bc-navy); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .sd-sticky { position: static; }
    .sd-main-img-wrap { aspect-ratio: 4/3; }
}
@media (max-width: 767.98px) {
    .sd-gallery-prev, .sd-gallery-next { width: 34px; height: 34px; font-size: .88rem; }
    .sd-gallery-prev { left: 8px; }
    .sd-gallery-next { right: 8px; }
    .sd-thumb { width: 72px; height: 54px; }
    .sd-main-img-wrap { border-radius: var(--r-lg); }
    .sd-avatar-img, .sd-avatar-wrap { width: 72px; height: 72px; }
    .sd-rating-score { font-size: 2.2rem; }
    .sd-price-card__amount { font-size: 1.5rem; }
}
