Inside mockStatic constructor, use
withSettings().defaultAnswer(invocation -> {
if ("now".equals(invocation.getMethod().getName())) {
return (your now mock);
}
return invocation.callRealMethod();
})