Vector3.Lerp with a fixed t in Update() is NOT smooth movement.
It approaches the target exponentially — slowing forever, never truly arriving.
Vector3.SmoothDamp accelerates toward the target and decelerates on arrival.
It actually reaches the destination with physically believable motion.