/* Responsive Styles */

@media screen and (max-width: 1024px) {
    .hero-title { font-size: 60px; }
    .creative-text { font-size: 40px; }
    .about-content, .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        flex-direction: column;
        padding: 20px;
    }
    .nav-menu.active { display: flex; }
    .mobile-menu-toggle { display: block; }
    .hero-title { font-size: 40px; }
    .creative-text { font-size: 30px; }
    .section-title { font-size: 36px; }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .stats-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .creative-text { font-size: 24px; }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .logo h2 { font-size: 16px; }
}
