/* ============================================
   NEXIROX — App Section Styles
   ============================================ */

.nx-app-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(8, 8, 10, 0.8) 0%, rgba(20, 20, 25, 0.8) 100%);
    border-top: 1px solid rgba(255, 193, 7, 0.1);
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
    position: relative;
    overflow: hidden;
}

.nx-app-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.nx-app-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* App Image */
.nx-app-section__image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.nx-app-section__image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.15);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nx-app-section__image:hover img {
    transform: scale(1.05);
}

.nx-app-section__placeholder {
    font-size: 4rem;
    opacity: 0.3;
}

/* App Content */
.nx-app-section__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nx-app-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.nx-app-section__subtitle {
    font-size: 1rem;
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
}

/* Download Buttons */
.nx-app-section__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.nx-app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.nx-app-btn--ios {
    background: linear-gradient(135deg, #555 0%, #333 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.nx-app-btn--ios:hover {
    background: linear-gradient(135deg, #666 0%, #444 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.nx-app-btn--android {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #000;
    border-color: rgba(255, 193, 7, 0.3);
}

.nx-app-btn--android:hover {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    border-color: rgba(255, 193, 7, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
}

.nx-app-btn svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .nx-app-section__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nx-app-section__image {
        min-height: 300px;
        order: 2;
    }

    .nx-app-section__content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .nx-app-section {
        padding: 2.5rem 0;
    }

    .nx-app-section__title {
        font-size: 1.5rem;
    }

    .nx-app-section__subtitle {
        font-size: 0.95rem;
    }

    .nx-app-section__buttons {
        gap: 0.75rem;
    }

    .nx-app-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nx-app-section {
        padding: 2rem 0;
    }

    .nx-app-section__title {
        font-size: 1.25rem;
    }

    .nx-app-section__subtitle {
        font-size: 0.9rem;
    }

    .nx-app-section__buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nx-app-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}
