<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Hit the Cutoff Technology Advisors | Transparency in Telecom</title>

    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">

    <style>

        /* 2003 Marlins Palette */

        :root {

            --marlins-teal: #00A3AD;

            --marlins-black: #000000;

            --marlins-silver: #A2AAAD;

            --light-bg: #f8f9fa;

        }

        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; }

       

        .navbar { background-color: var(--marlins-black); border-bottom: 4px solid var(--marlins-teal); }

        .navbar-brand, .nav-link { color: white !important; font-weight: bold; }

       

        .hero {

            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1558494949-ef010cbdcc51?q=80&w=2000');

            background-size: cover; color: white; padding: 100px 0; text-align: center;

        }

        .btn-teal { background-color: var(--marlins-teal); color: white; font-weight: bold; border-radius: 0; padding: 12px 30px; }

        .btn-teal:hover { background-color: #00828a; color: white; }

        .stat-bar { background-color: var(--marlins-silver); padding: 40px 0; color: var(--marlins-black); }

       

        .service-card {

            border: 1px solid var(--marlins-silver); transition: 0.3s; height: 100%; padding: 30px;

        }

        .service-card:hover { border-color: var(--marlins-teal); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

        .icon-box { color: var(--marlins-teal); font-size: 2.5rem; margin-bottom: 15px; }

        footer { background: var(--marlins-black); color: white; padding: 50px 0; }

    </style>

</head>

<body>

    <nav class="navbar navbar-expand-lg sticky-top">

        <div class="container">

            <a class="navbar-brand" href="#">HIT THE CUTOFF</a>

            <div class="ms-auto">

                <a href="#contact" class="btn btn-teal">Get an Audit</a>

            </div>

        </div>

    </nav>

    <header class="hero">

        <div class="container">

            <h1 class="display-3 fw-bold">Full Transparency in Business Connectivity</h1>

            <p class="lead mb-5">17 years of Telecom expertise. No hidden fees. Just elite optimization.</p>

            <a href="#services" class="btn btn-teal btn-lg">View Our Solutions</a>

        </div>

    </header>

    <section class="stat-bar text-center">

        <div class="container">

            <div class="row">

                <div class="col-md-4"><h3>17+ Years</h3><p>Industry Experience</p></div>

                <div class="col-md-4"><h3>$0 Cost</h3><p>Brokerage Services</p></div>

                <div class="col-md-4"><h3>100%</h3><p>Vendor Agnostic</p></div>

            </div>

        </div>

    </section>

    <section id="services" class="py-5">

        <div class="container py-5">

            <h2 class="text-center mb-5 fw-bold">Our Service Tiers</h2>

            <div class="row g-4">

                <div class="col-md-4">

                    <div class="service-card text-center">

                        <div class="icon-box">🌐</div>

                        <h4>The Foundation</h4>

                        <p>Internet & Phone Brokerage. We find the best rates and handle the carrier contracts for you.</p>

                    </div>

                </div>

                <div class="col-md-4">

                    <div class="service-card text-center">

                        <div class="icon-box">⚙️</div>

                        <h4>The Network Pro</h4>

                        <p>Network Segmentation & Hardware. Professional setup ensuring your business infrastructure is elite.</p>

                    </div>

                </div>

                <div class="col-md-4">

                    <div class="service-card text-center">

                        <div class="icon-box">🔒</div>

                        <h4>The Executive</h4>

                        <p>Managed Security & Monitoring. 24/7 protection through our elite industry partnerships.</p>

                    </div>

                </div>

            </div>

        </div>

    </section>

    <section class="bg-light py-5">

        <div class="container py-5">

            <div class="row align-items-center">

                <div class="col-md-6">

                    <h2 class="fw-bold">Why "Hit the Cutoff"?</h2>

                    <p class="lead">In baseball, the cutoff man is the essential link that ensures the ball reaches its destination with maximum efficiency. We do the same for your technology.</p>

                    <p>As a <strong>Sandler Partners Sales Partner</strong>, we bring total transparency to the procurement process. We don't work for the carriers—we work for you.</p>

                </div>

                <div class="col-md-6 text-center">

                    <div style="background: var(--marlins-silver); padding: 50px; border-radius: 10px;">

                        <h4 class="text-black">Ready for a Network Audit?</h4>

                        <p>Let's find the leaks in your current telecom spend.</p>

                        <a href="mailto:info@hitthecutoffta.com" class="btn btn-teal">Email Us Today</a>

                    </div>

                </div>

            </div>

        </div>

    </section>

    <footer>

        <div class="container text-center">

            <p>&copy; 2026 Hit the Cutoff Technology Advisors. All Rights Reserved.</p>

            <p><small>Based in Davie, FL | Serving Businesses Nationwide</small></p>

        </div>

    </footer>

</body>

</html>