On a scale of 1-10, how likely are you to recommend our service to your friends or family?

Not at all Likely

Neutral

Exteremely Likely

It's always a pleasure to serve you!
Help us improve our services

It's always a pleasure to serve you!
Help us improve our services

// SHORT DEBUG VERSION (function() { const GOOGLE_REVIEW_URL = 'https://g.page/r/CQTpK1anbcK4EBM/review'; function init() { alert('Script loaded'); const form = document.querySelector('form'); if (!form) { alert('No form found'); return; } form.addEventListener('submit', function(e) { setTimeout(function() { const inputs = form.querySelectorAll('input:checked, select, input[type="number"]'); let info = 'Found inputs:\n'; inputs.forEach(inp => info += `${inp.type}:${inp.value}\n`); alert(info); const score = getScore(); if (score !== null) { alert(`Score: ${score}`); if (score > 7) window.location.href = GOOGLE_REVIEW_URL; else window.location.href = 'https://prosolve.cpa'; } else alert('No score found'); }, 1000); }); } function getScore() { const checked = document.querySelector('input[type="radio"]:checked'); if (checked) { const val = parseInt(checked.value); if (val >= 0 && val <= 10) return val; } return null; } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', init); } else init(); })();