.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 4%;
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(6,8,22,0.92);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.logo-img{
    height:120px;
}

nav{
    display:flex;
    align-items:center;
    gap:40px;
}

nav a{
    color:#eceef7;
    font-size:16px;
    font-weight:500;
    transition:0.25s;
}

nav a:hover{
    color:#8f6fff;
}

.nav-buttons{
    display:flex;
    gap:14px;
}

.section{
    padding:90px 5%;
}

.section-title{
    font-size:56px;
    margin-bottom:16px;
}

.section-text{
    color:#b4bbcf;
    max-width:760px;
    line-height:1.8;
    font-size:18px;
}

.footer{
    text-align:center;
    padding:80px 20px;
    color:#747d93;
}

/* =========================
   MOBILE RESPONSIVE FIX
========================= */

@media(max-width:768px){

/* NAVBAR */

.navbar{
    padding:16px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
}

.logo-img{
    height:46px;
}

.logo{
    display:flex;
    justify-content:center;
}

nav{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
}

nav a{
    font-size:13px;
}

.nav-buttons{
    display:flex;
    gap:12px;
    justify-content:center;
}

.nav-buttons a{
    padding:10px 18px;
    font-size:14px;
}

.btn-outline,
.btn-gradient{
    padding:9px 16px;
    font-size:13px;
}

/* SECTION */

.section{
    padding:50px 20px;
}

.section-title{
    font-size:34px;
    line-height:1.08;
    margin-bottom:20px;
}

.section p{
    font-size:18px;
    line-height:1.7;
}

/* FOOTER */

.footer{
    padding:40px 20px;
    text-align:center;
}

.footer p{
    font-size:14px;
    opacity:0.7;
}

}