/* ============================================================
   SA-HERO
   ============================================================ */

.sa-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  background: none !important;
  background-image: none !important;
}

/* --- Background --- */
.sa-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(170deg, #080e1e 0%, #0c1731 45%, #101c38 100%);
}

/* --- Color orbs --- */
.sa-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

/* Instagram gradient orb — top right */
.sa-hero__orb--ig {
  width: 480px;
  height: 480px;
  top: -8%;
  right: -4%;
  background: conic-gradient(
    from 200deg,
    rgba(131, 58, 180, 0.2),
    rgba(225, 48, 108, 0.18),
    rgba(252, 175, 69, 0.12),
    rgba(131, 58, 180, 0.2)
  );
  animation: saOrbDrift 12s ease-in-out infinite alternate;
}

/* TikTok cyan orb — bottom left */
.sa-hero__orb--tt {
  width: 400px;
  height: 400px;
  bottom: -6%;
  left: -6%;
  background: radial-gradient(circle, rgba(37, 244, 238, 0.12) 0%, rgba(254, 44, 85, 0.06) 60%, transparent 80%);
  animation: saOrbDrift 10s ease-in-out 2s infinite alternate-reverse;
}

/* Blue accent — center */
.sa-hero__orb--blue {
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  margin-left: -175px;
  margin-top: -175px;
  background: radial-gradient(circle, rgba(10, 175, 255, 0.07) 0%, transparent 70%);
  animation: saOrbDrift 14s ease-in-out 4s infinite alternate;
}

@keyframes saOrbDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -15px) scale(1.08); }
}

/* --- Diagonal accent lines --- */
.sa-hero__line {
  position: absolute;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(255, 255, 255, 0.03) 60%,
    transparent 100%
  );
  transform-origin: center;
}

.sa-hero__line--1 {
  width: 140%;
  height: 1px;
  top: 30%;
  left: -20%;
  transform: rotate(-8deg);
}

.sa-hero__line--2 {
  width: 120%;
  height: 1px;
  top: 60%;
  left: -10%;
  transform: rotate(-8deg);
}

.sa-hero__line--3 {
  width: 100%;
  height: 1px;
  top: 82%;
  left: 0%;
  transform: rotate(-8deg);
}

/* --- Floating social icons --- */
.sa-hero__icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.sa-hero__icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.06);
  font-size: 18px;
  animation: saIconFloat 20s linear infinite;
}

/* Rise from bottom, slowly drift upward, fade in and out */
@keyframes saIconFloat {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(40deg);
    opacity: 0;
  }
}

.sa-hero__icon--1 {
  left: 8%;
  bottom: -5%;
  font-size: 16px;
  color: rgba(225, 48, 108, 0.1);
  animation-duration: 22s;
  animation-delay: 0s;
}

.sa-hero__icon--2 {
  left: 18%;
  bottom: -8%;
  font-size: 14px;
  color: rgba(10, 175, 255, 0.08);
  animation-duration: 26s;
  animation-delay: 3s;
}

.sa-hero__icon--3 {
  right: 15%;
  bottom: -3%;
  font-size: 15px;
  color: rgba(139, 92, 246, 0.09);
  animation-duration: 24s;
  animation-delay: 6s;
}

.sa-hero__icon--4 {
  right: 8%;
  bottom: -6%;
  font-size: 13px;
  color: rgba(254, 44, 85, 0.08);
  animation-duration: 28s;
  animation-delay: 1s;
}

.sa-hero__icon--5 {
  left: 35%;
  bottom: -10%;
  font-size: 12px;
  color: rgba(252, 175, 69, 0.08);
  animation-duration: 25s;
  animation-delay: 8s;
}

.sa-hero__icon--6 {
  right: 30%;
  bottom: -4%;
  font-size: 14px;
  color: rgba(37, 244, 238, 0.07);
  animation-duration: 23s;
  animation-delay: 4s;
}

.sa-hero__icon--7 {
  left: 55%;
  bottom: -7%;
  font-size: 16px;
  color: rgba(225, 48, 108, 0.07);
  animation-duration: 27s;
  animation-delay: 10s;
}

.sa-hero__icon--8 {
  right: 45%;
  bottom: -9%;
  font-size: 13px;
  color: rgba(10, 175, 255, 0.06);
  animation-duration: 30s;
  animation-delay: 5s;
}

/* --- Content --- */
.sa-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
}

/* --- Form overrides for dark bg --- */
.sa-hero .profile-form__title {
  color: #fff !important;
}

.sa-hero .profile-form__subtitle {
  color: rgba(255, 255, 255, 0.5) !important;
}

.sa-hero .profile-form__platform {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.sa-hero .profile-form__platform:hover {
  border-color: #0aafff !important;
  color: #fff !important;
}

.sa-hero .profile-form__platform--active {
  border-color: #0aafff !important;
  background: rgba(10, 175, 255, 0.1) !important;
  color: #0aafff !important;
}

.sa-hero .profile-form__input-wrapper {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.sa-hero .profile-form__input-wrapper--focused {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #0aafff !important;
  box-shadow: 0 0 0 4px rgba(10, 175, 255, 0.12) !important;
}

.sa-hero .profile-form__input {
  color: #fff !important;
}

.sa-hero .profile-form__input::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

.sa-hero .profile-form__input-icon i {
  color: rgba(255, 255, 255, 0.35) !important;
}

.sa-hero .profile-form__clear {
  background: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.sa-hero .profile-form__clear:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
}

.sa-hero .profile-form__hint {
  background: #162038 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

.sa-hero .profile-form__hint-label {
  color: rgba(255, 255, 255, 0.45) !important;
}

.sa-hero .profile-form__hint-example {
  color: rgba(255, 255, 255, 0.75) !important;
}

.sa-hero .profile-form__hint-example code {
  background: rgba(255, 255, 255, 0.07) !important;
  color: #5ec8ff !important;
}

.sa-hero .profile-form__hint-separator {
  color: rgba(255, 255, 255, 0.25) !important;
}

.sa-hero .profile-form__error {
  color: #f87171 !important;
}

/* --- Trust bar --- */
.sa-hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
  gap: 0;
}

.sa-hero__trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 28px;
}

.sa-hero__trust-number {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.sa-hero__trust-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.sa-hero__trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .sa-hero {
    min-height: auto;
    padding: 110px 0 60px;
  }

  .sa-hero__content {
    max-width: 600px;
  }

  .sa-hero__icons {
    display: none;
  }

  .sa-hero__orb--ig { width: 300px; height: 300px; }
  .sa-hero__orb--tt { width: 250px; height: 250px; }
}

@media (max-width: 768px) {
  .sa-hero {
    padding: 100px 16px 48px;
  }

  .sa-hero__trust {
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }

  .sa-hero__trust-divider {
    width: 48px;
    height: 1px;
  }

  .sa-hero__trust-item {
    padding: 0;
  }

  .sa-hero__line { display: none; }
}

@media (max-width: 480px) {
  .sa-hero {
    padding: 90px 12px 36px;
  }

  .sa-hero__trust-number {
    font-size: 20px;
  }
}
