/* Responsive CSS - Media Queries and Mobile Styles */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    /* Navigation */
    .nav-menu {
        gap: 1.5rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 3rem;
    }
    
    /* Solutions Grid */
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Products */
    .product {
        gap: 3rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Section */
    .hero {
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    /* Solutions Grid */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Clients */
    .clients-logos {
        gap: 2rem;
    }
    
    .client-name {
        font-size: 1.5rem;
    }
    
    /* Founders Grid */
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Products */
    .product {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .product:nth-child(even) {
        direction: ltr;
    }
    
    .product-content h3 {
        font-size: 2rem;
    }
    
    .product-visual {
        height: 300px;
    }
    
    .product-animation {
        width: 150px;
        height: 150px;
    }
    
    /* Coming Soon */
    .coming-soon-content p {
        font-size: 1rem;
    }
    
    /* CTA Section */
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-subtitle {
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    /* Padding Adjustments */
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    /* Typography */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Cards */
    .solution-card,
    .founder-card {
        padding: 1.5rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Large Desktop (min-width: 1440px) */
@media (min-width: 1440px) {
    /* Container */
    .container {
        max-width: 1320px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 4.5rem;
    }
    
    /* Products */
    .product {
        gap: 6rem;
    }
}

/* Extra Large Desktop (min-width: 1920px) */
@media (min-width: 1920px) {
    /* Container */
    .container {
        max-width: 1440px;
    }
    
    /* Typography Scale Up */
    .hero-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle,
    .section-subtitle {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    /* Hide unnecessary elements */
    .nav-header,
    .cursor,
    .cursor-follower,
    .particles,
    .mobile-menu-toggle,
    .hero-cta-group,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
    
    /* Reset backgrounds */
    body,
    section {
        background: white !important;
        color: black !important;
    }
    
    /* Page breaks */
    .hero,
    .what-we-do,
    .products {
        page-break-after: always;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles here if needed */
}