/* ============================================ */
/* БЛОК РАЗРАБОТКИ МОБИЛЬНОГО ПРИЛОЖЕНИЯ       */
/* ============================================ */

.app-dev-section {
    margin: 2rem 0;
}

.app-dev-container {
    background: #FAFAFA;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: all 0.25s ease;
}

.app-dev-container:hover {
    border-color: #B0B0B0;
    background: #FEFEFE;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.app-dev-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #E8E8E8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.app-dev-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.app-dev-content {
    flex: 1;
}

.app-dev-title {
    font-size: 1.35rem;
    font-weight: 650;
    color: #000;
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
}

.app-dev-description {
    font-size: 0.9rem;
    color: #3A3A3A;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    max-width: 600px;
}

.app-dev-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.app-dev-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #FFFFFF;
    border: 1px solid #D6D6D6;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #1F1F1F;
    transition: all 0.2s ease;
}

.app-dev-feature:hover {
    border-color: #999;
    background: #F5F5F5;
}

.app-dev-feature-icon {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #4A4A4A;
    letter-spacing: 0.5px;
}

.app-dev-feature-text {
    font-size: 0.75rem;
    color: #1F1F1F;
}

.app-dev-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #FFF8E1;
    border: 1px solid #E6D590;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #5C4A00;
    letter-spacing: 0.2px;
}

.app-dev-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #B8860B;
    border-radius: 50%;
    animation: blinkSoft 2s infinite;
}

/* Адаптивность блока приложения */
@media (max-width: 680px) {
    .app-dev-container {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.2rem;
    }
    
    .app-dev-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        border-radius: 16px;
    }
    
    .app-dev-description {
        font-size: 0.85rem;
    }
    
    .app-dev-features {
        justify-content: center;
    }
    
    .app-dev-status {
        margin: 0 auto;
    }
}