/* BrainyTech - Responsive Styles */
/* Media queries for mobile and tablet devices */

/* Responsive */
@media (max-width: 1024px) {
    .heroGrid,
    .whyChooseGrid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .heroVisual {
        height: 500px;
    }

    .neuralNetwork {
        width: 300px;
        height: 300px;
    }

    .connectionNetwork {
        width: 300px;
        height: 300px;
    }

    .abstractShape {
        opacity: 0.5;
    }

    .servicesGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stepsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .techGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .heroTitle {
        font-size: 42px;
    }

    .heroDescription {
        font-size: 16px;
    }

    .techStackIcons {
        gap: 12px;
        margin: 24px 0;
        padding: 16px 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .techStackIcons::-webkit-scrollbar {
        display: none;
    }

    .techIcon {
        width: 36px;
        height: 36px;
        padding: 6px;
        flex-shrink: 0;
    }

    .heroTechStack {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .heroStats {
        flex-direction: column;
        gap: 16px;
    }

    .heroVisual {
        height: 400px;
    }

    .orbitContainer {
        width: 250px;
        height: 250px;
    }

    .ring1 {
        width: 200px;
        height: 200px;
        margin: -100px 0 0 -100px;
    }

    .ring2 {
        width: 150px;
        height: 150px;
        margin: -75px 0 0 -75px;
    }

    .ring3 {
        width: 100px;
        height: 100px;
        margin: -50px 0 0 -50px;
    }

    .abstractShape {
        opacity: 0.3;
    }

    .sectionTitle {
        font-size: 32px;
    }

    .servicesGrid,
    .stepsGrid,
    .techGrid {
        grid-template-columns: 1fr;
    }

    .heroButtons {
        flex-direction: column;
    }

    .btnHeroPrimary, .btnHeroSecondary {
        width: 100%;
        justify-content: center;
    }

    .statCardsContainer {
        grid-template-columns: 1fr;
    }

    .ctaCard {
        padding: 60px 30px;
    }

    .ctaTitle {
        font-size: 36px;
    }

    .ctaDescription {
        font-size: 18px;
    }

    .ctaButtons {
        flex-direction: column;
    }

    .partnersSection {
        padding: 40px 0;
    }

    .partnersTrack {
        gap: 40px;
    }

    .partnerLogo {
        min-width: 150px;
        height: 50px;
    }
}
