/* ─── PLAN ROW ─────────────────────────────────────── */
.bia-plan-row {
    border-radius: 0;
}

/* ─── PLAN CARD ────────────────────────────────────── */
.bia-plan {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .35s, box-shadow .35s;
    position: relative;
    overflow: hidden;
}

.bia-plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(13, 27, 42, .13);
    z-index: 2;
}

.bia-plan-featured {
    border: 2px solid var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(174, 130, 37, .2);
    z-index: 3;
}

.bia-plan-featured:hover {
    transform: translateY(-14px);
}

.bia-col-popular {
    z-index: 3;
}

/* Popular badge */
.bia-pop-badge {
    background: linear-gradient(90deg, #8A6518, #AE8225, #D4A843);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-align: center;
    padding: 9px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Plan top: letter + name */
.bia-plan-top {
    padding: 24px 22px 20px;
    background: linear-gradient(135deg, #0D1B2A 0%, #18232F 100%);
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 2px solid var(--accent);
}

.bia-plan-letter {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
}

.bia-plan-name {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}

.bia-plan-tagline {
    color: rgba(255, 255, 255, .45);
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Day dots */
.bia-days-row {
    display: flex;
    gap: 6px;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    background: #faf9f5;
    align-items: center;
}

.bia-day-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    font-weight: 700;
    color: #bbb;
    transition: all .2s;
}

.bia-day-dot.active {
    color: #fff;
    border-color: transparent;
    font-weight: 900;
}

/* Stats strip */
.bia-stats-strip {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    background: #faf9f5;
}

.bia-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 8px;
    gap: 3px;
}

.bia-stat-val {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 800;
    color: #0D1B2A;
}

.bia-stat-lbl {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    color: #aaa;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.bia-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, .08);
    flex-shrink: 0;
}

/* Features */
.bia-features {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.bia-feat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.bia-feat-cert {
    margin-top: 6px;
    padding: 8px 10px;
    background: rgba(174, 130, 37, .05);
    border-left: 2px solid;
    border-radius: 0 4px 4px 0;
}

/* CTA */
.bia-plan-cta {
    padding: 0 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bia-cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #0D1B2A;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 16px;
    text-decoration: none;
    border: 2px solid #0D1B2A;
    transition: all .3s;
}

.bia-cta-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.bia-cta-gold {
    background: #AE8225;
    color: #fff !important;
    border-color: #AE8225 !important;
}

.bia-cta-gold:hover {
    background: #D4A843 !important;
    border-color: #D4A843 !important;
}

.bia-cta-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(37, 211, 102, .06);
    color: #1a9e4e;
    border: 1px solid rgba(37, 211, 102, .35);
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 14px;
    text-decoration: none;
    transition: all .3s;
}

.bia-cta-wa:hover {
    background: #25D366;
    color: #fff;
}

.bia-cta-wa i {
    font-size: 14px;
}

/* ─── TABLE ────────────────────────────────────────── */
.bia-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 460px;
}

.bia-table thead tr {
    background: rgba(174, 130, 37, .1);
}

.bia-table th {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    color: #D4A843;
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(174, 130, 37, .25);
    letter-spacing: .5px;
}

.bia-th-feat {
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
    letter-spacing: 1.5px;
}

.bia-th-b {
    background: rgba(174, 130, 37, .08);
}

.bia-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    transition: background .2s;
}

.bia-table tbody tr:hover {
    background: rgba(255, 255, 255, .03);
}

.bia-table td {
    padding: 12px 20px;
    text-align: center;
}

.bia-td-lbl {
    text-align: left;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
}

.bia-td-b {
    background: rgba(174, 130, 37, .05);
}

/* ─── COURSE ITEMS ─────────────────────────────────── */
.bia-course-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 14px;
    border: 1px solid rgba(174, 130, 37, .14);
    transition: all .3s;
    height: 100%;
}

.bia-course-item:hover {
    border-color: #AE8225;
    background: #faf8f2;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(13, 27, 42, .07);
}

.bia-course-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(174, 130, 37, .1);
    border: 1px solid rgba(174, 130, 37, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AE8225;
    font-size: 14px;
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media(max-width:991px) {
    .bia-plan-featured {
        transform: none;
    }

    .bia-plan-featured:hover {
        transform: translateY(-8px);
    }

    .bia-plan:hover {
        transform: translateY(-5px);
    }
}

@media(max-width:575px) {
    .bia-plan-letter {
        font-size: 40px;
    }

    .bia-day-dot {
        width: 28px;
        height: 28px;
        font-size: 9px;
    }

    .bia-stats-strip {
        flex-wrap: wrap;
    }

    .bia-stat {
        padding: 10px 6px;
    }

    .bia-stat-val {
        font-size: 11px;
    }
}
