💻 Contractor NDA / Acuerdo para Contratistas

Generate a comprehensive bilingual NDA for freelancers, consultants, and independent contractors in Latin America. Includes IP assignment, work product clauses, and confidentiality terms.

🏢 Company Information

👤 Contractor Information

⚖️ Agreement Clauses

⚗️ Legal Terms

📄 Live Preview / Vista Previa

`; const blob = new Blob([html], { type: 'application/msword' }); const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = 'Contractor-NDA-Bilingual.doc'; link.click(); } function resetForm() { if (confirm('Reset all fields? / Restablecer todos los campos?')) { document.querySelectorAll('input[type="text"], textarea').forEach(el => el.value = ''); document.getElementById('effectiveDate').value = ''; updatePreview(); } } document.addEventListener('DOMContentLoaded', updatePreview);