/* ===== HEADER FIX ===== */

.nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#fff;
    border-bottom:1px solid #eee;
}

.nav-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.brand img{
    width:58px;
    height:58px;
}

.brand-text{
    display:flex;
    flex-direction:column;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-links a{
    text-decoration:none;
    color:#1f2937;
    font-weight:600;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

body{
    padding-top:85px;
}