/* Full Orbit Leadership - Responsive Styles */

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .logo {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    /* Header adjustments */
    header {
        padding: 0.75rem 0;
    }
    
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .logo {
        font-size: 1.2rem;
        flex: 1;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 15, 26, 0.98);
        padding: 1rem 0;
        margin: 0;
        border-radius: 0 0 8px 8px;
        text-align: center;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    /* Hide CTA button on mobile */
    .cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        flex-shrink: 0;
    }
    
    /* Hero adjustments */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .orbit-container {
        width: 250px;
        height: 250px;
    }
    
    .orbit:nth-child(1) { 
        width: 80px; 
        height: 80px; 
        top: 85px; 
        left: 85px; 
    }
    .orbit:nth-child(2) { 
        width: 140px; 
        height: 140px; 
        top: 55px; 
        left: 55px; 
    }
    .orbit:nth-child(3) { 
        width: 200px; 
        height: 200px; 
        top: 25px; 
        left: 25px; 
    }
    
    /* Services adjustments */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* Section adjustments */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .positioning h2,
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .differentiators {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .positioning h2,
    .final-cta h2 {
        font-size: 1.8rem;
    }
}