<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Aurebus B2B Integration Inc.</title>
<style>
    body {
        margin: 0;
        font-family: Arial, sans-serif;
        background-color: #0A1A3F;
        color: white;
        line-height: 1.5;
    }

    /* Layout */
    .section {
        padding: 80px 10%;
    }

    .hero {
        text-align: center;
        padding: 120px 10% 100px;
    }

    h1 {
        font-size: 48px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    h2 {
        font-size: 32px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    p {
        font-size: 18px;
        max-width: 900px;
        margin: 0 auto;
        opacity: 0.95;
    }

    .cta-row {
        margin-top: 40px;
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .cta-btn {
        background-color: #1B85E6;
        padding: 16px 28px;
        border-radius: 6px;
        font-size: 18px;
        color: white;
        text-decoration: none;
        font-weight: 600;
    }

    .cta-btn.secondary {
        background-color: transparent;
        border: 2px solid #1B85E6;
    }

    /* Trust Icons */
    .trust-wrapper {
        margin-top: 60px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-item {
        display: flex;
        gap: 16px;
        font-size: 18px;
    }

    .trust-icon {
        font-size: 26px;
    }

    /* Product Tiles */
    .tiles {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 40px;
    }

    .tile {
        background-color: #11224F;
        padding: 32px;
        border-radius: 8px;
        min-height: 220px;
    }

    .tile h3 {
        margin-top: 0;
        font-size: 22px;
        margin-bottom: 12px;
    }

    /* Footer */
    footer {
        background-color: #07142D;
        padding: 40px 10%;
        text-align: center;
        font-size: 14px;
        opacity: 0.8;
    }
</style>
</head>

<body>

<!-- HERO SECTION -->
<section class="hero">
    <h1>Be Retail‑Ready in 30–60 Days.<br>Across the U.S. & Canada.</h1>
    <p>Aurebus B2B Integration Inc. helps brands, suppliers, and logistics teams ship on time, invoice correctly, and meet retail compliance — without adding internal complexity.</p>

    <div class="cta-row">
        <a class="cta-btn" href="#">Book a 20‑min Fit Call</a>
        <a class="cta-btn secondary" href="#">Get Pricing & Timeline</a>
    </div>

    <!-- TRUST HIGHLIGHTS -->
    <div class="trust-wrapper">
        <div class="trust-item">
            <span class="trust-icon">✔</span>
            <span>Reduce chargebacks & OTIF penalties.</span>
        </div>
        <div class="trust-item">
            <span class="trust-icon">🏷️</span>
            <span>Accurate labels & ASNs (SSCC‑18, GS1‑128).</span>
        </div>
        <div class="trust-item">
            <span class="trust-icon">🚚</span>
            <span>Faster carrier onboarding with EDI + real‑time APIs.</span>
        </div>
        <div class="trust-item">
            <span class="trust-icon">📄</span>
            <span>Ready for X12 healthcare flows (837/835/270‑271/276‑277/278).</span>
        </div>
    </div>
</section>

<!-- PRODUCT SECTION -->
<section class="section">
    <h2>Integration Services for North America</h2>
    <p>Stabilize your supply-chain data flows with modern EDI, APIs, and automated compliance.</p>

    <div class="tiles">
        <div class="tile">
            <h3>Retail EDI Compliance Sprint</h3>
            <p>Go live in 30–60 days with Walmart, Amazon & Big Retail including ASN, Labeling, and Testing.</p>
        </div>
        <div class="tile">
            <h3>Chargeback Shield</h3>
            <p>Lower AR deductions and prevent OTIF & ASN‑related penalties through automated validation.</p>
        </div>
        <div class="tile">
            <h3>3PL & Carrier Connectivity</h3>
            <p>Fast onboarding with EDI/API connectors and automated exception alerts.</p>
        </div>
        <div class="tile">
            <h3>Cross‑Border CA ↔ US</h3>
            <p>Unified layer for X12, EDIFACT, and API flows across both markets.</p>
        </div>
        <div class="tile">
            <h3>Healthcare X12 Flows</h3>
            <p>837, 835, 270‑271, 276‑277, 278 — monitored, validated, and error‑free.</p>
        </div>
        <div class="tile">
            <h3>API & EDI Modernization</h3>
            <p>Introduce APIs without breaking existing EDI processes — hybrid‑ready architecture.</p>
        </div>
    </div>
</section>

<!-- CTA -->
<section class="section" style="text-align:center;">
    <h2>Ready to stabilize your supply‑chain integrations?</h2>
    <div class="cta-row">
        <a class="cta-btn" href="#">Book a 20‑min Fit Call</a>
        <a class="cta-btn secondary" href="#">Request Pricing & Timeline</a>
    </div>
</section>

<!-- FOOTER -->
<footer>
    Aurebus B2B Integration Inc. · Canada · Supply‑Chain Integration & EDI/API Services
</footer>

</body>
</html>