How to change SMS cost per message as reference: ‘Check cost of SMS’
There is a filter for that:iben_sms_default_cost_filter
Default price has been set: 0.047
you can change with a function
add_filter( 'iben_sms_default_cost_filter', 'change_sms_single_cost' );
function change_sms_single_cost(){
return 0.04;
}