<?php
    $headlines = [
        'Beautiful Proposals',
        'Guided Selling',
        'Error Proofing',
        'Quote Faster',
        'Simple Training',
        'Connecting'
    ];
    
    $texts = [
        "Create beautiful custom proposals for your product or service configured to match your customer's requirements.  Using EosCloudStore's Document Generator, you can create any document or report your business needs with just a few clicks.",
        "Guided selling can make both sure you get the most out of every quote or order by making sure customers and reps quickly find the parts you want them to find.",
        "Getting a quote right for a customer can be difficult.  Even with a lot of experience, a rep can easily misquote or misorder a part, costing you money and frustrating your customers.  <a href='/contactus'>contact us</a> to hear about how one of our customers went from having 40% of their orders require rework to just 2%.",
        "The importance of getting quotes and orders right is paramount, and that process can take time.  Having a system that ensures the rep can get them in right and quickly can drastically reduce the amount of time spent on each one and increase productivity for your entire sales team.",
        "Getting good reps can be difficult.  And training them can be even more difficult.  One of our customers took upto 6 weeks to train new reps to enter orders.  After working with a CPQ system, their new reps can now enter orders the same day they are hired.",
        "Because EosCloudStore is in the cloud and fully responsive, all your reps are not connected to all your quotes and orders from wherever they are in the world."
    ];
    $icons = [
        "img/icons/proposals.png",
        "img/icons/guided_selling.png",
        "img/icons/error_proofing.png",
        "img/icons/speed_icon.png",
        "img/icons/simplified_training_icon.png",
        "img/icons/connecting_icon.png"
    ];
?>


<?php $__env->startSection('main'); ?>
<div class="widewrapper pagetitle" style="padding-bottom:10px;padding-top:0">
    <div class="container">
        <img class="img-responsive" src="<?php echo URL::asset('img/logo.png');; ?>" style="height:150px;"/>
    </div>
</div>
<div class="container" role="main">
    <div class="widewrapper">        
        <div class="row" style="padding-top:20px;">
            <?php foreach ($icons as $icon): ?>
            <div class="col-md-2 text-center">
                <img class="image thumnail" src="<?= $icon ?>" style="height:100px;"/>
            </div>
            <?php endforeach; ?>
        </div>     
        <div class="row">
            <?php foreach ($headlines as $headline): ?>
            <div class="col-md-2 text-center">
                <div class="text">
                    <h3 class="headline-text"><?= $headline ?></h3>
                </div>
            </div>
            <?php endforeach; ?>
        </div>
        <div class="row">
            <?php foreach ($texts as $text): ?>
            <div class="col-md-2">
                <div class="text text-center">
                    <p><?= $text ?></p>
                </div>
            </div>
            <?php endforeach ?>
        </div>
    </div>
    <div class="row text-center">
        <a class="btn btn-grove-one btn-xlg btn-bold contact-form" data-toggle="modal" data-target="#myModal" data-form="Starting Configuring Button">LEARN MORE</a>
        <br/><br/><br/>
    </div>

</div>  
<?php $__env->stopSection(); ?>
<?php echo $__env->make('subpages', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>