/* =========================================================
PMB HERO
========================================================= */

.pmb-hero{
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 36px 0 0;
    background:
        radial-gradient(circle at top left, rgba(245,197,24,.13), transparent 30%),
        radial-gradient(circle at bottom right, rgba(11,44,102,.12), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f6f9ff 48%, #edf5ff 100%);
}

.pmb-hero::before{
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.94) 94%);
    z-index: 2;
    pointer-events: none;
}

.pmb-hero .container{
    position: relative;
    z-index: 3;
    max-width: 1320px;
}

.pmb-hero-content{
    max-width: 560px;
}

.pmb-hero-subtitle{
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    align-items: center;
    padding: 7px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(245,197,24,.18);
    color: var(--color1);
    font-size: 12px;
    font-weight: 800;
}

.pmb-hero-content h1{
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 20px;
}

.pmb-hero-content p{
    max-width: 520px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.85;
    color: var(--color1);
    margin-bottom: 28px;
}

.pmb-hero-btn{
    min-height: 52px;
    width: fit-content;
    padding: 14px 20px;
    border-radius: 12px;
    background: var(--color1);
    color: var(--color4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(11,44,102,.20);
}

.pmb-hero-btn:hover{
    background: var(--color2);
    color: var(--color1);
    transform: translateY(-3px);
}

.pmb-hero-btn i{
    font-size: 13px;
    transition: var(--transition);
}

.pmb-hero-btn:hover i{
    transform: translate(3px, -3px);
}

/* =========================================================
VISUAL
========================================================= */

.pmb-hero-visual{
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.pmb-hero-img{
    position: absolute;
    left: 0;
    right: 80px;
    bottom: 0;
    height: 88%;
    max-height: 88%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.pmb-hero-img img{
    width: auto;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

/* =========================================================
ANIMATION
========================================================= */

.fade-up{
    opacity: 0;
    animation: pmbFadeUp .85s ease forwards;
}

.fade-left{
    opacity: 0;
    animation: pmbFadeLeft .9s ease forwards;
}

.delay-1{
    animation-delay: .12s;
}

.delay-2{
    animation-delay: .24s;
}

.delay-3{
    animation-delay: .36s;
}

.delay-4{
    animation-delay: .48s;
}

@keyframes pmbFadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pmbFadeLeft{
    from{
        opacity: 0;
        transform: translateX(44px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1199px){

    .pmb-hero{
        min-height: auto;
        padding: 42px 0 0;
    }

    .pmb-hero-content h1{
        font-size: 40px;
    }

    .pmb-hero-visual{
        min-height: 470px;
    }

    .pmb-hero-img{
        right: 50px;
    }
}

@media(max-width:991px){

    .pmb-hero{
        text-align: center;
        padding: 42px 0 0;
    }

    .pmb-hero-content{
        max-width: 720px;
        margin: 0 auto 34px;
    }

    .pmb-hero-subtitle,
    .pmb-hero-btn{
        margin-left: auto;
        margin-right: auto;
    }

    .pmb-hero-content p{
        margin-left: auto;
        margin-right: auto;
    }

    .pmb-hero-visual{
        min-height: auto;
        flex-direction: column;
        align-items: center;
    }

    .pmb-hero-img{
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        max-height: none;
        z-index: 4;
    }

    .pmb-hero-img img{
        width: auto;
        height: auto;
        max-height: 430px;
    }
}

@media(max-width:768px){

    .pmb-hero{
        padding-top: 34px;
    }

    .pmb-hero-content h1{
        font-size: 32px;
    }

    .pmb-hero-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .pmb-hero-btn{
        width: 100%;
        justify-content: center;
    }

    .pmb-hero-img img{
        max-height: 340px;
    }
}

@media(max-width:480px){

    .pmb-hero-content h1{
        font-size: 29px;
    }

    .pmb-hero-img img{
        max-height: 300px;
    }
}

/* =========================================================
PMB INFO SECTION
========================================================= */

.pmb-info-section{
    position: relative;
    overflow: hidden;
    padding: 78px 0 88px;
    background:
        radial-gradient(circle at top left, rgba(245,197,24,.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(15,158,158,.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #eef7ff 100%);
}

.pmb-section-heading{
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.pmb-section-heading span,
.pmb-panel-heading span{
    display: inline-flex;
    width: fit-content;
    min-height: 28px;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(245,197,24,.18);
    color: var(--color1);
    font-size: 11px;
    font-weight: 800;
}

.pmb-section-heading h2{
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 12px;
}

.pmb-section-heading p{
    font-size: 15px;
    line-height: 1.75;
    color: var(--color5);
    margin: 0;
}

.pmb-benefit-grid{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 32px;
}

.pmb-benefit-card,
.pmb-panel{
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(11,44,102,.08);
    box-shadow: 0 16px 42px rgba(11,44,102,.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.pmb-benefit-card{
    text-align: center;
    border-radius: 20px;
    padding: 26px 18px 24px;
}

.pmb-benefit-card:hover,
.pmb-panel:hover{
    transform: translateY(-6px);
    border-color: rgba(245,197,24,.32);
    box-shadow: 0 24px 54px rgba(11,44,102,.12);
}

.pmb-benefit-icon{
    width: 68px;
    height: 68px;
    border-radius: 22px;
    margin: 0 auto 18px;
    background:
        radial-gradient(circle at top left, rgba(245,197,24,.22), transparent 46%),
        rgba(11,44,102,.06);
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.pmb-benefit-card h3{
    font-size: 15px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 10px;
}

.pmb-benefit-card p{
    font-size: 12.5px;
    line-height: 1.75;
    color: var(--color5);
    margin: 0;
}

.pmb-main-row{
    margin-top: 10px;
}

.pmb-panel{
    height: 100%;
    border-radius: 24px;
    padding: 30px;
}

.pmb-panel-heading{
    margin-bottom: 24px;
}

.pmb-panel-heading h2{
    font-size: 24px;
    font-weight: 800;
    color: var(--color1);
    margin: 0;
}

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

.pmb-flow-list{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.pmb-flow-item{
    position: relative;
    text-align: center;
    padding-top: 6px;
}

.pmb-flow-item:not(:last-child)::after{
    content: '';
    position: absolute;
    top: 43px;
    left: calc(50% + 42px);
    width: calc(100% - 66px);
    height: 2px;
    border-top: 2px dashed rgba(11,44,102,.18);
}

.pmb-flow-icon{
    width: 74px;
    height: 74px;
    border-radius: 24px;
    margin: 0 auto 14px;
    background: rgba(11,44,102,.06);
    border: 1px solid rgba(11,44,102,.08);
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 12px 26px rgba(11,44,102,.06);
}

.pmb-flow-item strong{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin: 0 auto 12px;
    background: var(--color1);
    color: var(--color4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.pmb-flow-item h3{
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 8px;
}

.pmb-flow-item p{
    font-size: 12px;
    line-height: 1.7;
    color: var(--color5);
    margin: 0;
}

/* =========================================================
PATH
========================================================= */

.pmb-path-list{
    display: grid;
    gap: 16px;
}

.pmb-path-item{
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 15px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(11,44,102,.06);
}

.pmb-path-item > i{
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(11,44,102,.07);
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.pmb-path-featured{
    background: rgba(245,197,24,.16);
    border-color: rgba(245,197,24,.34);
}

.pmb-path-featured > i{
    background: var(--color1);
    color: var(--color2);
}

.pmb-path-item h3{
    font-size: 14px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 6px;
}

.pmb-path-item p{
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--color5);
    margin: 0;
}

/* =========================================================
DETAIL PANELS
========================================================= */

.pmb-detail-grid{
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.pmb-check-list{
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 11px;
}

.pmb-check-list li{
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--color1);
    font-weight: 700;
}

.pmb-check-list li::before{
    content: '\f00c';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: #0f9e9e;
}

.pmb-check-list sup,
.pmb-note sup{
    color: #d49b00;
    font-weight: 900;
}

.pmb-note{
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(245,197,24,.14);
    color: var(--color5);
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0;
}

.pmb-cost-panel{
    background:
        radial-gradient(circle at top right, rgba(245,197,24,.16), transparent 34%),
        rgba(255,255,255,.86);
}

.pmb-cost-entry{
    border-radius: 16px;
    padding: 16px;
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(11,44,102,.08);
}

.pmb-cost-highlight{
    margin-bottom: 14px;
    background: var(--color1);
    color: var(--color4);
}

.pmb-cost-entry span{
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: rgba(11,44,102,.62);
    margin-bottom: 7px;
}

.pmb-cost-highlight span{
    color: rgba(255,255,255,.72);
}

.pmb-cost-highlight strong{
    display: block;
    color: var(--color2);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 6px;
}

.pmb-cost-entry h3{
    font-size: 15px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 14px;
}

.pmb-cost-entry p{
    font-size: 12.5px;
    line-height: 1.6;
    margin: 0;
}

.pmb-cost-tabs{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pmb-cost-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(11,44,102,.08);
}

.pmb-cost-row small{
    color: var(--color5);
    font-size: 12px;
    font-weight: 700;
}

.pmb-cost-row strong{
    color: var(--color1);
    font-size: 13px;
    font-weight: 900;
    text-align: right;
}

.pmb-cost-note{
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(15,158,158,.10);
    color: var(--color5);
    font-size: 13px;
    line-height: 1.7;
}

.pmb-scholarship-panel{
    display: flex;
    flex-direction: column;
}

.pmb-scholarship-icon{
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: rgba(245,197,24,.18);
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.pmb-scholarship-panel p{
    color: var(--color5);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.pmb-panel-link{
    margin-top: auto;
    width: fit-content;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(11,44,102,.07);
    color: var(--color1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
}

.pmb-panel-link:hover{
    background: var(--color2);
    color: var(--color1);
    transform: translateY(-2px);
}

.pmb-panel-link i{
    transition: var(--transition);
}

.pmb-panel-link:hover i{
    transform: translateX(4px);
}

@media(max-width:1199px){

    .pmb-benefit-grid{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pmb-flow-list{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pmb-flow-item::after{
        display: none;
    }

    .pmb-detail-grid{
        grid-template-columns: 1fr;
    }
}

@media(max-width:991px){

    .pmb-info-section{
        padding: 64px 0 72px;
    }

    .pmb-benefit-grid,
    .pmb-flow-list{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:768px){

    .pmb-section-heading h2{
        font-size: 28px;
    }

    .pmb-benefit-grid,
    .pmb-flow-list,
    .pmb-cost-tabs{
        grid-template-columns: 1fr;
    }

    .pmb-panel{
        border-radius: 20px;
        padding: 24px 20px;
    }

    .pmb-path-item{
        grid-template-columns: 42px 1fr;
    }
}

@media(max-width:480px){

    .pmb-info-section{
        padding: 54px 0 62px;
    }

    .pmb-benefit-card{
        padding: 22px 16px;
    }

    .pmb-flow-icon{
        width: 66px;
        height: 66px;
        font-size: 24px;
    }

    .pmb-cost-highlight strong{
        font-size: 21px;
    }
}
