﻿/* ============================================
   BUSINESS CHAMPS – site.css
   Brand: Orange (#E8670A), Dark (#1A1A2E), Gold (#F5A623)
   Powered by Orinci.in
   ============================================ */

/* ── RESET & TOKENS ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bc-orange: #E8670A;
    --bc-orange-lt: #FF8533;
    --bc-gold: #F5A623;
    --bc-dark: #1A1A2E;
    --bc-dark-2: #16213E;
    --bc-charcoal: #2D2D44;
    --bc-cream: #FFF8F3;
    --bc-white: #FFFFFF;
    --bc-muted: #6B6B80;
    --bc-border: #E8E8F0;
    --bc-font-display: 'Montserrat', sans-serif;
    --bc-font-body: 'Inter', sans-serif;
    --bc-radius: 12px;
    --bc-radius-lg: 20px;
    --bc-shadow: 0 4px 24px rgba(0,0,0,0.08);
    --bc-shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
    --bc-transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bc-font-body);
    color: var(--bc-dark);
    background: var(--bc-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ── */
.bc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.bc-text-center {
    text-align: center;
}

.bc-eyebrow {
    display: block;
    font-family: var(--bc-font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bc-orange);
    margin-bottom: 10px;
}

.bc-eyebrow--center {
    text-align: center;
}

/* ── BUTTONS ── */
.bc-btn {
    display: inline-block;
    font-family: var(--bc-font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--bc-transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.bc-btn--primary {
    background: var(--bc-orange);
    color: var(--bc-white);
    border-color: var(--bc-orange);
}

    .bc-btn--primary:hover {
        background: var(--bc-orange-lt);
        border-color: var(--bc-orange-lt);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(232,103,10,0.3);
    }

.bc-btn--ghost {
    background: transparent;
    color: var(--bc-dark);
    border-color: var(--bc-dark);
}

    .bc-btn--ghost:hover {
        background: var(--bc-dark);
        color: var(--bc-white);
    }

.bc-btn--outline {
    background: transparent;
    color: var(--bc-orange);
    border-color: var(--bc-orange);
}

    .bc-btn--outline:hover {
        background: var(--bc-orange);
        color: var(--bc-white);
    }

.bc-btn--lg {
    padding: 18px 44px;
    font-size: 1rem;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.bc-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bc-border);
    transition: box-shadow var(--bc-transition);
}

    .bc-navbar.scrolled {
        box-shadow: var(--bc-shadow);
    }

.bc-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.bc-navbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Decorative ring to suggest the Orinci logo without requiring the image */
.bc-navbar__logo-ring {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--bc-orange), var(--bc-gold), #5D5FEF, var(--bc-orange));
    flex-shrink: 0;
}

.bc-navbar__logo-ring--sm {
    width: 28px;
    height: 28px;
}

.bc-navbar__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.bc-navbar__title {
    font-family: var(--bc-font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--bc-dark);
}

.bc-navbar__sub {
    font-size: 0.68rem;
    color: var(--bc-muted);
    font-weight: 400;
}

    .bc-navbar__sub strong {
        color: var(--bc-orange);
    }

.bc-navbar__nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.bc-nav__link {
    font-family: var(--bc-font-display);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--bc-charcoal);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all var(--bc-transition);
}

    .bc-nav__link:hover {
        color: var(--bc-orange);
        background: rgba(232,103,10,0.06);
    }

.bc-nav__link--cta {
    background: var(--bc-orange);
    color: var(--bc-white) !important;
    padding: 8px 20px;
}

    .bc-nav__link--cta:hover {
        background: var(--bc-orange-lt);
        box-shadow: 0 4px 16px rgba(232,103,10,0.3);
    }

.bc-navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .bc-navbar__hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--bc-dark);
        border-radius: 2px;
        transition: all var(--bc-transition);
    }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.bc-hero {
    padding-top: 72px; /* offset navbar */
    background: linear-gradient(135deg, var(--bc-dark) 0%, var(--bc-dark-2) 60%, #2D1B4E 100%);
    position: relative;
    overflow: hidden;
}

.bc-hero__bg-shape {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,103,10,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.bc-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 560px;
    padding-top: 72px;
    padding-bottom: 80px;
}

.bc-hero__content .bc-eyebrow {
    color: var(--bc-gold);
}

.bc-hero__heading {
    font-family: var(--bc-font-display);
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.05;
    color: var(--bc-white);
    margin-bottom: 20px;
}

.bc-hero__accent {
    font-style: normal;
    background: linear-gradient(90deg, var(--bc-orange), var(--bc-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bc-hero__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}

    .bc-hero__sub strong {
        color: var(--bc-gold);
    }

.bc-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

    .bc-hero__actions .bc-btn--ghost {
        color: var(--bc-white);
        border-color: rgba(255,255,255,0.4);
    }

        .bc-hero__actions .bc-btn--ghost:hover {
            background: rgba(255,255,255,0.1);
        }

.bc-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bc-hero__img-placeholder {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 16/10;
    background: rgba(255,255,255,0.06);
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: var(--bc-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    font-style: italic;
}

/* Stats bar */
.bc-hero__stats {
    background: rgba(255,255,255,0.06);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bc-stats-bar {
    display: flex;
    justify-content: space-around;
    padding: 28px 0;
}

.bc-stat {
    text-align: center;
    color: var(--bc-white);
}

.bc-stat__num {
    display: block;
    font-family: var(--bc-font-display);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--bc-gold);
    line-height: 1;
}

.bc-stat__label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* ═══════════════════════════════════════
   SECTION DEFAULTS
═══════════════════════════════════════ */
.bc-section {
    padding: 88px 0;
}

.bc-section__title {
    font-family: var(--bc-font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--bc-dark);
    margin-bottom: 14px;
    line-height: 1.15;
}

.bc-section__sub {
    font-size: 1.05rem;
    color: var(--bc-muted);
    max-width: 560px;
    margin: 0 auto 48px;
}

/* ═══════════════════════════════════════
   EARNINGS TABLE
═══════════════════════════════════════ */
.bc-earnings {
    background: var(--bc-cream);
}

.bc-earnings-table-wrap {
    overflow-x: auto;
    margin-bottom: 56px;
    border-radius: var(--bc-radius);
    box-shadow: var(--bc-shadow-lg);
}

.bc-earnings-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bc-white);
    font-size: 0.95rem;
}

    .bc-earnings-table thead {
        background: var(--bc-dark);
        color: var(--bc-white);
    }

    .bc-earnings-table th {
        font-family: var(--bc-font-display);
        font-weight: 700;
        font-size: 0.82rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 16px 24px;
        text-align: left;
    }

    .bc-earnings-table td {
        padding: 16px 24px;
        border-bottom: 1px solid var(--bc-border);
        vertical-align: middle;
    }

    .bc-earnings-table tbody tr:hover td {
        background: rgba(232,103,10,0.04);
    }

.bc-prod-name {
    font-weight: 600;
    color: var(--bc-orange);
    font-family: var(--bc-font-display);
}

.bc-amount {
    font-weight: 700;
    font-family: var(--bc-font-display);
}

.bc-total-row td {
    background: linear-gradient(90deg, var(--bc-dark), var(--bc-charcoal));
    color: var(--bc-white);
    border: none;
}

.bc-total {
    color: var(--bc-gold) !important;
    font-size: 1.15rem;
}

/* Action plan */
.bc-action-plan {
    background: var(--bc-white);
    border-radius: var(--bc-radius-lg);
    padding: 40px;
    box-shadow: var(--bc-shadow);
}

.bc-action-plan__title {
    font-family: var(--bc-font-display);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--bc-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bc-orange);
    display: inline-block;
}

.bc-action-plan__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.bc-action-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bc-cream);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--bc-charcoal);
}

.bc-action-item__icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ═══════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════ */
.bc-products {
    background: var(--bc-white);
}

.bc-product-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0;
    margin-bottom: 40px;
    background: var(--bc-white);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-lg);
    overflow: hidden;
    box-shadow: var(--bc-shadow);
    transition: transform var(--bc-transition), box-shadow var(--bc-transition);
}

    .bc-product-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--bc-shadow-lg);
    }

.bc-product-card--alt {
    background: var(--bc-cream);
}

.bc-product-card__badge {
    background: var(--bc-dark);
    color: var(--bc-gold);
    font-family: var(--bc-font-display);
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
    padding: 16px 0;
}

.bc-product-card__content {
    padding: 0;
}

.bc-product-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px 20px;
    border-bottom: 1px solid var(--bc-border);
}

.bc-product-logo-placeholder {
    width: 80px;
    height: 52px;
    background: rgba(232,103,10,0.08);
    border: 2px dashed rgba(232,103,10,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--bc-orange);
    text-align: center;
    flex-shrink: 0;
    font-style: italic;
}

.bc-product-card__name {
    font-family: var(--bc-font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--bc-dark);
    line-height: 1;
}

.bc-product-card__tagline {
    font-size: 0.9rem;
    color: var(--bc-muted);
    margin: 4px 0 6px;
}

.bc-product-card__url {
    font-size: 0.78rem;
    color: var(--bc-orange);
    text-decoration: none;
    font-weight: 600;
}

    .bc-product-card__url:hover {
        text-decoration: underline;
    }

.bc-product-card__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.bc-product-benefits,
.bc-product-pricing {
    padding: 24px 32px;
}

.bc-product-benefits {
    border-right: 1px solid var(--bc-border);
}

    .bc-product-benefits h4,
    .bc-product-pricing h4 {
        font-family: var(--bc-font-display);
        font-weight: 700;
        font-size: 0.78rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--bc-muted);
        margin-bottom: 14px;
    }

    .bc-product-benefits ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

        .bc-product-benefits ul li {
            font-size: 0.88rem;
            color: var(--bc-charcoal);
            padding-left: 18px;
            position: relative;
        }

            .bc-product-benefits ul li::before {
                content: '✓';
                position: absolute;
                left: 0;
                color: var(--bc-orange);
                font-weight: 700;
            }

.bc-product-price-note {
    font-size: 0.82rem;
    color: var(--bc-muted);
    margin-top: 12px;
}

    .bc-product-price-note strong {
        color: var(--bc-orange);
    }

/* Plans */
.bc-plan {
    background: rgba(232,103,10,0.06);
    border-left: 3px solid var(--bc-orange);
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--bc-charcoal);
}

.bc-plan--best {
    background: rgba(232,103,10,0.1);
    border-left-color: var(--bc-gold);
}

.bc-plan__tag {
    display: inline-block;
    font-family: var(--bc-font-display);
    font-weight: 700;
    font-size: 0.7rem;
    padding: 2px 8px;
    background: var(--bc-dark);
    color: var(--bc-white);
    border-radius: 4px;
    margin-bottom: 6px;
}

.bc-plan__tag--best {
    background: var(--bc-orange);
}

/* Commission table */
.bc-commission-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bc-commission-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(232,103,10,0.06);
    border-radius: 6px;
    font-size: 0.85rem;
}

    .bc-commission-row strong {
        color: var(--bc-orange);
        font-family: var(--bc-font-display);
    }

.bc-commission-extra {
    list-style: none;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .bc-commission-extra li {
        font-size: 0.82rem;
        color: var(--bc-muted);
        padding-left: 14px;
        position: relative;
    }

        .bc-commission-extra li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--bc-orange);
        }

/* ═══════════════════════════════════════
   PACKS
═══════════════════════════════════════ */
.bc-packs {
    background: var(--bc-dark);
}

    .bc-packs .bc-section__title {
        color: var(--bc-white);
    }

    .bc-packs .bc-section__sub {
        color: rgba(255,255,255,0.6);
    }

    .bc-packs .bc-eyebrow {
        color: var(--bc-gold);
    }

.bc-packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.bc-pack-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--bc-radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--bc-transition);
    position: relative;
}

    .bc-pack-card:hover {
        background: rgba(255,255,255,0.08);
        border-color: var(--bc-orange);
        transform: translateY(-6px);
    }

.bc-pack-card--featured {
    background: rgba(232,103,10,0.15);
    border-color: var(--bc-orange);
    transform: scale(1.03);
}

    .bc-pack-card--featured:hover {
        transform: scale(1.03) translateY(-4px);
    }

.bc-pack-card--mega {
    border-color: var(--bc-gold);
    background: rgba(245,166,35,0.08);
}

.bc-pack-card__popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bc-orange);
    color: var(--bc-white);
    font-family: var(--bc-font-display);
    font-weight: 700;
    font-size: 0.7rem;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.bc-pack-card__level {
    font-family: var(--bc-font-display);
    font-weight: 800;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bc-pack-card__price {
    font-family: var(--bc-font-display);
    font-weight: 900;
    font-size: 2rem;
    color: var(--bc-gold);
    margin-bottom: 12px;
    line-height: 1;
}

.bc-pack-card--mega .bc-pack-card__price {
    font-size: 1.6rem;
}

.bc-pack-card__desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
    min-height: 48px;
}

/* ═══════════════════════════════════════
   WHO SHOULD JOIN
═══════════════════════════════════════ */
.bc-who {
    background: var(--bc-cream);
}

.bc-who__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 40px;
}

.bc-who__item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bc-white);
    border-radius: 8px;
    padding: 16px 18px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--bc-charcoal);
    border: 1px solid var(--bc-border);
    transition: border-color var(--bc-transition), box-shadow var(--bc-transition);
}

    .bc-who__item:hover {
        border-color: var(--bc-orange);
        box-shadow: 0 4px 16px rgba(232,103,10,0.12);
    }

.bc-who__arrow {
    color: var(--bc-orange);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.bc-who__footer {
    text-align: center;
    font-family: var(--bc-font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--bc-dark);
    background: var(--bc-white);
    border: 2px solid var(--bc-orange);
    border-radius: var(--bc-radius);
    padding: 20px 32px;
    display: inline-block;
    width: 100%;
}

/* ═══════════════════════════════════════
   WHY WIN
═══════════════════════════════════════ */
.bc-why {
    background: var(--bc-white);
}

.bc-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 16px;
}

.bc-why__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: var(--bc-radius);
    border: 1px solid var(--bc-border);
    transition: all var(--bc-transition);
}

    .bc-why__item:hover {
        border-color: var(--bc-orange);
        background: var(--bc-cream);
        transform: translateY(-2px);
    }

.bc-why__check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bc-orange);
    color: var(--bc-white);
    font-weight: 900;
    font-size: 1rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.bc-why__item strong {
    font-family: var(--bc-font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--bc-dark);
    display: block;
    margin-bottom: 4px;
}

.bc-why__item p {
    font-size: 0.85rem;
    color: var(--bc-muted);
}

/* ═══════════════════════════════════════
   TEAM
═══════════════════════════════════════ */
.bc-team {
    background: var(--bc-cream);
}

.bc-team__grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.bc-team-card {
    text-align: center;
    width: 200px;
}

.bc-team-card__photo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(232,103,10,0.1);
    border: 3px dashed rgba(232,103,10,0.3);
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--bc-orange);
    font-style: italic;
}

.bc-team-card__name {
    font-family: var(--bc-font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--bc-dark);
    margin-bottom: 4px;
}

.bc-team-card__role {
    font-size: 0.82rem;
    color: var(--bc-orange);
    font-weight: 600;
}
.bc-navbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.bc-navbar__logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.bc-navbar__title {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #222;
}

.bc-navbar__sub {
    display: block;
    font-size: 12px;
    color: #666;
}

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.bc-cta {
    background: linear-gradient(135deg, var(--bc-orange) 0%, #C45508 100%);
    text-align: center;
    padding: 100px 0;
}

.bc-cta__heading {
    font-family: var(--bc-font-display);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--bc-white);
    margin-bottom: 12px;
}

.bc-cta__sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
}

.bc-cta .bc-btn--primary {
    background: var(--bc-white);
    color: var(--bc-orange);
    border-color: var(--bc-white);
    font-size: 1.1rem;
}

    .bc-cta .bc-btn--primary:hover {
        background: var(--bc-cream);
        box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    }

.bc-cta__address {
    margin-top: 24px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

    .bc-cta__address a {
        color: rgba(255,255,255,0.9);
    }

.bc-cta__powered {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}

    .bc-cta__powered strong {
        color: var(--bc-white);
    }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.bc-footer {
    background: var(--bc-dark);
    padding: 64px 0 32px;
    color: rgba(255,255,255,0.7);
}

.bc-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 32px;
}

.bc-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.bc-footer__brand-name {
    font-family: var(--bc-font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--bc-white);
}

.bc-footer__tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.bc-footer__powered {
    font-size: 0.82rem;
}

    .bc-footer__powered a {
        color: var(--bc-orange);
        text-decoration: none;
    }

.bc-footer__heading {
    font-family: var(--bc-font-display);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bc-white);
    margin-bottom: 16px;
}

.bc-footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.85rem;
}

    .bc-footer__list a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        transition: color var(--bc-transition);
    }

        .bc-footer__list a:hover {
            color: var(--bc-orange);
        }

.bc-footer__list--contact li {
    font-size: 0.84rem;
}

.bc-footer__bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
    .bc-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 48px;
    }

    .bc-hero__sub {
        margin: 0 auto 36px;
    }

    .bc-hero__actions {
        justify-content: center;
    }

    .bc-hero__visual {
        display: none;
    }

    .bc-product-card__body {
        grid-template-columns: 1fr;
    }

    .bc-product-benefits {
        border-right: none;
        border-bottom: 1px solid var(--bc-border);
    }

    .bc-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .bc-footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .bc-navbar__nav {
        display: none;
    }

        .bc-navbar__nav.open {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 72px;
            left: 0;
            right: 0;
            background: var(--bc-white);
            padding: 16px;
            border-bottom: 1px solid var(--bc-border);
            box-shadow: var(--bc-shadow);
            gap: 4px;
        }

    .bc-navbar__hamburger {
        display: flex;
    }

    .bc-navbar__inner {
        position: relative;
    }
}

@media (max-width: 600px) {
    .bc-stats-bar {
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 16px;
        padding: 24px;
    }

    .bc-product-card {
        grid-template-columns: 1fr;
    }

    .bc-product-card__badge {
        writing-mode: horizontal-tb;
        padding: 10px 24px;
    }

    .bc-packs-grid {
        grid-template-columns: 1fr;
    }

    .bc-pack-card--featured {
        transform: none;
    }

    .bc-footer__grid {
        grid-template-columns: 1fr;
    }

    .bc-product-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .bc-earnings-table th, .bc-earnings-table td {
        padding: 12px 16px;
    }
}
