<?php
define('ABEMS_ACCESS', true);
require_once __DIR__ . '/config/config.php';

$page_title       = 'Privacy Policy · A Believers EMS Houston';
$page_description = 'How A Believers EMS LLC collects, uses, and protects personal information of patients, families and visitors. HIPAA-aligned privacy practices.';
$page_breadcrumb  = [['Home', 'index.php'], ['Privacy Policy', null]];

layout('head', compact('page_title', 'page_description', 'page_breadcrumb'));
layout('header');
?>
<main id="main">
    <header class="page-header">
        <div class="container">
            <nav class="breadcrumb" aria-label="Breadcrumb">
                <a href="<?= e(SITE_URL) ?>/">Home</a>
                <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 18l6-6-6-6"/></svg>
                <span>Privacy Policy</span>
            </nav>
            <h1 class="js-reveal">Privacy <em class="display">Policy</em></h1>
            <p class="js-reveal-fade">How we collect, use and protect your information.</p>
        </div>
    </header>

    <section class="section">
        <div class="container container-md">
            <p style="color:var(--fg-muted);font-size:var(--fs-sm);">Last updated: <?= date('F Y') ?></p>

            <h2>Quick answer</h2>
            <div class="answer-block">
                A Believers EMS LLC collects only the information needed to coordinate medical transport and respond to inquiries. We never sell your data. Patient health information is handled under HIPAA. Contact form data goes to dispatch and is retained only as long as needed to schedule and bill for the transport you requested.
            </div>

            <h2>What we collect</h2>
            <p>When you fill out a contact form, request a quote, or call us, we collect the information you give us: name, phone, email, pickup and drop-off addresses, dates, and clinical notes (if any). When you visit this website, we also automatically collect standard server logs (IP, browser type, pages visited) and anonymized Web Vitals data used to measure page performance.</p>

            <h2>How we use it</h2>
            <p>We use your information to (1) schedule and dispatch your transport, (2) handle insurance billing with Medicare, Medicaid or your private insurer, (3) respond to your questions, and (4) improve our service. We do not sell your information. We share it only with the parties needed to complete your transport (receiving facility, payer) and only the minimum necessary.</p>

            <h2>HIPAA</h2>
            <p>Patient health information (PHI) is handled under the Health Insurance Portability and Accountability Act. See our <a href="<?= e(SITE_URL) ?>/hipaa.php">HIPAA Notice of Privacy Practices</a> for the full statement of your rights, our obligations, and how to file a complaint.</p>

            <h2>Cookies and analytics</h2>
            <p>This website uses minimal cookies (functional only) and an anonymized Web Vitals measurement layer to monitor real-user page speed. We do not use ad-tracking pixels. We do not share data with third-party advertisers.</p>

            <h2>Your rights</h2>
            <p>You may ask us at any time to see, correct or delete the information we hold about you. Call (281) 587-8700 or email <a href="mailto:<?= e(CONTACT_EMAIL) ?>"><?= e(CONTACT_EMAIL) ?></a>. We respond within 30 days.</p>

            <h2>Contact</h2>
            <p>Questions about this policy? Reach Rodney or Rod at <a href="tel:<?= e(CONTACT_PHONE_RAW) ?>"><?= e(CONTACT_PHONE) ?></a> or <a href="mailto:<?= e(CONTACT_EMAIL) ?>"><?= e(CONTACT_EMAIL) ?></a>.</p>
        </div>
    </section>
    <?php module('sections/final-cta.php'); ?>
</main>
<?php
layout('footer');
layout('scripts');
