Sign up below to win a landing page for your business.
Good luck!

/* Basic Styling */ #cp_nl_form { max-width: 600px; margin: 50px auto; font-family: Arial, sans-serif; padding: 20px; border-radius: 12px; background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.1); } .form-step { display: none; animation: fadeIn 0.3s ease-in-out; } .form-step.active { display: block; } label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 18px; } input, select { width: 100%; padding: 12px; margin-bottom: 20px; font-size: 16px; border: 1px solid #ccc; border-radius: 6px; } input[type=“radio“] { width: auto; margin-right: 10px; } button { padding: 12px 25px; font-size: 16px; border: none; border-radius: 6px; background: #000; color: #fff; cursor: pointer; } .nav-buttons { display: flex; justify-content: space-between; } @keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
Yes No
Select one Attract clients Improve branding Increase sales Other
Select one Very important Important Neutral Not important
Yes No
let currentStep = 0; const steps = document.querySelectorAll(„.form-step“); function showStep(step) { steps.forEach((s, index) => { s.classList.toggle(„active“, index === step); }); } function nextStep() { const inputs = steps[currentStep].querySelectorAll(„input, select“); for (let input of inputs) { if (!input.checkValidity()) { input.reportValidity(); return; } } if (currentStep 0) { currentStep–; showStep(currentStep); } } function onSubmit(token) { if (document.getElementById(„cp_nl_form“).reportValidity()) { document.getElementById(„cp_nl_form“).submit(); } }