<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Workforce Health Excellence</title>

    <!-- Load Tailwind CSS -->

    <script src="https://cdn.tailwindcss.com"></script>

    <style>

        /* Custom font import for a cleaner look */

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

        

        /* Custom configuration for the dark background color */

        .bg-dark-navy {

            background-color: #0d1e37; /* A deep navy blue matching the image */

            position: relative;

            overflow-x: hidden;

        }


        /* Styling for the accent curve element in the top left, matching the image */

        .top-accent {

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 30%);

            clip-path: polygon(0 0, 100% 0, 0 100%);

            opacity: 0.1;

        }


        /* Custom color for the sub-headline (a reddish maroon) */

        .text-maroon-accent {

            color: #d13038;

        }


        /* Define primary blue for the new section's title and hover effect */

        .text-primary-blue {

            color: #1a4a8f; /* A darker, official blue */

        }

        .border-primary-blue {

            border-color: #1a4a8f;

        }


        /* Set Inter as the default font */

        body {

            font-family: 'Inter', sans-serif;

        }


        /* Icon wrapper styles for the hero section */

        .hero-icon-wrapper {

            background-color: #ff8c42; /* Bright orange background */

            width: 48px;

            height: 48px;

            display: flex;

            align-items: center;

            justify-content: center;

            border-radius: 12px; /* Rounded corners for the icon block */

            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

        }


        /* Core Card Hover Effect */

        .core-card {

            transition: all 0.5s ease-in-out;

            cursor: pointer;

            border: 1px solid #e5e7eb;

            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

            display: flex;

            flex-direction: column;

        }


        /* Hover States for Card movement */

        .core-card:hover {

            transform: translateY(-4px);

            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

        }

        

        /* Ensure cards have roughly the same height on non-hovered state */

        .core-card .title-box {

            min-height: 96px; 

        }


        /* Core Card Content - Transition Setup */

        .core-card-content {

            /* Initial state: Hidden (max-height and padding are 0) */

            max-height: 0;

            opacity: 0;

            overflow: hidden;

            padding-top: 0;

            transition: max-height 0.7s ease-in-out, opacity 0.5s ease-in-out, padding-top 0.7s ease-in-out;

        }


        .core-card:hover .core-card-content {

            /* FIX: Increased max-height to a large value to prevent content from being cut off */

            max-height: 1000px;

            opacity: 1;

            padding-top: 1.5rem; /* Creates separation from title */

        }

        

        /* List spacing fixes */

        .core-card-content ul {

            margin: 0;

            padding: 0;

            list-style: none; /* Rely on custom bullet character */

        }


        .core-card-content li {

            display: flex;

            align-items: flex-start;

            line-height: 1.6; 

            /* FIX: Replaced Tailwind's space-y with a consistent margin for better control */

            margin-bottom: 1rem;

        }


        .core-card-content li:last-child {

            /* FIX: Remove margin from the last item for cleaner spacing */

            margin-bottom: 0;

        }


        /* Icon wrapper styles for Core & Beyond sections */

        .core-icon-wrapper {

            width: 32px;

            height: 32px;

            display: flex;

            align-items: center;

            justify-content: center;

            border-radius: 8px;

        }

        .core-icon-bg-orange { background-color: #ffe8d3; }

        .core-icon-bg-gray { background-color: #e2e8f0; }

        .core-icon-bg-red { background-color: #fee2e2; }


    </style>

</head>

<body class="bg-dark-navy min-h-screen">


    <!-- HERO SECTION (Existing Content) -->

    <div class="relative pt-16 pb-24 md:pt-24 md:pb-32 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">

        

        <div class="top-accent"></div>


        <div class="relative z-10 max-w-4xl mx-auto text-center md:text-left">

            <p class="text-sm font-semibold tracking-widest uppercase text-maroon-accent mb-4">

                TELEOCC®: YOUR COMPANY’S FIDUCIARY MEDICAL DIRECTOR™

            </p>

            <h1 class="text-4xl sm:text-5xl lg:text-6xl font-extrabold text-white leading-tight">

                A Revolutionary Take on an Age-Old Concept.

            </h1>

            <p class="text-xl sm:text-2xl font-semibold text-gray-300 mt-6 max-w-3xl">

                The Core of Compliance. The Future of Care. All powered by our <span class="text-maroon-accent font-extrabold">four pillars of health excellence.</span>

            </p>

        </div>


        <div class="relative z-10 mt-16 grid grid-cols-1 md:grid-cols-2 gap-6 lg:gap-8">

            <div class="bg-white p-6 md:p-8 rounded-xl shadow-2xl transition duration-300 hover:shadow-maroon-accent/50 hover:-translate-y-1 flex items-start space-x-4">

                <div class="hero-icon-wrapper flex-shrink-0">

                    <svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.101A12.012 12.012 0 0112 21.018v1.659a2.3 2.3 0 002.3-2.3v-1.659m4.618-4.101a12.012 12.012 0 013.782 5.074M1.777 9.875A12.012 12.012 0 015.618 4.101M1.777 9.875A12.012 12.012 0 015.618 4.101M4.382 17.899A12.012 12.012 0 0112 21.018"></path></svg>

                </div>

                <p class="text-lg font-bold text-gray-900 pt-1">Fiduciary Medical Directors™: Always Harvard-Trained, Always Board-Certified</p>

            </div>

            <div class="bg-white p-6 md:p-8 rounded-xl shadow-2xl transition duration-300 hover:shadow-maroon-accent/50 hover:-translate-y-1 flex items-start space-x-4">

                <div class="hero-icon-wrapper flex-shrink-0">

                    <svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m-6 2a9 9 0 1118 0 9 9 0 01-18 0z"></path></svg>

                </div>

                <p class="text-lg font-bold text-gray-900 pt-1">Proactive Risk and Compliance Management</p>

            </div>

            <div class="bg-white p-6 md:p-8 rounded-xl shadow-2xl transition duration-300 hover:shadow-maroon-accent/50 hover:-translate-y-1 flex items-start space-x-4">

                <div class="hero-icon-wrapper flex-shrink-0">

                    <svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 21h4m-2 2v-4m0 0h3m-3 0H9m12-9a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>

                </div>

                <p class="text-lg font-bold text-gray-900 pt-1">Expert-Curated Workplace Health Strategies</p>

            </div>

            <div class="bg-white p-6 md:p-8 rounded-xl shadow-2xl transition duration-300 hover:shadow-maroon-accent/50 hover:-translate-y-1 flex items-start space-x-4">

                <div class="hero-icon-wrapper flex-shrink-0">

                    <svg class="w-6 h-6 text-white" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"></path></svg>

                </div>

                <p class="text-lg font-bold text-gray-900 pt-1">AI-Driven Health Optimization</p>

            </div>

        </div>

    </div>


    <!-- TELEOCC CORE SECTION -->

    <section class="bg-white py-24 px-4 sm:px-6 lg:px-8">

        <div class="max-w-7xl mx-auto">

            <h2 class="text-3xl sm:text-4xl font-extrabold text-center text-primary-blue">

                TeleOcc® Core

            </h2>

            <p class="text-xl text-center text-gray-600 mt-4 mb-16 max-w-4xl mx-auto">

                Our Core package provides your company with one of our groundbreaking Fiduciary Medical Directors™ (FMDs™). Here's what sets our FMDs™ apart.

            </p>


            <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 items-start">

                

                <div class="core-card bg-gray-50 p-6 rounded-xl hover:border-primary-blue hover:shadow-lg hover:bg-gray-100/50">

                    <div class="title-box flex flex-col justify-start items-start h-full">

                        <div class="core-icon-wrapper mb-4">

                            <svg class="w-5 h-5 text-primary-blue" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.101A12.012 12.012 0 0112 21.018v1.659a2.3 2.3 0 002.3-2.3v-1.659m4.618-4.101a12.012 12.012 0 013.782 5.074M1.777 9.875A12.012 12.012 0 015.618 4.101M1.777 9.875A12.012 12.012 0 015.618 4.101M4.382 17.899A12.012 12.012 0 0112 21.018"></path></svg>

                        </div>

                        <h3 class="text-lg font-bold text-gray-900 leading-snug">Unwavering Fiduciary Mandate</h3>

                    </div>

                    <div class="core-card-content border-l-4 pl-4 border-primary-blue/30">

                        <ul class="text-gray-700 text-sm">

                            <li><span class="text-primary-blue font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span><strong>Fiduciary Status :</strong> Your FMD™ acts as a fiduciary with <strong>discretionary authority</strong>, we act in the exclusive <strong>best interest</strong> of your employees and beneficiaries.</span></li>

                            <li><span class="text-primary-blue font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span><strong>Key ERISA Duties:</strong> We adhere to the duties of <strong>loyalty</strong>, <strong>prudence</strong>, and <strong>diligence</strong> in optimizing your workplace health programs.</span></li>

                            <li><span class="text-primary-blue font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span><strong>Reduced Employer Liability:</strong> By assuming this fiduciary role, we offload significant <strong>ERISA compliance burden</strong> and <strong>potential liability</strong> from your HR and CFO teams.</span></li>

                        </ul>

                    </div>

                </div>


                <div class="core-card bg-gray-50 p-6 rounded-xl hover:border-[#ff8c42] hover:shadow-lg hover:bg-gray-100/50">

                    <div class="title-box flex flex-col justify-start items-start h-full">

                        <div class="core-icon-wrapper core-icon-bg-orange mb-4">

                            <svg class="w-5 h-5 text-[#ff8c42]" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 14l9-5-9-5-9 5 9 5zm0 0v-4m0 4h-4m4 0h4m-4 0v4m0 4l9-5-9-5-9 5 9 5z"></path></svg>

                        </div>

                        <h3 class="text-lg font-bold text-gray-900 leading-snug">Elite Clinical Qualifications</h3>

                    </div>

                    <div class="core-card-content border-l-4 pl-4 border-[#ff8c42]/30">

                        <ul class="text-gray-700 text-sm">

                            <li><span class="text-[#ff8c42] font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Our FMDs™ are <strong>always Harvard-trained</strong> and <strong>always Board-Certified</strong> in Occupational Medicine, making them uniquely qualified for your company’s needs.</span></li>

                            <li><span class="text-[#ff8c42] font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Through our <strong>Harvard faculty and alumni network</strong>, we bring your organization direct access to cutting-edge <strong>expertise</strong>, clinical <strong>innovation</strong>, and world-class <strong>collaboration</strong>.</span></li>

                            <li><span class="text-[#ff8c42] font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Our expertise influences plan design and <strong>monitoring vendor performance</strong> to ensure maximum value for your organization.</span></li>

                        </ul>

                    </div>

                </div>


                <div class="core-card bg-gray-50 p-6 rounded-xl hover:border-gray-500 hover:shadow-lg hover:bg-gray-100/50">

                    <div class="title-box flex flex-col justify-start items-start h-full">

                        <div class="core-icon-wrapper core-icon-bg-gray mb-4">

                            <svg class="w-5 h-5 text-gray-700" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-2.485 0-4.5 2.015-4.5 4.5S9.515 17 12 17s4.5-2.015 4.5-4.5S14.485 8 12 8zM12 8V3m0 18v-5m9-4H3m9 0h9m-9 0h-9"></path></svg>

                        </div>

                        <h3 class="text-lg font-bold text-gray-900 leading-snug">Financial & Operational Independence</h3>

                    </div>

                    <div class="core-card-content border-l-4 pl-4 border-gray-400/30">

                        <ul class="text-gray-700 text-sm">

                            <li><span class="text-gray-700 font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Our FMDs™ <strong>don’t belong to anyone but you.</strong> We are not concerned with another party’s bottom line—only your employees and company functioning.</span></li>

                            <li><span class="text-gray-700 font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>We offer an innovative and <strong>affordable subscription model</strong> that flexes with your company’s growth for a transparent, value-driven investment.</span></li>

                            <li><span class="text-gray-700 font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Our commitment to performance means we offer a <strong>discounted model with fees at risk</strong>, aligning our success directly with yours.</span></li>

                        </ul>

                    </div>

                </div>


                <div class="core-card bg-gray-50 p-6 rounded-xl hover:border-gray-800 hover:shadow-lg hover:bg-gray-100/50">

                    <div class="title-box flex flex-col justify-start items-start h-full">

                        <div class="core-icon-wrapper core-icon-bg-red mb-4">

                            <svg class="w-5 h-5 text-red-500" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>

                        </div>

                        <h3 class="text-lg font-bold text-gray-900 leading-snug">Continuous Support & Expert Oversight</h3>

                    </div>

                    <div class="core-card-content border-l-4 pl-4 border-gray-500/30">

                        <ul class="text-gray-700 text-sm">

                            <li><span class="text-gray-700 font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>We ensure continuous oversight, guidance, and compliance with <strong>all relevant regulations</strong> (ACA, HIPAA, COBRA, ADA, GINA).</span></li>

                            <li><span class="text-gray-700 font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Expert Oversight includes <strong>unlimited asynchronous support</strong> and <strong>four live meetings</strong> each month for proactive management.</span></li>

                            <li><span class="text-gray-700 font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>We help transform complex datasets into clear, <strong>actionable insights</strong> using machine learning to optimize workforce health and stay ahead of risks.</span></li>

                        </ul>

                    </div>

                </div>

            </div>

        </div>

    </section>


    <!-- NEW TELEOCC BEYOND SECTION -->

    <section class="bg-gray-50 py-24 px-4 sm:px-6 lg:px-8">

        <div class="max-w-7xl mx-auto">

            <h2 class="text-3xl sm:text-4xl font-extrabold text-center text-primary-blue">

                TeleOcc® Beyond

            </h2>

            <p class="text-xl text-center text-gray-600 mt-4 mb-16 max-w-4xl mx-auto">

                Take it a step beyond with accessible and efficient virtual medical care, ensuring your employees receive timely and expert care from anywhere.

            </p>


            <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 items-start">

                

                <div class="core-card bg-white p-6 rounded-xl hover:border-primary-blue hover:shadow-lg hover:bg-gray-50/50">

                    <div class="title-box flex flex-col justify-start items-start h-full">

                        <div class="core-icon-wrapper mb-4">

                            <svg class="w-5 h-5 text-primary-blue" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>

                        </div>

                        <h3 class="text-lg font-bold text-gray-900 leading-snug">Start Strong, Stay Strong</h3>

                    </div>

                    <div class="core-card-content border-l-4 pl-4 border-primary-blue/30">

                        <ul class="text-gray-700 text-sm">

                            <li><span class="text-primary-blue font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Tailored pre-employment screenings including vaccination requirement review</span></li>

                            <li><span class="text-primary-blue font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Work-ready onboarding with medical clearance and ADA accommodation support</span></li>

                            <li><span class="text-primary-blue font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Streamlined hiring via AI-empowered intake and a dedicated employee-health record + portal</span></li>

                        </ul>

                    </div>

                </div>


                <div class="core-card bg-white p-6 rounded-xl hover:border-[#ff8c42] hover:shadow-lg hover:bg-gray-50/50">

                    <div class="title-box flex flex-col justify-start items-start h-full">

                        <div class="core-icon-wrapper core-icon-bg-orange mb-4">

                             <svg class="w-5 h-5 text-[#ff8c42]" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v3m0 0v3m0-3h3m-3 0H9m12 0a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>

                        </div>

                        <h3 class="text-lg font-bold text-gray-900 leading-snug">Swift Care, Speedy Recovery</h3>

                    </div>

                    <div class="core-card-content border-l-4 pl-4 border-[#ff8c42]/30">

                        <ul class="text-gray-700 text-sm">

                            <li><span class="text-[#ff8c42] font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Immediate virtual workplace-injury evaluation and treatment by Harvard-trained clinicians</span></li>

                            <li><span class="text-[#ff8c42] font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Efficient return-to-work clearance with focused recovery plans</span></li>

                            <li><span class="text-[#ff8c42] font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Workers’ compensation case support to reduce downtime</span></li>

                        </ul>

                    </div>

                </div>


                <div class="core-card bg-white p-6 rounded-xl hover:border-gray-500 hover:shadow-lg hover:bg-gray-50/50">

                    <div class="title-box flex flex-col justify-start items-start h-full">

                        <div class="core-icon-wrapper core-icon-bg-gray mb-4">

                            <svg class="w-5 h-5 text-gray-700" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.101L12 21.018l-3.618-3.117A6.002 6.002 0 014.382 7.899a6 6 0 018.485 0L12 9.414l-.867.747m0 0l-2.25 2.25m5.618-4.101L12 21.018m0 0l-3.618-3.117m3.618 3.117L15.618 17.9"></path></svg>

                        </div>

                        <h3 class="text-lg font-bold text-gray-900 leading-snug">Proactive Protection</h3>

                    </div>

                    <div class="core-card-content border-l-4 pl-4 border-gray-400/30">

                        <ul class="text-gray-700 text-sm">

                            <li><span class="text-gray-700 font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Comprehensive exposure assessments, including needle-stick/bloodborne pathogen management</span></li>

                            <li><span class="text-gray-700 font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Expert evaluation and follow-up for TB exposure and other chemical/ergonomic risks</span></li>

                            <li><span class="text-gray-700 font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Prevention and compliance guidance centralized in the employer/employee health portal</span></li>

                        </ul>

                    </div>

                </div>


                <div class="core-card bg-white p-6 rounded-xl hover:border-gray-800 hover:shadow-lg hover:bg-gray-50/50">

                    <div class="title-box flex flex-col justify-start items-start h-full">

                        <div class="core-icon-wrapper core-icon-bg-red mb-4">

                           <svg class="w-5 h-5 text-red-500" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4.318 6.318a4.5 4.5 0 016.364 0L12 7.662l1.318-1.344a4.5 4.5 0 116.364 6.364L12 20.364l-7.682-7.682a4.5 4.5 0 010-6.364z"></path></svg>

                        </div>

                        <h3 class="text-lg font-bold text-gray-900 leading-snug">Empowering Long-Term Health</h3>

                    </div>

                    <div class="core-card-content border-l-4 pl-4 border-gray-500/30">

                        <ul class="text-gray-700 text-sm">

                            <li><span class="text-gray-700 font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Ongoing recovery monitoring and personalized support for chronic/long-term conditions</span></li>

                            <li><span class="text-gray-700 font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Sustained performance through proactive check-ins via the employee health portal</span></li>

                            <li><span class="text-gray-700 font-extrabold text-lg mr-2 flex-shrink-0">&bull;</span><span>Integrated workplace health strategies documented in the employee health record system</span></li>

                        </ul>

                    </div>

                </div>

            </div>

        </div>

    </section>


</body>

</html>