/* Responsive adjustments */

@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-body {
        grid-template-columns: 1fr;
    }
    
    .metrics-sidebar {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .metric-card {
        flex: 1;
        min-width: 200px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content p {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .globe-container {
        width: 300px;
        height: 300px;
    }

    /* Mobile Navigation */
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .header-cta {
        display: none; /* Hide button on small mobile, show in menu instead if desired */
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .glass-panel {
        padding: 24px;
    }
    
    .dashboard-body {
        padding: 16px;
    }
    
    .chart-panel {
        height: 300px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .globe-container {
        width: 250px;
        height: 250px;
    }
}