// script.js - Interactive Elements document.addEventListener('DOMContentLoaded', function() { const learnMoreBtn = document.getElementById('learn-more-btn'); const contactForm = document.getElementById('contact-form'); // Button animation and alert for engagement learnMoreBtn.addEventListener('click', function() { alert('Explore Trezor Suite to manage your crypto securely! Redirecting to features section.'); document.querySelector('#features').scrollIntoView({ behavior: 'smooth' }); }); // Simple form submission handler for user interaction contactForm.addEventListener('submit', function(event) { event.preventDefault(); alert('Thank you for your message! Our team will contact you soon to assist with Trezor Suite and crypto security.'); contactForm.reset(); // Reset form after submission }); });