:root {
    --bm-primary: #882528;
    --bm-primary-dark: #651a1c;
    --bm-secondary: #f08519;
    --bm-secondary-light: #fff4e8;
    --bm-soft: #fff8f2;
    --bm-border: #eee4dc;
    --bm-text: #252525;
    --bm-muted: #6f7278;
    --bm-white: #ffffff;
    --bm-shadow: rgba(55, 31, 21, 0.12);
}

/* =========================================================
   GLOBAL PSB
   ========================================================= */

.section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--bm-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--bm-primary);
    border-color: var(--bm-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--bm-primary-dark) !important;
    border-color: var(--bm-primary-dark) !important;
}

.btn-outline-primary {
    color: var(--bm-primary);
    border-color: var(--bm-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--bm-primary);
    border-color: var(--bm-primary);
    color: var(--bm-white);
}

.btn-bm-primary {
    padding: 14px 25px;
    border: 1px solid var(--bm-primary);
    background: var(--bm-primary);
    color: var(--bm-white);
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(136, 37, 40, 0.18);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.btn-bm-primary:hover,
.btn-bm-primary:focus {
    border-color: var(--bm-primary-dark);
    background: var(--bm-primary-dark);
    color: var(--bm-white);
    transform: translateY(-2px);
}

.btn-bm-outline {
    padding: 14px 25px;
    border: 1px solid var(--bm-border);
    background: var(--bm-white);
    color: var(--bm-primary);
    font-weight: 600;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.btn-bm-outline:hover,
.btn-bm-outline:focus {
    border-color: var(--bm-primary);
    background: var(--bm-soft);
    color: var(--bm-primary);
    transform: translateY(-2px);
}

/* =========================================================
   HERO BANNER
   ========================================================= */

.psb-hero-banner {
    padding: 36px 0 70px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at top right,
            rgba(240, 133, 25, 0.08),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffaf6 100%
        );
}

.hero-banner-card {
    overflow: hidden;
    border: 1px solid rgba(136, 37, 40, 0.1);
    border-radius: 24px;
    background: var(--bm-white);
    box-shadow: 0 24px 60px rgba(55, 31, 21, 0.14);
}

.hero-banner-image {
    display: block;
    width: 100%;
    height: auto;
}

.hero-banner-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding-top: 28px;
}

.hero-banner-bottom > div:first-child {
    flex: 1 1 auto;
    min-width: 0;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(240, 133, 25, 0.12);
    color: var(--bm-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title-simple {
    margin: 16px 0 10px;
    color: var(--bm-primary);
    font-size: clamp(26px, 2.65vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.hero-description-simple {
    max-width: 760px;
    margin: 0;
    color: var(--bm-muted);
    font-size: 17px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

/* =========================================================
   CHECKLIST & FEES
   ========================================================= */

.check-list,
.fee-list {
    display: grid;
    gap: 14px;
}

.check-list-item,
.fee-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.check-list-item > span,
.fee-list-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--bm-secondary-light);
    color: var(--bm-secondary);
}

.check-list-item p,
.fee-list-item p {
    margin: 4px 0 0;
}

/* =========================================================
   MATERIAL & SURVEY CARDS
   ========================================================= */

.material-card,
.survey-card {
    display: flex;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(136, 37, 40, 0.12);
    border-radius: 20px;
    background: var(--bm-white);
    box-shadow: 0 12px 32px rgba(55, 31, 21, 0.06);
}

.material-number,
.survey-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: var(--bm-white);
    font-weight: 700;
}

.material-number {
    background: var(--bm-primary);
}

.survey-icon {
    background: var(--bm-secondary);
}

/* =========================================================
   REGISTRATION FLOW
   ========================================================= */

.psb-flow {
    max-width: 900px;
    margin: 0 auto;
}

.psb-flow-item {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 30px;
}

.psb-flow-item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 48px;
    width: 2px;
    height: calc(100% - 14px);
    background: rgba(136, 37, 40, 0.14);
}

.psb-flow-number {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bm-primary);
    color: var(--bm-white);
    font-weight: 700;
}

.psb-flow-content h4 {
    margin: 0 0 6px;
}

.psb-flow-content p {
    margin: 0;
    color: var(--bm-muted);
}

/* =========================================================
   BROCHURE, VIDEO & ALUMNI
   ========================================================= */

.brochure-group,
.video-card,
.alumni-table-wrapper {
    overflow: hidden;
    border: 1px solid rgba(136, 37, 40, 0.12);
    border-radius: 22px;
    background: var(--bm-white);
    box-shadow: 0 15px 40px rgba(55, 31, 21, 0.07);
}

.brochure-image {
    position: relative;
    display: block;
    height: 420px;
    overflow: hidden;
    background: #f7f3ef;
}

.brochure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brochure-image span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(101, 26, 28, 0.86);
    color: var(--bm-white);
    font-size: 12px;
    font-weight: 700;
}

.alumni-table-wrapper .table > :not(caption) > * > * {
    padding: 16px 18px;
}

.alumni-table-wrapper thead th {
    background: #fff7f0;
    color: var(--bm-primary);
    font-weight: 700;
}

.video-card {
    padding: 22px;
}

/* =========================================================
   GRADUATE OUTPUT GALLERY
   ========================================================= */

.graduate-gallery {
    min-height: 480px;
    position: relative;
}

.graduate-image {
    position: absolute;
    width: 74%;
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(55, 31, 21, 0.18);
}

.graduate-image-1 {
    top: 0;
    right: 0;
}

.graduate-image-2 {
    top: 130px;
    left: 0;
}

.graduate-image-3 {
    right: 30px;
    bottom: 0;
}

/* =========================================================
   GALLERY
   ========================================================= */

.gallery-card {
    overflow: hidden;
    height: 280px;
    border-radius: 20px;
    background: #f7f3ef;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.psb-final-cta {
    padding: 70px 0;
    background: linear-gradient(
        120deg,
        var(--bm-primary),
        var(--bm-primary-dark)
    );
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199.98px) {
    .hero-title-simple {
        font-size: clamp(24px, 2.45vw, 36px);
    }

    .hero-banner-bottom {
        gap: 22px;
    }

    .hero-actions .btn {
        padding-right: 18px;
        padding-left: 18px;
    }
}

@media (max-width: 991.98px) {
    .psb-hero-banner {
        padding: 24px 0 55px;
    }

    .hero-banner-card {
        border-radius: 18px;
    }

    .hero-banner-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .hero-title-simple {
        font-size: clamp(28px, 5vw, 40px);
        white-space: normal;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .graduate-gallery {
        min-height: 430px;
        margin-top: 20px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {
    .brochure-image {
        height: 360px;
    }

    .graduate-gallery {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .graduate-image {
        position: static;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .psb-hero-banner {
        padding: 18px 0 45px;
    }

    .hero-banner-card {
        border-radius: 14px;
    }

    .hero-banner-bottom {
        padding-top: 22px;
    }

    .hero-title-simple {
        font-size: 29px;
        line-height: 1.22;
    }

    .hero-description-simple {
        font-size: 15px;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .material-card,
    .survey-card {
        padding: 18px;
    }

    .brochure-image {
        height: 320px;
    }

    .psb-final-cta {
        padding: 52px 0;
    }
}