/* ======================================
   Responsive Breakpoints
   Mobile: < 768px
   Tablet: 768px - 1024px
   Desktop: > 1024px
   ====================================== */

/* Tablet & Mobile */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-content {
        padding: 0 var(--spacing-md);
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 6rem var(--spacing-lg) var(--spacing-lg);
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        padding: var(--spacing-sm) 0;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Grids */
    .banking-grid,
    .actions-grid,
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-card .number {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}