/* ===== PROTEXA SUPERAPP NAV ===== */

.nav-root{
  position:sticky;
  top:0;
  z-index:1000;
}

.nav-desktop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 22px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  background:rgba(7,11,20,0.85);
  backdrop-filter:blur(10px);
}

.nav-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  letter-spacing:0.14em;
}

.nav-brand img{
  width:26px;
  height:26px;
  border-radius:8px;
}

.nav-center{
  display:flex;
  gap:18px;
}

.nav-item{
  position:relative;
  font-size:13px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  cursor:pointer;
}

.nav-item > span{
  color:rgba(234,240,255,0.9);
}

.nav-item:hover .nav-dropdown{
  display:block;
}

.nav-dropdown{
  display:none;
  position:absolute;
  top:130%;
  left:0;
  min-width:220px;
  background:rgba(12,16,30,0.95);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  padding:10px;
}

.nav-dropdown a{
  display:block;
  padding:8px 10px;
  border-radius:10px;
  font-size:13px;
  color:rgba(234,240,255,0.85);
}

.nav-dropdown a:hover{
  background:rgba(255,255,255,0.05);
}

.nav-right{
  display:flex;
  gap:10px;
}

.nav-btn{
  background:none;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:10px;
  padding:8px 10px;
  color:#EAF0FF;
  cursor:pointer;
}

.mobile-only{
  display:none;
}

/* ===== MOBILE ===== */

@media(max-width:900px){
  .nav-center{ display:none; }
  .mobile-only{ display:block; }
}

.nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  display:none;
}

.nav-drawer{
  position:fixed;
  top:0;
  left:-320px;
  width:300px;
  height:100%;
  background:#070B14;
  border-right:1px solid rgba(255,255,255,0.08);
  transition:left .25s ease;
  padding:18px;
}

.nav-drawer.open{ left:0; }
.nav-overlay.show{ display:block; }

.drawer-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}

.drawer-body a{
  display:block;
  padding:10px;
  border-radius:10px;
  margin-bottom:6px;
  color:rgba(234,240,255,0.9);
}
.drawer-body a:hover{
  background:rgba(255,255,255,0.05);
}
