document.addEventListener('DOMContentLoaded', function() { // Smooth scroll for hero button const heroBtn = document.querySelector('.hero .btn'); if (heroBtn) { heroBtn.addEventListener('click', function(e) { e.preventDefault(); document.querySelector('#features').scrollIntoView({ behavior: 'smooth' }); }); } });