/* =========================================================
HOME HERO - PROPORTIONAL FINAL
========================================================= */

.home-hero{
    position: relative;
    overflow: hidden;
    height: calc(100vh - 88px);
    min-height: 640px;
    max-height: calc(100vh - 88px);
    background:
        radial-gradient(circle at top left, rgba(245,197,24,.15), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f5f8ff 45%, #eef4ff 100%);
    padding: 48px 0 0;
    margin-top: 0;
    display: flex;
    align-items: flex-end;
}

.home-hero::before{
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(11,44,102,.04);
    right: -250px;
    top: -250px;
    z-index: 1;
}

.home-hero .container{
    position: relative;
    z-index: 2;
    max-width: 1320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-hero .row.align-items-center{
    flex: 1;
    align-items: center !important;
}

section{
    scroll-margin-top: 110px;
}

/* =========================================================
CONTENT
========================================================= */

.home-hero-content{
    padding-top: 28px;
    padding-bottom: 36px;
    animation: fadeUp 1s ease;
}

.home-hero-subtitle{
    font-size: 18px;
    font-weight: 700;
    color: var(--color1);
    line-height: 1.5;
    padding-top: 24px;
    margin-bottom: 14px;
}

.home-hero-title{
    font-size: 32px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
    color: var(--color1);
    margin-bottom: 20px;
    max-width: 650px;
}

.home-hero-desc{
    font-size: 16px;
    line-height: 1.85;
    color: var(--color5);
    max-width: 560px;
    margin-bottom: 28px;
}

.home-hero-buttons{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.home-hero-btn-primary,
.home-hero-btn-secondary{
    padding: 16px 26px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.home-hero-btn-primary{
    background: var(--color1);
    color: var(--color4);
    box-shadow: 0 14px 30px rgba(11,44,102,.18);
}

.home-hero-btn-primary:hover{
    transform: translateY(-4px);
    color: var(--color4);
}

.home-hero-btn-secondary{
    border: 2px solid rgba(11,44,102,.2);
    color: var(--color1);
    background: rgba(255,255,255,.7);
}

.home-hero-btn-secondary:hover{
    background: var(--color1);
    color: var(--color4);
}

.home-hero-users{
    display: flex;
    align-items: center;
    gap: 16px;
}

.home-hero-users img{
    width: 130px;
}

.home-hero-users-text{
    font-size: 15px;
    line-height: 1.6;
    color: var(--color5);
}

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

.home-hero-visual{
    position: relative;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: fadeLeft 1s ease;
}

.home-hero-main-image{
    position: absolute;
    left: 0;
    right: 60px;
    bottom: 0;
    height: 78%;
    max-height: 78%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

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

/* =========================================================
STATISTIC
========================================================= */

.home-hero-statistic{
    position: relative;
    z-index: 5;
    margin-top: 0;
    margin-bottom: 22px;
    padding: 24px 28px;
    background: rgba(255,255,255,.85);
    border-radius: 26px;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow1);
}

.home-hero-statistic-item{
    display: flex;
    align-items: center;
    gap: 18px;
}

.home-hero-statistic-icon{
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(11,44,102,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color1);
    font-size: 22px;
}

.home-hero-statistic-text h3{
    font-size: 26px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 2px;
}

.home-hero-statistic-text p{
    margin: 0;
    color: var(--color5);
    font-size: 13px;
    line-height: 1.5;
}

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

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

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

@keyframes fadeRight{
    from{
        opacity: 0;
        transform: translateX(-50px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media(max-width:1199px){

    .home-hero{
        height: auto;
        max-height: none;
        min-height: auto;
        padding: 48px 0 36px;
    }

    .home-hero .container{
        height: auto;
    }

    .home-hero-content{
        padding-top: 0;
        padding-bottom: 40px;
    }

    .home-hero-title{
        font-size: 32px;
    }

    .home-hero-subtitle{
        padding-top: 12px;
    }

    .home-hero-visual{
        height: 560px;
        min-height: 560px;
    }

    .home-hero-main-image{
        right: 30px;
    }
}

@media(max-width:991px){

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

    .home-hero-content{
        padding-bottom: 26px;
    }

    .home-hero-title{
        font-size: 32px;
        max-width: 100%;
    }

    .home-hero-subtitle{
        padding-top: 0;
    }

    .home-hero-desc{
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-buttons{
        justify-content: center;
        flex-wrap: wrap;
    }

    .home-hero-users{
        justify-content: center;
    }

    .home-hero-visual{
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
    }

    .home-hero-main-image{
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        max-height: none;
        margin-bottom: -2px;
        z-index: 4;
    }

    .home-hero-main-image img{
        width: auto;
        height: auto;
        max-height: 420px;
    }

    .home-hero-statistic{
        margin-top: 34px;
        margin-bottom: 0;
    }

    .home-hero-statistic-item{
        margin-bottom: 24px;
    }
}

@media(max-width:768px){

    .home-hero{
        padding: 34px 0 28px;
    }

    .home-hero-title{
        font-size: 32px;
        line-height: 1.2;
    }

    .home-hero-desc{
        font-size: 15px;
    }

    .home-hero-buttons{
        flex-direction: column;
    }

    .home-hero-btn-primary,
    .home-hero-btn-secondary{
        width: 100%;
        justify-content: center;
    }

    .home-hero-main-image img{
        max-height: 330px;
    }

    .home-hero-statistic{
        padding: 22px;
    }

    .home-hero-statistic-item{
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:480px){

    .home-hero-title{
        font-size: 29px;
    }

    .home-hero-main-image img{
        max-height: 290px;
    }
}

/* =========================================================
HOME PROGRAM & REASON SECTION
========================================================= */

.home-program-reason-section{
    position: relative;
    overflow: hidden;
    padding: 72px 0 76px;
    background:
        radial-gradient(circle at top left, rgba(245,197,24,.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(11,44,102,.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f6faff 48%, #eef5ff 100%);
}

.home-section-heading{
    margin-bottom: 34px;
}

.home-section-heading h2{
    font-size: 32px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 12px;
    letter-spacing: -.5px;
}

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

/* PROGRAM CARD */

.home-program-row{
    margin-bottom: 42px;
}

.home-program-card{
    height: 100%;
    display: grid;
    grid-template-columns: 46% 54%;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(11,44,102,.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(11,44,102,.07);
    transition: var(--transition);
}

.home-program-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(11,44,102,.12);
}

.home-program-img{
    height: 100%;
    min-height: 260px;
    overflow: hidden;
}

.home-program-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.home-program-card:hover .home-program-img img{
    transform: scale(1.06);
}

.home-program-content{
    position: relative;
    padding: 34px 34px 28px 46px;
}

.home-program-icon{
    position: absolute;
    top: 34px;
    left: -28px;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--color1), var(--color7));
    color: var(--color4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 14px 28px rgba(11,44,102,.18);
}

.home-program-content h3{
    font-size: 25px;
    font-weight: 800;
    line-height: 1.18;
    color: var(--color1);
    margin-bottom: 18px;
}

.home-program-content p{
    font-size: 13px;
    line-height: 1.75;
    color: var(--color5);
    margin-bottom: 18px;
}

.home-program-content span{
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color1);
    margin-bottom: 8px;
}

.home-program-badge{
    display: block;
    width: min(100%, 220px);
    margin-bottom: 20px;
}

.home-program-badge img{
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.home-program-link{
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    font-size: 14px;
    font-weight: 800;
    color: var(--color1);
}

.home-program-link i{
    transition: var(--transition);
}

.home-program-link:hover{
    color: var(--color7);
}

.home-program-link:hover i{
    transform: translateX(6px);
}

/* REASON WRAPPER */

.home-reason-wrapper{
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.95), transparent 36%),
        linear-gradient(135deg, #edf6ff 0%, #f8fbff 58%, #eaf4ff 100%);
    border-radius: 26px;
    padding: 38px 42px;
    box-shadow: 0 18px 46px rgba(11,44,102,.07);
    border: 1px solid rgba(11,44,102,.05);
}

.home-reason-content h2{
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 32px;
}

.home-reason-item{
    height: 100%;
    text-align: center;
    padding: 0 4px;
    transition: var(--transition);
}

.home-reason-item:hover{
    transform: translateY(-8px);
}

.home-reason-icon{
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--color4);
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 12px 28px rgba(11,44,102,.08);
}

.home-reason-item h4{
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
    color: var(--color1);
    margin-bottom: 12px;
}

.home-reason-item p{
    font-size: 10px;
    line-height: 1.7;
    color: var(--color5);
    margin: 0;
}

/* VIDEO CARD */

.home-reason-video{
    background: rgba(255,255,255,.55);
    border-radius: 20px;
    padding: 0;
}

.home-reason-video-img{
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 18px;
}

.home-reason-video-img img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform .55s ease;
}

.home-reason-video:hover .home-reason-video-img img{
    transform: scale(1.06);
}

.home-video-play{
    position: absolute;
    inset: 0;
    margin: auto;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--color4);
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 14px 30px rgba(11,44,102,.18);
}

.home-video-play:hover{
    background: var(--color2);
    color: var(--color1);
    transform: scale(1.08);
}

.home-reason-video h4{
    font-size: 16px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 10px;
}

.home-reason-video p{
    font-size: 13px;
    line-height: 1.7;
    color: var(--color5);
    margin-bottom: 14px;
}

.home-video-link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 800;
    color: var(--color1);
}

.home-video-link:hover i{
    transform: translateX(6px);
}

/* ANIMATION */

.fade-up{
    opacity: 0;
    animation: homeFadeUp .8s ease forwards;
}

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

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

/* RESPONSIVE */

@media(max-width:1199px){

    .home-program-content{
        padding: 30px 28px 26px 42px;
    }

    .home-program-content h3{
        font-size: 22px;
    }

    .home-reason-wrapper{
        padding: 34px 30px;
    }
}

@media(max-width:991px){

    .home-program-reason-section{
        padding: 60px 0;
    }

    .home-program-card{
        grid-template-columns: 42% 58%;
    }

    .home-reason-content h2{
        font-size: 24px;
    }

    .home-reason-video{
        margin-top: 22px;
        text-align: center;
    }

    .home-reason-video-img img{
        height: 240px;
    }
}

@media(max-width:768px){

    .home-section-heading h2{
        font-size: 27px;
    }

    .home-section-heading p{
        font-size: 14px;
        line-height: 1.7;
    }

    .home-program-card{
        grid-template-columns: 1fr;
    }

    .home-program-img{
        min-height: 230px;
    }

    .home-program-content{
        padding: 30px 24px 26px;
        text-align: center;
    }

    .home-program-icon{
        position: relative;
        top: auto;
        left: auto;
        margin: -62px auto 18px;
    }

    .home-program-link{
        margin: 0 auto;
    }

    .home-program-badge{
        margin-left: auto;
        margin-right: auto;
    }

    .home-reason-wrapper{
        padding: 30px 20px;
        border-radius: 22px;
    }

    .home-reason-icon{
        width: 66px;
        height: 66px;
        font-size: 26px;
    }

    .home-reason-video-img img{
        height: 200px;
    }
}

@media(max-width:480px){

    .home-program-reason-section{
        padding: 48px 0;
    }

    .home-program-content h3{
        font-size: 22px;
    }

    .home-program-content p{
        font-size: 12.5px;
    }

    .home-program-badge{
        width: min(100%, 190px);
    }

    .home-reason-content h2{
        font-size: 22px;
    }

    .home-reason-item h4{
        font-size: 13px;
    }

    .home-reason-item p{
        font-size: 11.5px;
    }
}

/* =========================================================
HOME EXPERIENCE & TESTIMONIAL SECTION
========================================================= */

.home-experience-section{
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        radial-gradient(circle at top right, rgba(11,44,102,.07), transparent 32%),
        radial-gradient(circle at bottom left, rgba(245,197,24,.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #eef6ff 100%);
}

.home-experience-content{
    position: relative;
}

.home-experience-content h2{
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 38px;
}

/* TIMELINE */

.home-experience-timeline{
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    padding-top: 16px;
}

.home-experience-line{
    position: absolute;
    top: 64px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: var(--color1);
    border-radius: 50px;
    opacity: .95;
    z-index: 1;
}

.home-experience-line::before,
.home-experience-line::after{
    content: '';
    position: absolute;
    top: 50%;
    width: 13px;
    height: 13px;
    background: var(--color1);
    border: 3px solid var(--color4);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 6px 16px rgba(11,44,102,.16);
}

.home-experience-line::before{
    left: 16%;
}

.home-experience-line::after{
    right: 16%;
}

.home-experience-item{
    position: relative;
    text-align: center;
    z-index: 2;
    animation: homeStepFloat 4s ease-in-out infinite;
}

.home-experience-item:nth-child(3){
    animation-delay: .15s;
}

.home-experience-item:nth-child(4){
    animation-delay: .3s;
}

.home-experience-item:nth-child(5){
    animation-delay: .45s;
}

.home-experience-item:nth-child(6){
    animation-delay: .6s;
}

.home-experience-item:nth-child(7){
    animation-delay: .75s;
}

.home-experience-photo{
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    border-radius: 50%;
    padding: 4px;
    background: var(--color4);
    box-shadow: 0 14px 32px rgba(11,44,102,.13);
}

.home-experience-photo img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.home-experience-photo span{
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 26px;
    height: 26px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--color1);
    color: var(--color4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    border: 3px solid var(--color4);
    box-shadow: 0 8px 18px rgba(11,44,102,.18);
}

.home-experience-item h4{
    min-height: 42px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 10px;
}

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

/* TESTIMONIAL */

.home-testimonial-box{
    min-height: 330px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.95), transparent 42%),
        linear-gradient(135deg, #edf6ff 0%, #f9fcff 100%);
    border-radius: 28px;
    padding: 34px 32px 28px;
    box-shadow: 0 20px 50px rgba(11,44,102,.08);
    border: 1px solid rgba(11,44,102,.06);
}

.home-testimonial-box h3{
    font-size: 24px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 22px;
}

.home-testimonial-item p{
    font-size: 13px;
    line-height: 1.8;
    color: var(--color9);
    margin-bottom: 24px;
}

.home-testimonial-user{
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-testimonial-user img{
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 22px rgba(11,44,102,.12);
}

.home-testimonial-user h4{
    font-size: 14px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 4px;
}

.home-testimonial-user span{
    font-size: 12px;
    color: var(--color5);
}

.home-testimonial-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
}

.home-testimonial-indicators{
    position: static;
    margin: 0;
    display: flex;
    gap: 8px;
}

.home-testimonial-indicators button{
    width: 8px !important;
    height: 8px !important;
    border-radius: 50%;
    border: none !important;
    background: var(--color1) !important;
    opacity: .25;
    margin: 0 !important;
}

.home-testimonial-indicators button.active{
    width: 22px !important;
    border-radius: 20px;
    opacity: 1;
}

.home-testimonial-controls{
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-testimonial-controls button{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--color4);
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(11,44,102,.12);
    transition: var(--transition);
}

.home-testimonial-controls button:hover{
    background: var(--color1);
    color: var(--color4);
    transform: translateY(-3px);
}

.home-testimonial-box .carousel-item{
    transition: transform .75s ease, opacity .75s ease;
}

/* ANIMATION */

@keyframes homeStepFloat{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-6px);
    }
    100%{
        transform: translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width:1199px){

    .home-experience-section{
        padding: 62px 0;
    }

    .home-experience-timeline{
        gap: 20px;
    }

    .home-experience-photo{
        width: 86px;
        height: 86px;
    }

    .home-experience-line{
        top: 59px;
    }
}

@media(max-width:991px){

    .home-experience-content h2{
        font-size: 26px;
    }

    .home-experience-timeline{
        grid-template-columns: repeat(3, 1fr);
        row-gap: 42px;
    }

    .home-experience-line{
        display: none;
    }

    .home-testimonial-box{
        margin-top: 26px;
    }
}

@media(max-width:768px){

    .home-experience-section{
        padding: 54px 0;
    }

    .home-experience-content h2{
        font-size: 24px;
        margin-bottom: 30px;
    }

    .home-experience-timeline{
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 22px;
    }

    .home-experience-photo{
        width: 82px;
        height: 82px;
        margin-bottom: 22px;
    }

    .home-experience-item h4{
        font-size: 13px;
        min-height: auto;
    }

    .home-experience-item p{
        font-size: 11.5px;
    }

    .home-testimonial-box{
        padding: 28px 24px;
        border-radius: 24px;
    }

    .home-testimonial-bottom{
        gap: 18px;
    }
}

@media(max-width:480px){

    .home-experience-timeline{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-experience-photo{
        width: 92px;
        height: 92px;
    }

    .home-testimonial-box h3{
        font-size: 22px;
    }

    .home-testimonial-bottom{
        flex-direction: column;
        align-items: flex-start;
    }

    .home-testimonial-controls{
        align-self: flex-end;
    }
}

/* =========================================================
HOME INFO SECTION
========================================================= */

.home-info-section{
    position: relative;
    overflow: hidden;
    padding: 78px 0 84px;
    background:
        radial-gradient(circle at top left, rgba(11,44,102,.06), transparent 28%),
        radial-gradient(circle at bottom right, rgba(245,197,24,.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 52%, #eef6ff 100%);
}

.home-info-card{
    height: 100%;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(11,44,102,.07);
    border-radius: 26px;
    padding: 36px 34px 34px;
    box-shadow: 0 18px 46px rgba(11,44,102,.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: var(--transition);
}

.home-info-card:hover{
    transform: translateY(-7px);
    box-shadow: 0 26px 58px rgba(11,44,102,.11);
}

.home-info-heading{
    margin-bottom: 26px;
}

.home-info-heading-split,
.home-store-heading{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.home-info-heading-split > i{
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(11,44,102,.07);
    color: var(--color1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 22px;
}

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

.home-info-heading h2{
    font-size: 30px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 8px;
}

.home-info-heading p{
    font-size: 15px;
    color: var(--color5);
    line-height: 1.6;
    margin: 0;
}

/* PRESS RELEASE */

.home-info-press{
    background:
        radial-gradient(circle at top right, rgba(45,139,255,.11), transparent 34%),
        rgba(255,255,255,.82);
}

.home-info-press .home-info-heading-split > i{
    background: rgba(45,139,255,.12);
    color: #1f7ae0;
}

.home-press-list{
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.home-press-item{
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: center;
    padding: 10px;
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(11,44,102,.07);
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(11,44,102,.06);
    transition: var(--transition);
}

.home-press-featured{
    grid-template-columns: 180px 1fr;
    padding: 12px;
    background: var(--color1);
    border-color: rgba(11,44,102,.18);
}

.home-press-item:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(11,44,102,.1);
}

.home-press-item > img{
    width: 100%;
    height: 68px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform .55s ease;
}

.home-press-item:hover > img{
    transform: scale(1.04);
}

.home-press-featured > img{
    height: 132px;
}

.home-press-content span{
    display: inline-flex;
    width: fit-content;
    min-height: 24px;
    padding: 5px 10px;
    margin-bottom: 7px;
    border-radius: 999px;
    background: rgba(245,197,24,.18);
    color: var(--color1);
    font-size: 10.5px;
    font-weight: 800;
}

.home-press-featured .home-press-content span{
    background: rgba(245,197,24,.22);
    color: var(--color2);
}

.home-press-content time{
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color5);
}

.home-press-featured .home-press-content time{
    color: rgba(255,255,255,.68);
}

.home-press-content h3{
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.home-press-content h3 a{
    color: var(--color1);
}

.home-press-featured .home-press-content h3{
    font-size: 18px;
    line-height: 1.38;
}

.home-press-featured .home-press-content h3 a{
    color: var(--color4);
}

.home-press-content h3 a:hover{
    color: var(--color7);
}

.home-press-featured .home-press-content h3 a:hover{
    color: var(--color2);
}

/* PENGUMUMAN */

.home-info-pengumuman{
    background:
        radial-gradient(circle at top left, rgba(245,197,24,.14), transparent 36%),
        rgba(255,255,255,.82);
}

.home-info-pengumuman .home-info-heading-split > i{
    background: rgba(245,197,24,.20);
}

.home-pengumuman-list{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    counter-reset: pengumuman;
}

.home-pengumuman-item{
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(11,44,102,.07);
    border-radius: 18px;
    transition: var(--transition);
}

.home-pengumuman-item:hover{
    transform: translateX(5px);
    border-color: rgba(245,197,24,.36);
    box-shadow: 0 16px 30px rgba(11,44,102,.08);
}

.home-pengumuman-icon{
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--color1);
    color: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(11,44,102,.14);
}

.home-pengumuman-icon span{
    color: var(--color2);
    font-size: 16px;
    font-weight: 900;
}

.home-pengumuman-content h3{
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 6px;
}

.home-pengumuman-content h3 a{
    color: var(--color1);
}

.home-pengumuman-content h3 a:hover{
    color: var(--color7);
}

.home-pengumuman-content p{
    font-size: 12px;
    font-weight: 600;
    color: var(--color5);
    margin: 0;
}

/* STORE */

.home-info-store-panel{
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 28px;
    border: 1px solid rgba(11,44,102,.08);
    background:
        radial-gradient(circle at top left, rgba(245,197,24,.16), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f5f9ff 58%, #eef6ff 100%);
    box-shadow: 0 20px 52px rgba(11,44,102,.09);
}

.home-store-heading{
    margin-bottom: 28px;
}

.home-store-heading .home-info-btn{
    margin: 0;
    flex: 0 0 auto;
}

.home-store-heading h2{
    font-size: 30px;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 8px;
}

.home-store-heading p{
    max-width: 620px;
    font-size: 15px;
    color: var(--color5);
    line-height: 1.65;
    margin: 0;
}

.home-store-scroll{
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-color: rgba(11,44,102,.22) transparent;
}

.home-store-scroll::-webkit-scrollbar{
    height: 8px;
}

.home-store-scroll::-webkit-scrollbar-track{
    background: rgba(11,44,102,.06);
    border-radius: 999px;
}

.home-store-scroll::-webkit-scrollbar-thumb{
    background: rgba(11,44,102,.22);
    border-radius: 999px;
}

.home-store-item{
    position: relative;
    flex: 0 0 220px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--color1);
    padding: 12px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(247,251,255,.86) 100%);
    border: 1px solid rgba(11,44,102,.08);
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(11,44,102,.07);
    transition: var(--transition);
    isolation: isolate;
    overflow: hidden;
}

.home-store-item::before{
    content: "";
    position: absolute;
    inset: auto 16px -34px;
    height: 68px;
    border-radius: 999px;
    background: rgba(245,197,24,.16);
    filter: blur(18px);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.home-store-item:hover{
    transform: translateY(-5px);
    border-color: rgba(245,197,24,.42);
    box-shadow: 0 20px 42px rgba(11,44,102,.12);
}

.home-store-item:hover::before{
    opacity: 1;
}

.home-store-img{
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 12px 26px rgba(11,44,102,.07);
}

.home-store-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.home-store-img::after{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11,44,102,0) 46%, rgba(11,44,102,.28) 100%),
        radial-gradient(circle at top left, rgba(255,255,255,.45), transparent 36%);
    pointer-events: none;
}

.home-store-item:hover .home-store-img img{
    transform: scale(1.08) rotate(-1deg);
}

.home-store-badge{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 20px);
    min-height: 28px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    color: var(--color1);
    font-size: 10.5px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(11,44,102,.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-store-content{
    min-height: 48px;
    display: flex;
    align-items: flex-start;
}

.home-store-content h3{
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    color: var(--color1);
    margin: 0;
    transition: var(--transition);
}

.home-store-item:hover .home-store-content h3{
    color: #0f766e;
}

.store-bg-1 .home-store-img{
    background: #dff7f4;
}

.store-bg-2 .home-store-img{
    background: #f1f8df;
}

.store-bg-3 .home-store-img{
    background: #ffe4d9;
}

.store-bg-4 .home-store-img{
    background: #ffd8cc;
}

/* BUTTON */

.home-info-btn{
    width: fit-content;
    min-height: 42px;
    border-radius: 999px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color1);
    background: rgba(11,44,102,.07);
    border: 1px solid rgba(11,44,102,.12);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    margin: 0 auto;
    box-shadow: 0 8px 18px rgba(11,44,102,.08);
}

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

.home-info-btn:hover{
    background: var(--color2);
    border-color: var(--color2);
    color: var(--color1);
    transform: translateY(-2px);
}

.home-info-btn:hover i{
    transform: translateX(4px);
}

.home-info-btn-green{
    background: rgba(11,44,102,.07);
}

.home-info-btn-blue{
    background: rgba(11,44,102,.07);
}

/* RESPONSIVE */

@media(max-width:1399px){

    .home-store-content h3{
        font-size: 14px;
    }
}

@media(max-width:1199px){

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

    .home-info-card{
        padding: 32px 28px;
    }

    .home-press-featured{
        grid-template-columns: 150px 1fr;
    }

    .home-press-featured > img{
        height: 118px;
    }

    .home-store-item{
        flex-basis: 210px;
    }
}

@media(max-width:991px){

    .home-info-heading h2{
        font-size: 28px;
    }

    .home-press-list{
        gap: 12px;
    }

    .home-pengumuman-item{
        grid-template-columns: 46px 1fr;
    }

    .home-press-featured{
        grid-template-columns: 180px 1fr;
    }

    .home-store-heading{
        align-items: flex-end;
    }
}

@media(max-width:768px){

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

    .home-info-card{
        border-radius: 24px;
        padding: 28px 22px;
    }

    .home-info-heading{
        text-align: center;
    }

    .home-info-heading-split{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .home-info-heading h2{
        font-size: 25px;
    }

    .home-info-heading p{
        font-size: 14px;
    }

    .home-press-list{
        margin-bottom: 28px;
    }

    .home-press-item{
        grid-template-columns: 82px 1fr;
        gap: 12px;
    }

    .home-press-featured{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-press-item > img{
        height: 62px;
    }

    .home-press-featured > img{
        height: 190px;
    }

    .home-press-content span{
        margin-left: auto;
        margin-right: auto;
    }

    .home-pengumuman-item{
        grid-template-columns: 44px 1fr;
        gap: 14px;
        align-items: flex-start;
    }

    .home-pengumuman-icon{
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .home-info-store-panel{
        padding: 28px 22px;
        border-radius: 24px;
    }

    .home-store-heading{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
    }

    .home-store-heading .home-info-btn{
        margin: 0 auto;
    }

    .home-store-scroll{
        gap: 14px;
        padding-bottom: 14px;
    }

    .home-store-item{
        flex-basis: 210px;
        text-align: center;
    }

    .home-store-img{
        width: 100%;
    }

    .home-store-content{
        justify-content: center;
        min-height: 44px;
    }

    .home-info-btn{
        min-height: 40px;
        padding: 9px 16px;
        font-size: 12.5px;
        border-radius: 12px;
    }
}

@media(max-width:480px){

    .home-info-card{
        padding: 24px 18px;
    }

    .home-press-list{
        gap: 10px;
    }

    .home-press-item{
        grid-template-columns: 72px 1fr;
        padding: 8px;
    }

    .home-press-featured{
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .home-press-item > img{
        height: 56px;
        border-radius: 10px;
    }

    .home-press-featured > img{
        height: 160px;
    }

    .home-press-content h3{
        font-size: 13px;
    }

    .home-press-featured .home-press-content h3{
        font-size: 15px;
    }

    .home-pengumuman-content h3{
        font-size: 13px;
    }

    .home-pengumuman-content p{
        font-size: 12px;
    }

    .home-info-store-panel{
        padding: 24px 18px;
    }

    .home-store-item{
        flex-basis: 178px;
        padding: 12px;
    }

    .home-store-content h3{
        font-size: 12px;
    }

    .home-store-badge{
        top: 8px;
        right: 8px;
        max-width: calc(100% - 16px);
        min-height: 25px;
        padding: 6px 9px;
        font-size: 9.5px;
    }
}
