/* ===========================================
   RESPONSIVE STYLES
   =========================================== */

/* ========== MOBILE NAVIGATION ========== */
@media (max-width: 768px) {
    .nav {
        padding: 0 5%;
        height: 70px;
    }
    
    .logo {
        height: 45px;
    }
    
    .logo img {
        max-width: 200px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(55, 55, 55, 0.98);
        flex-direction: column;
        padding: 0;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        padding: 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    /* Adjust hero section for mobile nav */
    .hero-section {
        padding-top: 70px;
    }
}

/* ========== LARGE DEVICES ========== */
@media (max-width: 1200px) {
    h1 {
        font-size: 4em;
    }

    .platform-heading {
        font-size: 4.5rem;
    }

    .page-header h1 {
        font-size: 4em;
    }
    
    .heading-2 {
        font-size: 3rem;
    }
    
    .stat-box h2 {
        font-size: 3.5rem;
    }
    
    .stat-box p {
        font-size: 1.5rem;
    }
    
    .platform-card h3 {
        font-size: 2.8rem;
    }
    
    .collage-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== MEDIUM DEVICES ========== */
@media (max-width: 900px) {
    /* General text adjustments */
    h1 {
        font-size: 3.5em;
        line-height: 1.1;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.5rem);
    }
    
    /* Hero section adjustments */
    .hero-section {
        height: auto;
        min-height: calc(100vh - 70px);
    }
    
    .coordinates-container {
        display: none;
    }
    
    /* Intro section adjustments */
    .intro-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .confetti-container {
        position: relative;
        width: 100%;
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }
    
    .div-block-4 {
        width: 100%;
    }
    
    .heading-2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    /* Stats grid adjustments */
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-box {
        padding: 20px 15px;
    }

    .stat-box h2 {
        font-size: 2.5rem;
    }

    .stat-box p {
        font-size: 1.2rem;
    }
    
    /* Platform section adjustments */
    .platform-section {
        padding: 60px 0;
    }

    .platform-heading {
        font-size: 3.5rem;
    }

    .platform-subtext {
        font-size: 1.5rem;
        width: 90%;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .platform-card {
        padding: 30px 20px;
    }

    .platform-card h3 {
        font-size: 2rem;
    }

    .platform-card p {
        font-size: 1.2rem;
    }
    
    /* Partners section adjustments */
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .partners-heading h2 {
        font-size: 2.5rem;
    }
    
    /* Partners marquee adjustments */
    .partners-marquee {
        height: 100px;
    }

    .marquee-track span {
        height: 70px;
        min-width: 130px;
    }

    .marquee-track span img {
        max-height: 50px;
        max-width: 100px;
    }

    .marquee-track {
        gap: 30px;
    }
    
    /* Collage section adjustments */
    .megatext {
        font-size: 4rem;
        margin-bottom: -20px;
    }
    
    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    /* Content text adjustments */
    .content-text p {
        font-size: 1.1rem;
    }
    
    .lead-text {
        font-size: 1.5rem;
    }
    
    .intro-tekst {
        font-size: 1.1rem;
    }
    
    .intro-tekst.big {
        font-size: 1.3rem;
    }
    
    .w-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

/* ========== SMALL DEVICES ========== */
@media (max-width: 600px) {
    /* Hero section */
    .hero-section {
        min-height: 90vh;
        padding: 70px 20px 40px;
    }
    
    h1 {
        font-size: 2.5em;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    /* Stats grid */
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-box h2 {
        font-size: 2rem;
    }

    .stat-box p {
        font-size: 1rem;
    }
    
    /* Scroll indicator */
    .scroll-indicator {
        font-size: 1rem;
        bottom: 20px;
    }
    
    .mouse {
        width: 25px;
        height: 40px;
    }
    
    /* Platform section */
    .platform-heading {
        font-size: 2.5rem;
    }

    .platform-subtext {
        font-size: 1.2rem;
    }

    .platform-card h3 {
        font-size: 1.8rem;
    }

    .platform-card p {
        font-size: 1rem;
    }
    
    /* Partners section */
    .partners-section {
        padding: 40px 0;
    }

    .partners-marquee {
        height: 80px;
    }

    .marquee-track span {
        height: 60px;
        min-width: 110px;
        padding: 0 10px;
    }

    .marquee-track span img {
        max-height: 40px;
        max-width: 90px;
    }

    .marquee-track {
        gap: 20px;
        animation: marquee 20s linear infinite;
    }
    
    /* Intro section */
    .intro {
        padding: 60px 0;
    }
    
    .heading-2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .intro-tekst {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .intro-tekst.big {
        font-size: 1.2rem;
    }
    
    .button-phone-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .w-button {
        padding: 15px 30px;
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }
    
    /* Collage section */
    .brands-future-section {
        padding: 60px 0;
    }
    
    .collage-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .collage-item {
        aspect-ratio: 16/9;
    }
    
    .megatext {
        font-size: 3rem;
        margin-bottom: -15px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 5%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .col h4 {
        text-align: center;
    }
    
    .col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Content text adjustments */
    .content-text {
        margin-bottom: 40px;
    }
    
    .lead-text {
        font-size: 1.3rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
}

/* ========== EXTRA SMALL DEVICES ========== */
@media (max-width: 400px) {
    h1 {
        font-size: 2em;
    }
    
    .platform-heading {
        font-size: 2rem;
    }
    
    .stat-box h2 {
        font-size: 1.8rem;
    }
    
    .heading-2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}