/* ===== AI BUILDER BOOTCAMP — 6 WEEK PROGRAMME ===== */

/* Reuses .fk-* classes from founder-kickstart.css for consistent UI */
/* This file adds bootcamp-specific tweaks and overrides */

/* UPCOMING BADGE */
.ab-upcoming {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(255, 90, 90, .12);
    border: 1px solid rgba(255, 90, 90, .3);
    color: #ff6b6b;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-left: 12px;
    animation: abPulse 2s ease-in-out infinite alternate;
    vertical-align: middle
}

@keyframes abPulse {
    0% {
        opacity: .7
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 12px rgba(255, 90, 90, .2)
    }
}

/* EARLY BIRD PRICING */
.ab-pricing-row {
    display: flex;
    gap: 24px;
    max-width: 700px;
    margin: 48px auto 0;
    align-items: stretch
}

.ab-pricing-card {
    flex: 1;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all .3s
}

.ab-pricing-card:hover {
    border-color: rgba(212, 175, 55, .2)
}

.ab-pricing-card--featured {
    border: 2px solid rgba(212, 175, 55, .3);
    background: rgba(212, 175, 55, .03)
}

.ab-pricing-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent)
}

.ab-pricing-card__label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 12px
}

.ab-pricing-card__label--early {
    color: #ff6b6b
}

.ab-pricing-card__label--regular {
    color: #d4af37
}

.ab-pricing-card__price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 4px
}

.ab-pricing-card__price--striked {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, .3);
    text-decoration: line-through;
    margin-bottom: 8px
}

.ab-pricing-card__save {
    display: inline-block;
    font-size: .7rem;
    padding: 4px 12px;
    background: rgba(255, 90, 90, .1);
    border: 1px solid rgba(255, 90, 90, .2);
    border-radius: 6px;
    color: #ff6b6b;
    font-weight: 700;
    margin-bottom: 12px
}

.ab-pricing-card__note {
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 20px
}

.ab-pricing-card__seats {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
    margin-top: 14px
}

/* PRODUCT SPRINT BADGE */
.ab-sprint {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.ab-sprint--1 {
    background: rgba(100, 200, 255, .1);
    border: 1px solid rgba(100, 200, 255, .2);
    color: #64c8ff
}

.ab-sprint--2 {
    background: rgba(160, 120, 255, .1);
    border: 1px solid rgba(160, 120, 255, .2);
    color: #a078ff
}

.ab-sprint--3 {
    background: rgba(255, 180, 80, .1);
    border: 1px solid rgba(255, 180, 80, .2);
    color: #ffb450
}

/* TOOLS INCLUDED GRID */
.ab-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px
}

.ab-tool {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 24px 20px;
    transition: all .3s
}

.ab-tool:hover {
    border-color: rgba(212, 175, 55, .2);
    transform: translateY(-2px)
}

.ab-tool__name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.ab-tool__desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.5
}

.ab-tool__value {
    font-size: .7rem;
    color: #d4af37;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px
}

/* SCHEDULE CARDS */
.ab-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px
}

.ab-sched {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 24px 20px;
    transition: all .3s
}

.ab-sched:hover {
    border-color: rgba(212, 175, 55, .2)
}

.ab-sched__day {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 6px
}

.ab-sched__time {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.ab-sched__name {
    font-size: .9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 6px
}

.ab-sched__desc {
    font-size: .8rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.5
}

.ab-sched__optional {
    display: inline-block;
    font-size: .6rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px
}

/* POST-PAYMENT STEPS */
.ab-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 24px
}

.ab-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, .02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .04)
}

.ab-step__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .1);
    border: 1px solid rgba(212, 175, 55, .2);
    color: #d4af37;
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ab-step__text {
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.5
}

/* RESPONSIVE */
@media(max-width:768px) {
    .ab-pricing-row {
        flex-direction: column
    }

    .ab-tools {
        grid-template-columns: 1fr
    }

    .ab-schedule {
        grid-template-columns: 1fr
    }

    .ab-steps {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:480px) {
    .ab-steps {
        grid-template-columns: 1fr
    }

    .ab-upcoming {
        display: block;
        margin: 8px auto 0;
        text-align: center;
        width: fit-content
    }
}