Update the auth token dynamically (after login/OTP)
static Future<void> setAuthToken(String token) async { _dio?.options.headers['Authorization'] = 'Bearer $token'; await TokenStorage.saveToken(token); }