/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", "Inter", "BPG Algeti", sans-serif;
}

/* ================= NAVBAR ================= */

.qxv91 {
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 10002;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
}

.qxv92 {
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
}

/* NAV LINKS */

.qxv96 {
    flex: 1;
    display: flex;
    justify-content: center;
}

.qxv96 ul {
    display: flex;
    gap: 42px;
    list-style: none;
}

.qxv96 a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

/* HAMBURGER */

.qxv101 {
    display: none;
    width: 46px;
    height: 46px;
    background: #fff;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 10006;
    position: relative;
}

.qxv101 span {
    width: 24px;
    height: 2px;
    background: #222;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

    .qxv101 {
        display: flex !important; /* FORCE SHOW */
    }

    .qxv96 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: #fff;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        transition: right 0.4s ease;
        z-index: 10005;
    }

    .qxv96.active {
        right: 0;
    }

    .qxv96 ul {
        flex-direction: column;
        gap: 40px;
    }
}

/* ================= STICKY NAV ================= */

.stk-navbar {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10000;
    transition: top 0.4s ease;
}

.stk-navbar.active {
    top: 0;
}

.stk-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
}

.stk-burger span {
    width: 22px;
    height: 2px;
    background: #222;
}

@media (max-width: 900px) {

    .stk-burger {
        display: flex;
    }

    .stk-nav {
        position: fixed;
        right: -100%;
        top: 0;
        width: 300px;
        height: 100vh;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 10004;
    }

    .stk-nav.active {
        right: 0;
    }
}
