/* Hide entirely on desktop */
.mobile-feature-stack-wrapper {
    display: none;
    background: #08080f;
}

/* Show only on mobile */
@media screen and (max-width: 768px) {
    .mobile-feature-stack-wrapper {
        display: block;
        position: relative;
        z-index: 10;
    }

    /* Keep #features in the DOM with full dimensions for ScrollOrb,
       but make all content invisible */
    #features {
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* Card design matching WhyChooseScene1 FeatureCard */
.mobile-feature-card-styled {
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.9), rgba(15, 15, 25, 0.95)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px);
    padding: 28px 24px !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 0 !important;
    will-change: transform, opacity;
}

.mobile-fc-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(56, 189, 248, 0.15));
    border: 1px solid rgba(124, 58, 237, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.mobile-fc-title {
    font-size: 20px;
    font-weight: 700;
    color: #E0E0E8;
    margin: 0 0 8px 0;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.mobile-fc-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(160, 160, 180, 0.55);
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}