
/* =========================================
    RESET / GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Outfit", sans-serif;

    background: #06101d;

    color: #f8fafc;
}


/* =========================================
   ABOUT SYSTEM
   GLOBAL BACKGROUND
========================================= */

.about-system {
    position: relative;

    width: 100%;

    overflow: hidden;

    isolation: isolate;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(37, 99, 235, .10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #010817 0%,
            #020b1c 35%,
            #031126 65%,
            #010817 100%
        );
}


/* =========================================
   GLOBAL BACKGROUND
========================================= */

.about-background {
    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: 0;
}


/* =========================================
   GLOBAL ORBS
========================================= */

.about-orb {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(65px);

    will-change: transform;

    opacity: .7;

    mix-blend-mode: screen;
}


/* =========================================
   ORB 1
========================================= */

.orb-1 {

    width: 420px;
    height: 420px;

    top: 4%;
    left: -180px;

    background:
        radial-gradient(
            circle,
            rgba(37, 99, 235, .38),
            transparent 70%
        );
}


/* =========================================
   ORB 2
========================================= */

.orb-2 {

    width: 500px;
    height: 500px;

    top: 38%;
    right: -180px;

    background:
        radial-gradient(
            circle,
            rgba(14, 165, 233, .30),
            transparent 70%
        );
}


/* =========================================
   ORB 3
========================================= */

.orb-3 {

    width: 300px;
    height: 300px;

    top: 70%;
    left: 25%;

    background:
        radial-gradient(
            circle,
            rgba(56, 189, 248, .20),
            transparent 70%
        );
}



/* =========================================
   GLOBAL FLOWING LINE
========================================= */

.about-flow {

    position: absolute;

    top: 0;
    left: 50%;

    width: 1400px;
    height: 3000px;

    transform:
        translateX(-50%);

    overflow: visible;

    pointer-events: none;

    z-index: 1;

    opacity: .8;
}


/* =========================================
   MAIN FLOW
========================================= */

.flow-main,
.flow-glow {

    fill: none;

    stroke-linecap: round;

}


/* =========================================
   MAIN LINE
========================================= */

.flow-main {

    stroke:
        rgba(56, 189, 248, .20);

    stroke-width: 1.5;

}


/* =========================================
   GLOW LINE
========================================= */

.flow-glow {

    stroke:
        rgba(56, 189, 248, .55);

    stroke-width: 2;

    filter:
        drop-shadow(
            0 0 8px
            rgba(56, 189, 248, .45)
        );

    opacity: .35;

}





/* ==================================================
   NAVBAR
================================================== */

.navbar { position: fixed; top: 0; left: 0; width: 100%; height: 78px; padding: 0 7%; display: flex; align-items: center; justify-content: space-between; z-index: 9999; opacity: 0; transform: translateY(-25px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1), background .3s ease, border-color .3s ease; background: linear-gradient( 180deg, rgba(2, 8, 23, .88), rgba(2, 8, 23, .55) ); border-bottom: 1px solid rgba(56, 189, 248, .08); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); } 
/* NAVBAR MUNCUL */ .navbar.show { opacity: 1; transform: translateY(0); }


.logo {

    font-size: 25px;

    font-weight: 800;

    letter-spacing: 3px;

    color: #38bdf8;

    text-shadow:
        0 0 10px rgba(56, 189, 248, .5),
        0 0 25px rgba(37, 99, 235, .25);
}


.hamburger {
    display: none;
}


.nav-menu {

    display: flex;
    margin-right: 0;
    gap: 35px;
}


.nav-menu a {

    color: #94a3b8;

    text-decoration: none;

    font-size: 14px;
    
    
}

.nav-menu a.active {
    color: var(--blue-primary);
    opacity: 1;
}

.nav-menu.open a.active {
    color: var(--blue-primary) !important;
}

.navbar .nav-menu a::after{
    content:' ';
    display : block;
    border-bottom : 0.1rem solid #0D6EFD ;
    padding-bottom: 0.5rem;
    transform:  scalex(0);
    transition:0.2s linear;
}

.navbar .nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-button {

    padding: 11px 23px;

    border: 1px solid rgba(56, 189, 248, .6);

    border-radius: 30px;

    background: rgba(14, 42, 75, .25);

    color: #e0f2fe;

    cursor: pointer;
    transition: .3s;
}


/* =========================================
   ABOUT CONTENT
========================================= */

.about-content {

    position: relative;

    z-index: 5;

}


/* =========================================
   IMPORTANT
   SEMUA SECTION TRANSPARENT
========================================= */

.about-system .about-zigmax,
.about-system .about-why,
.about-system .about-purpose,
.about-system .about-believe,
.about-system .about-approach {

    background: transparent;

}



/* =========================================
   ABOUT ZIGMAX
========================================= */

/* =========================================
   ABOUT ZIGMAX
========================================= */

.about-zigmax {

    position: relative;

    min-height: 82vh;

    padding: 100px 8%;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    opacity: 0;

        margin-top:5rem;

    transform:
        translateY(35px);

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22, 1, .36, 1);
}


.about-zigmax.show {

    opacity: 1;

    transform:
        translateY(0);

}

/* =========================================
   ABOUT CONTENT
========================================= */

.about-intro {

    position: relative;

    z-index: 5;

    width: min(850px, 100%);

    text-align: center;

}


.about-label {

    display: inline-block;

    margin-bottom: 22px;

    color: #38bdf8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    opacity: 0;

    transform:
        translateY(25px);

}


.about-intro h2 {

    margin: 0;

    color: #e0f2fe;

    font-size:
        clamp(42px, 6vw, 76px);

    line-height: 1.04;

    letter-spacing: -3px;

    opacity: 0;

    transform:
        translateY(35px);

}


.about-intro h2 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #38bdf8,
            #60a5fa,
            #2563eb
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


.about-intro p {

    max-width: 650px;

    margin: 30px auto 0;

    color: #8fa9c5;

    font-size: 16px;

    line-height: 1.8;

    opacity: 0;

    transform:
        translateY(25px);

}



/* =========================================
   WHY ZIGMAX
========================================= */

.about-why {

    position: relative;

    min-height: 88vh;

    padding: 120px 8%;

    overflow: hidden;

}


/* =========================================
   CONTAINER
========================================= */

.about-why-container {

    position: relative;

    z-index: 5;

    width: min(1180px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, .85fr);

    gap: 90px;

    align-items: center;

}


/* =========================================
   LEFT CONTENT
========================================= */

.about-why-text {

    max-width: 590px;

    margin-left: -25px;

}


.about-section-label {

    display: inline-block;

    margin-bottom: 20px;

    color: #38bdf8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

    opacity: 0;

    transform:
        translateY(25px);

}


.about-why-text h2 {

    margin: 0;

    color: #e0f2fe;

    font-size:
        clamp(40px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2.8px;

    opacity: 0;

    transform:
        translateY(30px);

}


.about-why-text h2 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #38bdf8,
            #60a5fa,
            #2563eb
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


.about-why-text p {

    max-width: 560px;

    margin: 25px 0 0;

    color: #8fa9c5;

    font-size: 15px;

    line-height: 1.85;

    opacity: 0;

    transform:
        translateY(25px);

}



/* =========================================
   WHY CARDS
========================================= */

.about-why-cards {

    position: relative;

    display: flex;

    flex-direction: column;

    gap: 16px;

}


.why-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 20px;

    min-height: 115px;

    padding: 22px 24px;

    border:
        1px solid
        rgba(56, 189, 248, .13);

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(8, 30, 60, .78),
            rgba(3, 17, 38, .90)
        );

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, .20);

    backdrop-filter:
        blur(12px);

    opacity: 0;

    transform:
        translateX(60px);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


.why-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    background:
        linear-gradient(
            110deg,
            transparent 20%,
            rgba(56, 189, 248, .08),
            transparent 80%
        );

    opacity: 0;

    transition:
        opacity .35s ease;

    pointer-events: none;

}



/* =========================================
   CARD ICON
========================================= */

.why-card-icon {

    flex-shrink: 0;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    border:
        1px solid
        rgba(56, 189, 248, .16);

    background:
        rgba(14, 53, 100, .48);

    color: #38bdf8;

    box-shadow:
        0 0 25px
        rgba(37, 99, 235, .08);

    transition:
        transform .35s ease,
        background .35s ease;

}


.why-card-icon svg {

    width: 22px;

    height: 22px;

}



/* =========================================
   CARD TEXT
========================================= */

.why-card-content {

    position: relative;

    z-index: 2;

}


.why-card h3 {

    margin: 0;

    color: #dceeff;

    font-size: 17px;

    font-weight: 600;

}


.why-card p {

    margin: 7px 0 0;

    color: #7892ad;

    font-size: 13px;

    line-height: 1.6;

}



/* =========================================
   ABOUT PURPOSE
========================================= */

.about-purpose {

    position: relative;

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    padding: 110px 0 130px;

    text-align: center;

}



/* =========================================
   SECTION TITLE
========================================= */

.about-section-title {

    width: 100%;

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;

}


.about-mini-label {

    display: inline-block;

    margin-bottom: 16px;

    color: #38bdf8;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.8px;

    text-transform: uppercase;

}


.about-section-title h3,
.believe-heading h3,
.about-approach h3 {

    margin: 0;

    color: #e0f2fe;

    font-size:
        clamp(32px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -1.8px;

    font-weight: 600;

}


.about-section-title h3 span,
.believe-heading h3 span,
.about-approach h3 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            #38bdf8,
            #60a5fa,
            #2563eb
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}



/* =========================================
   PURPOSE GRID
========================================= */

.purpose-grid {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    text-align: left;

}



/* =========================================
   PURPOSE CARD
========================================= */

.purpose-card {

    position: relative;

    min-height: 285px;

    padding: 30px 28px;

    overflow: hidden;

    border:
        1px solid
        rgba(56, 189, 248, .13);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 30, 60, .82),
            rgba(3, 17, 38, .94)
        );

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, .20);

    backdrop-filter:
        blur(14px);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;

}


.purpose-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    top: -100px;

    right: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(56, 189, 248, .16),
            transparent 70%
        );

    filter:
        blur(15px);

    pointer-events: none;

    transition:
        transform .5s ease;

}



/* =========================================
   PURPOSE NUMBER
========================================= */

.purpose-number {

    position: absolute;

    top: 24px;

    right: 25px;

    color:
        rgba(56, 189, 248, .25);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

}



/* =========================================
   PURPOSE ICON
========================================= */

.purpose-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 16px;

    border:
        1px solid
        rgba(56, 189, 248, .16);

    background:
        rgba(14, 53, 100, .45);

    color: #38bdf8;

    box-shadow:
        0 0 25px
        rgba(37, 99, 235, .08);

    transition:
        transform .35s ease,
        background .35s ease;

}


.purpose-icon svg {

    width: 22px;

    height: 22px;

}



/* =========================================
   PURPOSE TEXT
========================================= */

.purpose-card h4 {

    position: relative;

    margin: 0 0 12px;

    color: #dceeff;

    font-size: 19px;

    font-weight: 600;

}


.purpose-card p {

    position: relative;

    margin: 0;

    color: #7892ad;

    font-size: 14px;

    line-height: 1.75;

}



/* =========================================
   WHAT WE BELIEVE
========================================= */

.about-believe {

    position: relative;

    width: 100%;

    max-width: 1050px;

    margin: 0 auto;

    padding: 90px 0 120px;

}



/* =========================================
   BELIEVE HEADING
========================================= */

.believe-heading {

    width: 100%;

    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;

}



/* =========================================
   BELIEF GRID
========================================= */

.belief-list {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;

}



/* =========================================
   BELIEF ITEM
========================================= */

.belief-item {

    position: relative;

    display: flex;

    align-items: center;

    gap: 20px;

    min-height: 145px;

    padding: 25px 28px;

    border:
        1px solid
        rgba(56, 189, 248, .11);

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(7, 27, 55, .78),
            rgba(2, 15, 34, .92)
        );

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, .16);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}



/* =========================================
   BELIEF ICON
========================================= */

.belief-icon {

    flex-shrink: 0;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:
        rgba(14, 53, 100, .42);

    border:
        1px solid
        rgba(56, 189, 248, .14);

    color: #38bdf8;

    transition:
        transform .35s ease;

}


.belief-icon svg {

    width: 20px;

    height: 20px;

}



/* =========================================
   BELIEF CONTENT
========================================= */

.belief-content {

    min-width: 0;

}


.belief-content > span {

    display: block;

    margin-bottom: 4px;

    color:
        rgba(56, 189, 248, .38);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.belief-content h4 {

    margin: 0 0 6px;

    color: #dceeff;

    font-size: 17px;

    font-weight: 600;

}


.belief-content p {

    margin: 0;

    color: #7892ad;

    font-size: 13px;

    line-height: 1.6;

}



/* =========================================
   ZIGMAX APPROACH
========================================= */

.about-approach {

    position: relative;

    width: min(850px, 100%);

    margin: 0 auto;

    padding: 100px 30px 130px;

    text-align: center;

}



/* =========================================
   APPROACH LINE
========================================= */

.approach-line {

    width: 70px;

    height: 1px;

    margin: 0 auto 30px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #38bdf8,
            transparent
        );

    box-shadow:
        0 0 15px
        rgba(56, 189, 248, .35);

}


.about-approach .about-mini-label {

    margin-bottom: 18px;

}


.about-approach h3 {

    max-width: 750px;

    margin: 0 auto;

}


.about-approach p {

    max-width: 650px;

    margin: 25px auto 0;

    color: #8fa9c5;

    font-size: 15px;

    line-height: 1.85;

}



/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .about-purpose,
    .about-believe,
    .about-approach  {

        max-width: 90%;

    }


    .purpose-grid  {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 15px;

    }


    .purpose-card  {

        padding: 26px 22px;

    }

}



/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .about-zigmax  {

        min-height: 75vh;

        padding: 90px 7%;

    }


    .about-why  {

        padding: 100px 7%;

    }


    .about-why-container  {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .about-why-text  {

        margin-left: 0;

    }


    .about-flow  {

        width: 1100px;

        opacity: .55;

    }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .about-purpose  {

        padding:
            90px 0 100px;

    }


    .purpose-grid  {

        grid-template-columns:
            1fr;

        gap: 16px;

    }


    .purpose-card  {

        min-height: auto;

        padding: 28px;

    }


    .about-believe  {

        padding:
            70px 0 100px;

    }


    .belief-list  {

        grid-template-columns:
            1fr;

    }


    .about-section-title,
    .believe-heading  {

        margin-bottom: 40px;

    }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 600px) {

    .about-purpose,
    .about-believe,
    .about-approach  {

        max-width: 88%;

    }


    .about-zigmax  {

        padding: 80px 6%;

    }


    .about-intro h2  {

        font-size: 40px;

        letter-spacing: -1.8px;

    }


    .about-intro p  {

        font-size: 14px;

    }


    .about-why  {

        padding: 80px 6%;

    }


    .about-why-text h2  {

        font-size: 38px;

        letter-spacing: -1.8px;

    }


    .about-why-text p  {

        font-size: 14px;

    }


    .why-card  {

        min-height: 100px;

        padding: 18px;

        gap: 15px;

    }


    .why-card-icon  {

        width: 46px;

        height: 46px;

    }


    .why-card h3  {

        font-size: 16px;

    }


    .why-card p  {

        font-size: 12px;

    }


    .about-section-title h3,
    .believe-heading h3,
    .about-approach h3  {

        font-size: 34px;

        letter-spacing: -1.2px;

    }


    .purpose-card  {

        padding: 25px 22px;

        border-radius: 19px;

    }


    .purpose-icon  {

        width: 48px;

        height: 48px;

        margin-bottom: 20px;

    }


    .purpose-card h4  {

        font-size: 18px;

    }


    .purpose-card p  {

        font-size: 13px;

    }


    .belief-item  {

        min-height: auto;

        padding: 22px 20px;

        gap: 15px;

    }


    .belief-icon  {

        width: 44px;

        height: 44px;

    }


    .belief-content h4  {

        font-size: 16px;

    }


    .belief-content p  {

        font-size: 12px;

    }


    .about-approach  {

        padding:
            70px 10px 90px;

    }


    .about-approach p  {

        font-size: 14px;

    }


    /* ORBS MOBILE */

    .about-orb  {

        filter: blur(65px);

        opacity: .45;

    }


    .orb-1  {

        width: 300px;

        height: 300px;

        left: -150px;

    }


    .orb-2  {

        width: 350px;

        height: 350px;

        right: -170px;

    }


    .orb-3  {

        width: 220px;

        height: 220px;

        left: 20%;

    }


    /* FLOW MOBILE */

    .about-flow  {

        width: 850px;

        height: 3000px;

        opacity: .35;

    }

}



/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .about-orb  {

        transform: none !important;

    }


    .flow-main,
    .flow-glow  {

        stroke-dashoffset: 0 !important;

    }

}



/* footer */
.footer {
    position: relative;
    min-height: 430px;

    padding: 80px 8% 30px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 100%,
            rgba(0, 102, 255, .13),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #050d1c 0%,
            #030814 100%
        );

    border-top: 1px solid rgba(56, 189, 248, .12);

    isolation: isolate;
}


/* =========================================
   3D DECORATION
========================================= */

.footer-3d {
    position: absolute;

    pointer-events: none;

    z-index: -1;
}


/* =========================================
   3D CUBE - KIRI
========================================= */

.footer-3d-left {

    left: -25px;
    bottom: -35px;

    width: 170px;
    height: 170px;

    perspective: 700px;

    opacity: .7;
}


.cube-3d {

    position: absolute;

    left: 30px;
    bottom: 15px;

    width: 100px;
    height: 100px;

    transform-style: preserve-3d;

    transform:
        rotateX(-18deg)
        rotateY(30deg)
        rotateZ(-8deg);
}


/* setiap sisi cube */

.cube-3d span {

    position: absolute;

    width: 100px;
    height: 100px;

    border: 1px solid rgba(56, 189, 248, .45);

    background:
        linear-gradient(
            135deg,
            rgba(30, 120, 255, .20),
            rgba(3, 20, 50, .65)
        );

    box-shadow:
        inset 0 0 25px rgba(0, 153, 255, .12),
        0 0 15px rgba(0, 119, 255, .12);
}


/* depan */

.cube-3d span:nth-child(1) {
    transform: translateZ(50px);
}


/* belakang */

.cube-3d span:nth-child(2) {
    transform: rotateY(180deg) translateZ(50px);
}


/* kanan */

.cube-3d span:nth-child(3) {
    transform:
        rotateY(90deg)
        translateZ(50px);
}


/* kiri */

.cube-3d span:nth-child(4) {
    transform:
        rotateY(-90deg)
        translateZ(50px);
}


/* atas */

.cube-3d span:nth-child(5) {
    transform:
        rotateX(90deg)
        translateZ(50px);
}


/* bawah */

.cube-3d span:nth-child(6) {
    transform:
        rotateX(-90deg)
        translateZ(50px);
}


/* =========================================
   3D ORB - KANAN
========================================= */

.footer-3d-right {

    right: -80px;
    bottom: -80px;

    width: 260px;
    height: 260px;

    opacity: .7;
}


.orb-3d {

    position: relative;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 25%,
            #8bdcff 0%,
            #258cff 12%,
            #0758c9 35%,
            #06265f 62%,
            #020b1c 82%
        );

    box-shadow:
        inset -25px -25px 45px rgba(0, 0, 0, .75),
        inset 15px 10px 30px rgba(120, 220, 255, .2),
        0 0 35px rgba(0, 119, 255, .22);

    transform:
        rotate(-18deg);
}


/* highlight orb */

.orb-3d::before {

    content: "";

    position: absolute;

    width: 65px;
    height: 35px;

    top: 25px;
    left: 40px;

    border-radius: 50%;

    background:
        rgba(190, 240, 255, .35);

    filter: blur(12px);

    transform: rotate(-25deg);
}


/* ring */

.orb-ring {

    position: absolute;

    width: 255px;
    height: 65px;

    top: 75px;
    left: -23px;

    border-radius: 50%;

    border:
        2px solid rgba(56, 189, 248, .55);

    transform:
        rotateX(65deg)
        rotateZ(-12deg);

    box-shadow:
        0 0 15px rgba(0, 174, 255, .25);
}


/* ring kedua */

.orb-ring::after {

    content: "";

    position: absolute;

    inset: 8px;

    border-radius: 50%;

    border:
        1px solid rgba(147, 220, 255, .25);
}


/* inti orb */

.orb-core {

    position: absolute;

    width: 20px;
    height: 20px;

    top: 55px;
    left: 60px;

    border-radius: 50%;

    background: #9de8ff;

    box-shadow:
        0 0 15px #38bdf8,
        0 0 35px rgba(0, 153, 255, .8);
}


/* =========================================
   LOGO
========================================= */

.judul-footer {
    max-width: 420px;

    position: relative;
    z-index: 2;
}


.footer .logo {

    display: flex;

    align-items: center;

    gap: 12px;
}


.footer .logo img {

    width: 42px;
    height: 42px;

    object-fit: contain;
}


.footer-judul {

    margin: 0;

    font-size: 24px;

    letter-spacing: 2px;

    color: #ffffff;
}


.footer-judul span {
    color: #38bdf8;
}


.explain-footer {

    margin-top: 18px;

    max-width: 390px;

    color: #71839d;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   KONTAK
========================================= */

.kontak {

    display: flex;

    gap: 12px;

    margin-top: 22px;
}


.kontak a {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #60a5fa;

    border:
        1px solid rgba(56, 189, 248, .22);

    border-radius: 12px;

    background:
        rgba(9, 30, 62, .65);

    text-decoration: none;
}


.kontak svg {

    width: 19px;
    height: 19px;
}


/* =========================================
   FOOTER MENU
========================================= */

.isi-footer {

    position: relative;

    z-index: 2;

    transform: translateY(-73px);

    display: grid;

    grid-template-columns:
        repeat(2, 150px);

    gap: 70px;

    margin-left: 57%;

    margin-top: -115px;
}

@media (min-width: 901px) {
    .isi-footer {
        width: fit-content;
        margin-left: auto;
        margin-right: 0;
    }
}

@media (max-width: 900px) {
    .isi-footer  {
        transform: none;
    }
}


.isi-footer h5 {

    margin: 0 0 20px;

    font-size: 14px;

    color: #ffffff;

    letter-spacing: .5px;
}


.isi-footer a,
.isi-footer p {

    display: block;

    margin: 0 0 12px;

    color: #70829c;

    font-size: 12px;

    text-decoration: none;
}


.isi-contact p {
    margin-top: 12px;
}


/* =========================================
   GARIS
========================================= */

.garis {

    position: relative;

    z-index: 2;

    margin-top: 75px;

    border: 0;

    border-top:
        1px solid rgba(56, 189, 248, .12);
}


/* =========================================
   COPYRIGHT
========================================= */

.copyright {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 22px;
}


.copyright p {

    margin: 0;

    font-size: 11px;

    color: #52647d;
}


.explain-copyright {
    color: #315b82 !important;
}
/* end footer */

/* =========================================================
   RESPONSIVE FINAL FIX
   ZIGMAX
   - lebih rapi di tablet & HP
   - warna tetap jelas
   - tidak terlalu berat
   - mencegah overflow horizontal
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .navbar  {
        padding: 0 5%;
    }


    .nav-menu  {
        gap: 22px;
    }


    .nav-menu a  {
        font-size: 13px;
    }


    .nav-button  {
        padding: 10px 18px;
        font-size: 13px;
    }


    /* WHY */

    .about-why-container  {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .about-why-text  {
        width: 100%;
        max-width: 650px;
        margin-left: 0;
    }


    .about-why-cards  {
        width: 100%;
        max-width: 700px;
        margin: auto;
    }


    /* PURPOSE */

    .about-purpose  {
        width: 90%;
        max-width: 900px;
    }


    .purpose-grid  {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .purpose-card  {
        min-height: 250px;
    }


    /* BELIEVE */

    .about-believe  {
        width: 90%;
        max-width: 900px;
    }


    .belief-list  {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* FOOTER */

    .isi-footer  {
        margin-left: 0;
        margin-top: 60px;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 35px;
    }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 800px) {

    /* =====================================
       NAVBAR
    ===================================== */

    .navbar  {
        height: 75px;
        padding: 0 6%;

        gap: 15px;
    }


    .logo  {
        font-size: 21px;
        letter-spacing: 2px;
    }


    .nav-menu  {
        gap: 18px;
    }


    .nav-menu a  {
        font-size: 12px;
    }


    .nav-button  {
        padding: 9px 15px;
        font-size: 12px;
        white-space: nowrap;
    }


    /* =====================================
       ABOUT ZIGMAX
    ===================================== */

    .about-zigmax  {
        min-height: 75vh;

        padding:
            90px 7%
            70px;
    }


    .about-intro  {
        width: 100%;
        max-width: 650px;
    }


    .about-label  {
        font-size: 10px;
        letter-spacing: 2.2px;
        margin-bottom: 16px;
    }


    .about-intro h2  {
        font-size:
            clamp(38px, 8vw, 58px);

        line-height: 1.05;

        letter-spacing: -2px;
    }


    .about-intro p  {
        max-width: 580px;

        margin-top: 22px;

        font-size: 14px;

        line-height: 1.75;
    }


    /* =====================================
       WHY
    ===================================== */

    .about-why  {
        min-height: auto;

        padding:
            85px 7%;
    }


    .about-why-container  {
        gap: 45px;
    }


    .about-why-text  {
        max-width: 650px;
    }


    .about-section-label  {
        margin-bottom: 15px;
    }


    .about-why-text h2  {
        font-size:
            clamp(36px, 7vw, 55px);

        letter-spacing: -2px;
    }


    .about-why-text p  {
        margin-top: 20px;

        font-size: 14px;

        line-height: 1.75;
    }


    /* =====================================
       WHY CARD
    ===================================== */

    .about-why-cards  {
        gap: 13px;
    }


    .why-card  {
        min-height: 105px;

        padding: 18px 19px;

        gap: 15px;

        border-radius: 17px;
    }


    .why-card-icon  {
        width: 46px;
        height: 46px;

        border-radius: 13px;
    }


    .why-card-icon svg  {
        width: 19px;
        height: 19px;
    }


    .why-card h3  {
        font-size: 15px;
    }


    .why-card p  {
        margin-top: 5px;

        font-size: 12px;

        line-height: 1.55;
    }


    /* =====================================
       PURPOSE
    ===================================== */

    .about-purpose  {
        width: 90%;
        max-width: 700px;

        padding:
            80px 0
            95px;
    }


    .about-section-title  {
        margin-bottom: 35px;
    }


    .about-mini-label  {
        font-size: 10px;
        letter-spacing: 2.2px;
    }


    .about-section-title h3,
    .believe-heading h3,
    .about-approach h3  {

        font-size:
            clamp(30px, 7vw, 44px);

        line-height: 1.08;

        letter-spacing: -1.5px;
    }


    .purpose-grid  {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .purpose-card  {
        min-height: 0;

        padding: 25px 23px;

        border-radius: 19px;
    }


    .purpose-icon  {
        width: 46px;
        height: 46px;

        margin-bottom: 19px;

        border-radius: 14px;
    }


    .purpose-icon svg  {
        width: 20px;
        height: 20px;
    }


    .purpose-card h4  {
        font-size: 17px;

        margin-bottom: 9px;
    }


    .purpose-card p  {
        font-size: 13px;

        line-height: 1.7;
    }


    /* =====================================
       BELIEVE
    ===================================== */

    .about-believe  {
        width: 90%;
        max-width: 700px;

        padding:
            70px 0
            90px;
    }


    .believe-heading  {
        margin-bottom: 35px;
    }


    .belief-list  {
        grid-template-columns: 1fr;

        gap: 13px;
    }


    .belief-item  {
        min-height: 0;

        padding: 20px;

        gap: 15px;

        border-radius: 17px;
    }


    .belief-icon  {
        width: 44px;
        height: 44px;

        border-radius: 13px;
    }


    .belief-icon svg  {
        width: 18px;
        height: 18px;
    }


    .belief-content > span  {
        font-size: 9px;
    }


    .belief-content h4  {
        font-size: 15px;

        margin-bottom: 5px;
    }


    .belief-content p  {
        font-size: 12px;

        line-height: 1.55;
    }


    /* =====================================
       APPROACH
    ===================================== */

    .about-approach  {
        width: 90%;
        max-width: 700px;

        padding:
            75px 0
            95px;
    }


    .about-approach p  {
        font-size: 13px;

        line-height: 1.75;
    }


    /* =====================================
       GLOBAL ORBS
    ===================================== */

    .about-orb  {
        filter: blur(55px);

        opacity: .38;
    }


    .orb-1  {
        width: 250px;
        height: 250px;

        left: -130px;
    }


    .orb-2  {
        width: 280px;
        height: 280px;

        right: -140px;
    }


    .orb-3  {
        width: 180px;
        height: 180px;

        left: 20%;
    }


    /* =====================================
       FLOW
    ===================================== */

    .about-flow  {
        width: 750px;

        opacity: .22;
    }


    /* =====================================
       FOOTER
    ===================================== */

    .footer  {
        min-height: auto;

        padding:
            70px 7%
            25px;
    }


    .footer-3d-left  {
        left: -55px;
        bottom: -45px;

        transform: scale(.7);

        opacity: .35;
    }


    .footer-3d-right  {
        right: -110px;
        bottom: -110px;

        transform: scale(.65);

        opacity: .35;
    }


    .judul-footer  {
        max-width: 100%;
    }


    .explain-footer  {
        max-width: 500px;

        font-size: 12px;
    }


    .isi-footer  {
        width: 100%;

        margin:
            55px 0 0;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 25px;
    }


    .isi-footer h5  {
        font-size: 13px;

        margin-bottom: 15px;
    }


    .isi-footer a,
    .isi-footer p  {
        font-size: 11px;

        margin-bottom: 10px;
    }


    .garis  {
        margin-top: 55px;
    }


    .copyright  {
        gap: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    /* =====================================
       NAVBAR
    ===================================== */

    .navbar  {
        height: 68px;

        padding:
            0 5%;

        border-radius: 0;
    }


    .logo  {
        font-size: 19px;

        letter-spacing: 1.8px;
    }


    .nav-menu  {
        gap: 12px;
    }


    .nav-menu a  {
        font-size: 11px;
    }


    .nav-button  {
        padding:
            8px 12px;

        font-size: 10px;
    }


    /* =====================================
       ABOUT FIRST SECTION
    ===================================== */

    .about-zigmax  {
        min-height: 70vh;

        padding:
            85px 6%
            60px;
    }


    .about-label  {
        font-size: 9px;

        letter-spacing: 2px;

        margin-bottom: 14px;
    }


    .about-intro h2  {
        font-size:
            clamp(34px, 10vw, 45px);

        letter-spacing: -1.7px;
    }


    .about-intro p  {
        margin-top: 19px;

        font-size: 13px;

        line-height: 1.7;
    }


    /* =====================================
       WHY
    ===================================== */

    .about-why  {
        padding:
            70px 6%;
    }


    .about-section-label  {
        font-size: 10px;

        letter-spacing: 2px;
    }


    .about-why-text h2  {
        font-size:
            clamp(34px, 9vw, 42px);

        letter-spacing: -1.7px;
    }


    .about-why-text p  {
        font-size: 13px;

        line-height: 1.7;
    }


    /* =====================================
       WHY CARD
    ===================================== */

    .why-card  {
        min-height: 95px;

        padding:
            16px;

        gap: 12px;

        border-radius: 16px;
    }


    .why-card-icon  {
        width: 42px;
        height: 42px;

        flex-shrink: 0;

        border-radius: 12px;
    }


    .why-card h3  {
        font-size: 14px;
    }


    .why-card p  {
        font-size: 11px;

        line-height: 1.5;
    }


    /* =====================================
       PURPOSE
    ===================================== */

    .about-purpose  {
        width: 88%;

        padding:
            65px 0
            80px;
    }


    .about-section-title,
    .believe-heading  {
        margin-bottom: 32px;
    }


    .about-section-title h3,
    .believe-heading h3,
    .about-approach h3  {
        font-size:
            clamp(28px, 8vw, 36px);

        letter-spacing: -1.2px;
    }


    .purpose-card  {
        padding:
            23px 20px;

        border-radius: 17px;
    }


    .purpose-number  {
        top: 18px;
        right: 19px;

        font-size: 10px;
    }


    .purpose-icon  {
        width: 44px;
        height: 44px;

        margin-bottom: 17px;

        border-radius: 13px;
    }


    .purpose-card h4  {
        font-size: 16px;
    }


    .purpose-card p  {
        font-size: 12px;

        line-height: 1.65;
    }


    /* =====================================
       BELIEVE
    ===================================== */

    .about-believe  {
        width: 88%;

        padding:
            60px 0
            75px;
    }


    .belief-item  {
        padding:
            18px;

        gap: 12px;

        border-radius: 16px;
    }


    .belief-icon  {
        width: 41px;
        height: 41px;

        flex-shrink: 0;

        border-radius: 12px;
    }


    .belief-content h4  {
        font-size: 14px;
    }


    .belief-content p  {
        font-size: 11px;

        line-height: 1.5;
    }


    /* =====================================
       APPROACH
    ===================================== */

    .about-approach  {
        width: 88%;

        padding:
            60px 0
            75px;
    }


    .approach-line  {
        width: 55px;

        margin-bottom: 23px;
    }


    .about-approach p  {
        font-size: 12px;

        line-height: 1.7;
    }


    /* =====================================
       BACKGROUND
    ===================================== */

    .about-orb  {
        filter: blur(48px);

        opacity: .30;
    }


    .orb-1  {
        width: 210px;
        height: 210px;

        left: -120px;
    }


    .orb-2  {
        width: 230px;
        height: 230px;

        right: -120px;
    }


    .orb-3  {
        width: 150px;
        height: 150px;

        left: 15%;
    }


    .about-flow  {
        width: 600px;

        opacity: .16;
    }


    /* =====================================
       FOOTER
    ===================================== */

    .footer  {
        padding:
            60px 6%
            22px;
    }


    .footer .logo img  {
        width: 36px;
        height: 36px;
    }


    .footer-judul  {
        font-size: 20px;
    }


    .explain-footer  {
        margin-top: 15px;

        font-size: 11px;

        line-height: 1.65;
    }


    .kontak  {
        gap: 9px;

        margin-top: 18px;
    }


    .kontak a  {
        width: 38px;
        height: 38px;

        border-radius: 10px;
    }


    .kontak svg  {
        width: 17px;
        height: 17px;
    }


    .isi-footer  {
        margin-top: 45px;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            35px 25px;
    }


    .isi-footer h5  {
        font-size: 12px;

        margin-bottom: 13px;
    }


    .isi-footer a,
    .isi-footer p  {
        font-size: 10px;

        margin-bottom: 9px;
    }


    .isi-contact p  {
        margin-top: 9px;
    }


    .garis  {
        margin-top: 45px;
    }


    .copyright  {
        flex-direction: column;

        align-items: flex-start;

        gap: 7px;

        padding-top: 18px;
    }


    .copyright p  {
        font-size: 9px;
    }

}


/* =========================================================
   VERY SMALL PHONE
========================================================= */

@media (max-width: 380px) {

    .navbar  {
        padding: 0 4%;
    }


    .logo  {
        font-size: 17px;
    }


    .nav-menu  {
        gap: 8px;
    }


    .nav-menu a  {
        font-size: 10px;
    }


    .nav-button  {
        padding:
            7px 9px;

        font-size: 9px;
    }


    .about-intro h2  {
        font-size: 32px;
    }


    .about-why-text h2  {
        font-size: 31px;
    }


    .why-card  {
        padding: 14px;
    }


    .why-card-icon  {
        width: 38px;
        height: 38px;
    }


    .purpose-card  {
        padding: 20px 18px;
    }


    .footer  {
        padding-left: 5%;
        padding-right: 5%;
    }


    .isi-footer  {
        gap:
            30px 18px;
    }

}


@media screen and (max-width: 768px) {

    .navbar  {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999999 !important;
        opacity: 1 !important;
        transform: translateY(0) !important;

        display: flex !important;
        align-items: center !important;

        width: 100%;
        box-sizing: border-box;
    }

    .navbar.show  {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    body  {
        padding-top: 78px;
    }

     .nav-button {
        display: none;
     }
    /* ===============================
       HAMBURGER BUTTON
    =============================== */

    .hamburger  {
        display: flex !important;

        margin-left: auto !important;

        width: 52px !important;
        height: 52px !important;

        padding: 0 !important;

        background: #06172d !important;

        border: 1px solid #168cff !important;

        border-radius: 14px !important;

        flex-direction: column !important;

        align-items: center !important;
        justify-content: center !important;

        gap: 5px !important;

        cursor: pointer !important;

        position: relative !important;

        z-index: 9999999 !important;
    }


    .hamburger span  {
        display: block !important;

        width: 24px !important;
        height: 3px !important;

        background: #38bdf8 !important;

        border-radius: 10px !important;

        transition: 0.3s ease !important;
    }


    /* ===============================
       MENU TERTUTUP
    =============================== */

    .nav-menu  {
        display: none !important;
    }


    /* ===============================
       MENU TERBUKA
    =============================== */

    .nav-menu.open  {
        display: flex !important;

        position: fixed !important;

        top: 70px !important;

        right: 15px !important;

        width: 240px !important;

        padding: 10px !important;

        flex-direction: column !important;

        gap: 5px !important;

        background: #031329 !important;

        border: 1px solid #168cff !important;

        border-radius: 15px !important;

        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.7),
            0 0 25px rgba(22, 140, 255, 0.2) !important;

        z-index: 9999998 !important;

        box-sizing: border-box !important;
    }


    /* ===============================
       MENU LINK
    =============================== */

    .nav-menu.open a  {
        display: block !important;

        width: 100% !important;

        padding: 15px !important;

        box-sizing: border-box !important;

        color: #ffffff !important;

        background: transparent !important;

        text-decoration: none !important;

        font-size: 16px !important;

        border-radius: 8px !important;
    }


    /* ===============================
       HAMBURGER MENJADI X
    =============================== */

    .hamburger.active span:nth-child(1)  {
        transform: translateY(8px) rotate(45deg) !important;
    }

    .hamburger.active span:nth-child(2)  {
        opacity: 0 !important;
    }

    .hamburger.active span:nth-child(3)  {
        transform: translateY(-8px) rotate(-45deg) !important;
    }
}

/* =========================================
    ZIGMAX LIGHT ENTERPRISE THEME
========================================= */
:root { --white:#FFFFFF; --soft-bg:#F7FAFF; --border-soft:#E5EDFA; --navy:#071A3B; --text-primary:#33415E; --text-muted:#64748B; --blue-primary:#1769FF; --blue-dark:#0B43BD; --blue-glow:rgba(23,105,255,.15); --blue-glow-strong:rgba(23,105,255,.30); }
body, .about-system { background: var(--white); color: var(--text-primary); }
.about-system { background: linear-gradient(180deg, var(--white), var(--soft-bg) 50%, var(--white)); }
.about-orb { mix-blend-mode: multiply; opacity: .28; }
.about-orb, .orb-1, .orb-2, .orb-3 { background: radial-gradient(circle, var(--blue-glow-strong), transparent 70%); }
.flow-main { stroke: var(--blue-glow-strong); }
.flow-glow { stroke: var(--blue-primary); }
.navbar { background: rgba(255,255,255,.94); border-bottom-color: var(--border-soft); box-shadow: 0 4px 20px rgba(7,26,59,.04); }
.logo { color: var(--blue-primary); text-shadow: 0 0 18px var(--blue-glow); }
.nav-menu a { color: var(--text-primary); }
.nav-button { border-color: var(--blue-primary); background: var(--white); color: var(--blue-primary); }
.about-system .about-zigmax, .about-system .about-why, .about-system .about-purpose, .about-system .about-believe, .about-system .about-approach { background: transparent; }
.about-label, .about-section-label, .about-mini-label { color: var(--blue-primary); }
.about-intro h2, .about-why-text h2, .about-section-title h3, .believe-heading h3, .about-approach h3 { color: var(--navy); }
.about-intro h2 span, .about-why-text h2 span, .about-section-title h3 span, .believe-heading h3 span, .about-approach h3 span { background: linear-gradient(90deg, var(--blue-primary), var(--blue-dark)); }
.about-intro h2 span, .about-why-text h2 span, .about-section-title h3 span, .believe-heading h3 span, .about-approach h3 span {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-intro p, .about-why-text p, .about-approach p { color: var(--text-muted); }
.why-card, .purpose-card, .belief-item { background: var(--white); border-color: var(--border-soft); box-shadow: 0 10px 30px rgba(23,105,255,.08); }
.why-card-icon, .purpose-icon, .belief-icon { background: rgba(23,105,255,.08); border-color: var(--border-soft); color: var(--blue-primary); }
.why-card h3, .purpose-card h4, .belief-content h4 { color: var(--navy); }
.why-card p, .purpose-card p, .belief-content p { color: var(--text-muted); }
.footer { background: var(--white); border-top-color: var(--border-soft); }
.footer .logo img { filter: none; }
.footer-judul, .isi-footer h5 { color: var(--navy); }.footer-judul span, .kontak a { color: var(--blue-primary); }
.explain-footer, .isi-footer a, .isi-footer p { color: var(--text-muted); }
.kontak a { background: var(--white); border-color: #000; color: var(--blue-primary); }

@media (max-width: 768px) {
    .hamburger  { background: var(--white) !important; border-color: var(--blue-primary) !important; }
    .hamburger span  { background: var(--blue-primary) !important; }
    .nav-menu.open  { background: var(--white) !important; border-color: var(--border-soft) !important; box-shadow: 0 15px 40px rgba(7,26,59,.12) !important; }
    .nav-menu.open a  { color: var(--text-primary) !important; }
}

/* =========================================
   FAST ABOUT REVEALS
========================================= */
.navbar,
.about-zigmax,
.about-label,
.about-intro h2,
.about-intro p,
.about-section-label,
.about-why-text h2,
.about-why-text p,
.why-card,
.purpose-card,
.belief-item {
    transition-duration: .4s !important;
    transition-delay: 0s !important;
}

html.low-performance .about-orb,
html.low-performance .about-flow {
    display: none !important;
}

html.low-performance * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-fill-mode: both !important;
    animation-delay: 0s !important;
    transition-duration: .2s !important;
    transition-delay: 0s !important;
}

html.compact-device .about-orb,
html.compact-device .about-flow {
    display: none !important;
}

html.compact-device .about-purpose,
html.compact-device .about-believe,
html.compact-device .about-approach {
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}


/* ============================================
   HOVER STYLES (desktop/mouse only)
   Auto-wrapped: prevents sticky :hover on touch
   ============================================ */
@media (hover: hover) and (pointer: fine) {
    .nav-menu a:hover {
    color: #41ceeae8;
    opacity: 1;
}
    .navbar .nav-menu a:hover::after {
    transform: scaleX(1);
}
    .nav-button:hover {
    background:  linear-gradient(
            90deg,
            #38bdf8,
            #168cff,
            #60a5fa
        );;
}
    .why-card:hover::before {

    opacity: 1;

}
    .why-card:hover {

    transform:
        translateX(-8px)
        translateY(-3px);

    border-color:
        rgba(56, 189, 248, .32);

    box-shadow:
        0 20px 55px
        rgba(37, 99, 235, .14);

}
    .why-card:hover .why-card-icon {

    transform:
        scale(1.08)
        rotate(-4deg);

    background:
        rgba(14, 70, 130, .65);

}
    .purpose-card:hover::before {

    transform:
        scale(1.4)
        translate(-20px, 20px);

}
    .purpose-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(56, 189, 248, .30);

    box-shadow:
        0 25px 60px
        rgba(37, 99, 235, .14);

}
    .purpose-card:hover .purpose-icon {

    transform:
        scale(1.08)
        rotate(-4deg);

    background:
        rgba(14, 70, 130, .60);

}
    .belief-item:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(56, 189, 248, .27);

    box-shadow:
        0 20px 50px
        rgba(37, 99, 235, .11);

}
    .belief-item:hover .belief-icon {

    transform:
        scale(1.08)
        rotate(3deg);

}
    .isi-footer a:hover {
    color: #38bdf8;
}
    .nav-menu a:hover { color: var(--blue-primary); }
    .nav-button:hover { background: var(--blue-dark); color: var(--white); }
    .why-card:hover, .purpose-card:hover, .belief-item:hover { border-color: var(--blue-primary); box-shadow: 0 14px 35px var(--blue-glow); }
    .footer a:hover, .isi-footer a:hover { color: var(--blue-primary); }
}

@media screen and (max-width: 768px) and (hover: hover) and (pointer: fine) {
    .nav-menu.open a:hover {
        background: #0b3158 !important;

        color: #38bdf8 !important;
    }
}

@media (max-width: 768px) {
    .nav-menu.open a.active {
        background: var(--soft-bg) !important;
        color: var(--blue-primary) !important;
    }

    .nav-menu.open a.active::after {
        content: '' !important;
        display: block !important;
        border-bottom: 2px solid var(--blue-primary) !important;
        margin-top: 5px !important;
        width: 100% !important;
    }
}

@media (max-width: 768px) and (hover: hover) and (pointer: fine) {
    .nav-menu.open a:hover,
    .nav-menu.open a:active { background: var(--soft-bg) !important; color: var(--blue-primary) !important; }

    .nav-menu.open a.active {
        background: var(--soft-bg) !important;
        color: var(--blue-primary) !important;
    }

    .nav-menu.open a.active::after {
        content: '' !important;
        display: block !important;
        border-bottom: 2px solid var(--blue-primary) !important;
        margin-top: 5px !important;
        width: 100% !important;
    }
}


/* === FIX: nav-menu overflow di tablet (769px-900px) sebelum hamburger aktif === */
@media (max-width: 900px) {
    .nav-menu {
        margin-right: 0 !important;
        gap: 18px !important;
    }
}


/* === FIX: navbar menu benar-benar di tengah (desktop/tablet) === */
@media (min-width: 769px) {
    .navbar .nav-menu {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-right: 0;
        gap: clamp(18px, 2.2vw, 35px);
        white-space: nowrap;
    }
}
