If you want to place the content of the WP page you created and have the list of featured clients below that then you will probably want to use 2 loops for this page template.
Here’s some code that worked for me. That code about the cloning is there so that the template recognizes the first query as the information about the page itself, and not confusing it with the list it generates for the featured clients.
<div>
<?php //Start Multiple Loops SEE: https://codex.www.ads-software.com/The_Loop ?>
<?php //First Loop: Load the content of the page ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); ?>
<div <?php post_class() ?>>
<div class="entry">
<?php the_content(); ?>
</div><!--entry-->
<?php edit_post_link('Edit this entry.', '<span>', '</span>'); ?>
</div><!--post-->
<?php endwhile; endif; ?>
<?php //you need to store the original query in a variable, then re-assign it with the other Loop. This way, you can use all the standard functions that rely on all the globals.?>
<?php $temp_query = clone $wp_query; ?>
<h3 class="sub-title">Featured <?php the_title(); ?></h3>
<?php //Second Loop: Call featured clients list ?>
<?php query_posts('category_name=featured-clients&showposts=10'); ?>
<?php if (have_posts()) : while (have_posts()) : the_post();
if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); ?>
<div <?php post_class() ?>>
<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<div class="entry">
<?php the_excerpt();?>
<a class="more-link" href="<?php the_permalink(); ?>">Continue Reading</a>
</div>
</div>
<?php endwhile; endif; ?>
<?php // now back to our regularly scheduled programming ?>
<?php $wp_query = clone $temp_query; ?>
</div>