/* Responsive Styles - All Media Queries */

/* Tablet - 1024px */
@media (max-width: 1024px) {

    .nordic-grid,
    .steps-grid,
    .benefits-grid,
    .reviews-grid,
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .unlock-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .unlock-features {
        justify-content: center;
    }
}

/* Tablet Small - 768px */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .country-selector {
        display: none;
    }

    .site-header {
        width: calc(100% - 2rem);
        padding: 0.625rem 1rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-stats {
        gap: 1rem;
        padding: 1rem;
    }

    .hero-stat-num {
        font-size: 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .nordic-header h2,
    .steps-header h2,
    .pricing-header h2,
    .faq-header h2 {
        font-size: 1.75rem;
    }

    .nordic-grid,
    .steps-grid,
    .benefits-grid,
    .reviews-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* Pricing step indicators - keep in one row */
    .pricing>.container>div[style*="display:flex"][style*="justify-content:center"] {
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
    }

    .pricing>.container>div[style*="display:flex"]>div[style*="width:3rem"] {
        display: none !important;
    }

    .pricing>.container>div[style*="display:flex"]>div[style*="display:flex"] span[style*="font-weight:600"] {
        font-size: 0.75rem !important;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero {
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Keep device cards in single row */
    #devices.card-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    #devices .select-card {
        padding: 0.75rem 0.5rem;
    }

    #devices .select-card .num {
        font-size: 0.75rem;
    }

    #devices .select-card svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }

    .select-card {
        padding: 1rem 0.75rem;
    }

    .duration-price {
        font-size: 1.5rem;
    }

    .cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .dark-cta-content h2,
    .unlock h2 {
        font-size: 1.5rem;
    }

    .sport-card {
        flex: 0 0 260px;
    }

    .poster-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Very Small Mobile - 360px */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }

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

    .unlock-features {
        grid-template-columns: 1fr;
    }
}

/* Device cards - ALWAYS 4 columns on mobile */
@media (max-width: 768px) {
    #devices.card-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.5rem !important;
    }

    #devices.card-grid .select-card {
        padding: 0.5rem 0.25rem !important;
    }

    #devices.card-grid .select-card .num {
        font-size: 0.7rem !important;
        white-space: nowrap;
    }

    #devices.card-grid .select-card svg {
        width: 1rem !important;
        height: 1rem !important;
        margin-bottom: 0.25rem !important;
    }
}