`<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Business & Financial Services | WBC Consulting Group</title>

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>

<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800;900&family=Playfair+Display:wght@500;600;700&display=swap" rel="stylesheet">

<style>

/* =========================================================
   WBC CONSULTING GROUP
   BUSINESS FUNDING LANDING PAGE
========================================================= */

:root {
    --navy: #061323;
    --navy2: #0b1d33;
    --navy3: #102946;

    --gold: #d5b36a;
    --gold-light: #f1d99b;
    --gold-dark: #765518;

    --white: #ffffff;
    --cream: #f7f6f2;
    --cream2: #ece9e1;

    --text: #0a1626;
    --body: #3e4d61;
    --light-text: #dfe6ee;

    --border: rgba(7,20,38,.16);

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --container: 1240px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: #fff;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    padding: 24px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #fff;
}

.logo-mark {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid var(--gold-light);

    font-family: var(--serif);
    color: var(--gold-light);
    font-weight: 700;

    background: rgba(0,0,0,.35);
}

.logo-text strong {
    display: block;
    font-size: 13px;
    letter-spacing: .13em;
    line-height: 1.1;
}

.logo-text small {
    display: block;
    margin-top: 5px;
    font-size: 7px;
    color: #d9e0e8;
    letter-spacing: .16em;
}

.header-btn {
    padding: 12px 20px;

    border: 1px solid var(--gold-light);

    color: #fff;
    background: rgba(0,0,0,.45);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;

    transition: .3s ease;
}

.header-btn:hover {
    background: var(--gold);
    color: var(--navy);
}


/* =========================================================
   BUTTON
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    min-height: 60px;
    padding: 0 30px;

    background: var(--gold);
    color: var(--navy);

    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;

    box-shadow: 0 15px 35px rgba(0,0,0,.22);

    transition: .3s ease;
}

.btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

.btn span {
    font-size: 20px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 850px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #020a14;
    color: #fff;
}

.hero-image {
    position: absolute;
    inset: 0;

    background-image:
        url("https://us.chat-img.sintra.ai/857f704e-0402-4371-b5ab-946cad46ddbb/53dfc572-f5ec-47cd-9100-8cfedb795533/image.png?h=864&w=1184");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2,9,18,.98) 0%,
            rgba(2,9,18,.96) 35%,
            rgba(2,9,18,.84) 65%,
            rgba(2,9,18,.70) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 110px;
    padding-bottom: 190px;
}

.eyebrow {
    color: var(--gold-light);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 850px;

    margin-top: 18px;

    font-family: var(--serif);
    font-size: clamp(55px, 7vw, 94px);

    line-height: 1.02;

    letter-spacing: -.055em;

    color: #fff;
}

.hero h1 span {
    display: block;
    color: var(--gold-light);
}

.hero-subtitle {
    max-width: 720px;

    margin-top: 28px;

    color: #f0f3f7;

    font-size: 20px;
    font-weight: 500;

    line-height: 1.65;
}

.hero-subtitle strong {
    color: #fff;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;

    margin-top: 38px;
}

.hero-link {
    color: #fff;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero-link span {
    color: var(--gold-light);
    margin-left: 7px;
}

.hero-note {
    max-width: 700px;

    margin-top: 25px;
    padding: 16px 19px;

    border-left: 3px solid var(--gold);
    border-top: 1px solid rgba(241,217,155,.3);
    border-right: 1px solid rgba(241,217,155,.18);
    border-bottom: 1px solid rgba(241,217,155,.18);

    background: rgba(0,0,0,.55);

    color: #edf1f5;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {
    position: absolute;
    z-index: 4;

    right: 0;
    bottom: 0;
    left: 0;

    width: min(calc(100% - 40px), var(--container));
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3,1fr);

    border-top: 1px solid rgba(255,255,255,.25);
}

.stat {
    padding: 27px 30px;

    min-height: 120px;

    background: rgba(2,10,20,.93);

    border-right: 1px solid rgba(255,255,255,.16);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;

    color: var(--gold-light);

    font-family: var(--serif);
    font-size: 37px;
    line-height: 1;
}

.stat span {
    display: block;

    margin-top: 8px;

    color: #e7edf3;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    padding: 125px 0;

    background: var(--cream);
}

.section-label {
    color: var(--gold-dark);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.intro-grid {
    display: grid;
    grid-template-columns: .35fr 1fr;
    gap: 80px;
}

.intro h2 {
    max-width: 850px;

    margin-top: 16px;

    font-family: var(--serif);
    font-size: clamp(43px, 5vw, 70px);

    line-height: 1.08;

    letter-spacing: -.04em;
}

.intro h2 span {
    color: var(--gold-dark);
}

.intro-lead {
    margin-top: 27px;

    max-width: 850px;

    color: #25364b;

    font-size: 19px;
    font-weight: 600;
}

.intro p {
    max-width: 780px;

    margin-top: 18px;

    color: var(--body);

    font-size: 15px;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why {
    padding: 125px 0;
    background: #fff;
}

.heading {
    max-width: 800px;
    margin-bottom: 60px;
}

.heading h2 {
    margin-top: 14px;

    font-family: var(--serif);

    font-size: clamp(43px,5vw,70px);

    line-height: 1.08;

    letter-spacing: -.04em;
}

.heading h2 span {
    color: var(--gold-dark);
}

.heading p {
    margin-top: 20px;

    max-width: 650px;

    color: var(--body);
    font-size: 16px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 17px;
}

.why-card {
    padding: 35px;

    min-height: 250px;

    border: 1px solid var(--border);

    background: #fff;

    transition: .3s ease;
}

.why-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 25px 60px rgba(5,18,34,.13);

    border-color: rgba(118,85,24,.5);
}

.card-number {
    color: var(--gold-dark);

    font-family: var(--serif);
    font-size: 22px;
}

.why-card h3 {
    margin-top: 35px;

    color: var(--text);

    font-family: var(--serif);
    font-size: 24px;
}

.why-card p {
    margin-top: 10px;

    color: var(--body);

    font-size: 14px;
}


/* =========================================================
   FUNDING OPTIONS
========================================================= */

.funding-options {
    padding: 125px 0;

    background: var(--navy);

    color: #fff;
}

.funding-options .section-label {
    color: var(--gold-light);
}

.funding-options .heading h2 {
    color: #fff;
}

.funding-options .heading p {
    color: #dfe6ed;
}

.funding-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;

    background: rgba(255,255,255,.2);
}

.funding-card {
    min-height: 350px;

    padding: 38px;

    background: var(--navy);

    transition: .3s ease;
}

.funding-card:hover {
    background: var(--navy3);
}

.funding-icon {
    color: var(--gold-light);

    font-family: var(--serif);
    font-size: 25px;
}

.funding-card h3 {
    margin-top: 50px;

    color: #fff;

    font-family: var(--serif);
    font-size: 27px;
}

.funding-card p {
    margin-top: 13px;

    color: #dce4ec;

    font-size: 14px;
}

.funding-card a {
    display: inline-block;

    margin-top: 28px;

    color: var(--gold-light);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    padding: 125px 0;

    background: var(--cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.process-card {
    position: relative;

    min-height: 390px;

    padding: 38px;

    background: #fff;

    border: 1px solid var(--border);
}

.process-number {
    color: rgba(7,20,38,.15);

    font-family: var(--serif);
    font-size: 75px;

    line-height: .9;
}

.process-card h3 {
    margin-top: 45px;

    color: var(--text);

    font-family: var(--serif);
    font-size: 27px;
}

.process-card p {
    margin-top: 15px;

    color: var(--body);

    font-size: 14px;
}

.process-time {
    position: absolute;

    right: 30px;
    top: 35px;

    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* =========================================================
   CREDIT PREPARATION
========================================================= */

.credit-prep {
    position: relative;

    padding: 125px 0;

    background:
        linear-gradient(
            90deg,
            rgba(2,9,18,.98),
            rgba(2,9,18,.91)
        ),
        url("https://us.chat-img.sintra.ai/857f704e-0402-4371-b5ab-946cad46ddbb/56d89e08-51ac-4e6d-9faa-7584ec6a8e7f/image.png?h=864&w=1184");

    background-size: cover;
    background-position: center;

    color: #fff;
}

.credit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;

    align-items: center;
}

.credit-prep .section-label {
    color: var(--gold-light);
}

.credit-prep h2 {
    margin-top: 15px;

    color: #fff;

    font-family: var(--serif);
    font-size: clamp(43px,5vw,67px);

    line-height: 1.06;

    letter-spacing: -.04em;
}

.credit-prep h2 span {
    color: var(--gold-light);
}

.credit-prep p {
    margin-top: 25px;

    color: #e5ebf1;

    font-size: 16px;
}

.prep-options {
    display: grid;
    gap: 14px;

    margin-top: 30px;
}

.prep-option {
    padding: 25px;

    border: 1px solid rgba(255,255,255,.2);

    background: rgba(0,0,0,.45);
}

.prep-option strong {
    color: var(--gold-light);

    font-family: var(--serif);
    font-size: 22px;
}

.prep-option span {
    display: block;

    margin-top: 4px;

    color: #fff;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.prep-option p {
    margin-top: 8px;

    color: #dce4eb;

    font-size: 13px;
}


/* =========================================================
   CORPORATE BUILDER
========================================================= */

.builder {
    padding: 125px 0;

    background: #fff;
}

.builder-grid {
    display: grid;
    grid-template-columns: 1fr .75fr;

    gap: 80px;

    align-items: center;
}

.builder h2 {
    margin-top: 15px;

    font-family: var(--serif);
    font-size: clamp(43px,5vw,67px);

    line-height: 1.06;

    letter-spacing: -.04em;
}

.builder h2 span {
    color: var(--gold-dark);
}

.builder-lead {
    margin-top: 24px;

    color: #26364b;

    font-size: 17px;
    font-weight: 600;
}

.builder p {
    margin-top: 16px;

    color: var(--body);

    font-size: 14px;
}

.builder-list {
    display: grid;
    gap: 0;

    margin-top: 30px;
}

.builder-list div {
    padding: 17px 0;

    border-bottom: 1px solid var(--border);
}

.builder-list strong {
    color: var(--text);

    font-family: var(--serif);
    font-size: 17px;
}

.builder-list span {
    display: block;

    margin-top: 3px;

    color: var(--body);

    font-size: 13px;
}

.builder-stat {
    min-height: 500px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 50px;

    background: var(--navy);

    color: #fff;

    box-shadow: 25px 30px 70px rgba(7,20,38,.18);
}

.builder-stat .small {
    color: var(--gold-light);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
}

.builder-stat .number {
    margin-top: 10px;

    color: var(--gold-light);

    font-family: var(--serif);
    font-size: 100px;

    line-height: .9;
}

.builder-stat h3 {
    margin-top: 12px;

    color: #fff;

    font-family: var(--serif);
    font-size: 27px;
}

.builder-stat p {
    margin-top: 20px;

    color: #dfe6ee;

    font-size: 14px;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    position: relative;

    min-height: 610px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #020a14;

    color: #fff;
}

.cta-bg {
    position: absolute;
    inset: 0;

    background:
        url("https://us.chat-img.sintra.ai/857f704e-0402-4371-b5ab-946cad46ddbb/53dfc572-f5ec-47cd-9100-8cfedb795533/image.png?h=864&w=1184");

    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;

    background: rgba(2,8,18,.96);
}

.cta-content {
    position: relative;
    z-index: 2;

    text-align: center;
}

.cta h2 {
    max-width: 850px;

    margin: auto;

    font-family: var(--serif);
    font-size: clamp(45px,6vw,76px);

    line-height: 1.05;

    letter-spacing: -.04em;
}

.cta h2 span {
    color: var(--gold-light);
}

.cta p {
    max-width: 650px;

    margin: 23px auto 0;

    color: #e1e7ed;

    font-size: 16px;
}

.cta .btn {
    margin-top: 34px;
}

.secure {
    margin-top: 20px;

    color: #cfd8e1;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}


/* =========================================================
   AFFILIATE SECTION
========================================================= */

.affiliate {
    position: relative;

    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #f7f6f2 0%,
            #e9e5dc 100%
        );
}

.affiliate-grid {
    display: grid;

    grid-template-columns: 1fr .7fr;

    gap: 80px;

    align-items: center;
}

.affiliate h2 {
    margin-top: 14px;

    color: var(--text);

    font-family: var(--serif);
    font-size: clamp(43px,5vw,67px);

    line-height: 1.05;

    letter-spacing: -.04em;
}

.affiliate h2 span {
    color: var(--gold-dark);
}

.affiliate-lead {
    margin-top: 23px;

    max-width: 720px;

    color: #26364b;

    font-size: 18px;
    font-weight: 600;
}

.affiliate p {
    margin-top: 15px;

    max-width: 700px;

    color: var(--body);

    font-size: 14px;
}

.affiliate-benefits {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 10px;

    margin-top: 30px;
}

.affiliate-benefit {
    padding: 18px;

    background: #fff;

    border: 1px solid var(--border);
}

.affiliate-benefit strong {
    display: block;

    color: var(--text);

    font-family: var(--serif);
    font-size: 17px;
}

.affiliate-benefit span {
    display: block;

    margin-top: 4px;

    color: var(--body);

    font-size: 11px;
}

.affiliate-box {
    padding: 45px;

    background: var(--navy);

    color: #fff;

    box-shadow: 20px 25px 65px rgba(5,18,34,.18);
}

.affiliate-box .label {
    color: var(--gold-light);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.affiliate-box h3 {
    margin-top: 14px;

    color: #fff;

    font-family: var(--serif);
    font-size: 32px;
}

.affiliate-box p {
    margin-top: 16px;

    color: #dce4eb;

    font-size: 13px;
}

.affiliate-box .btn {
    width: 100%;

    margin-top: 28px;
}


/* =========================================================
   DISCLOSURE
========================================================= */

.disclosure {
    padding: 35px 0;

    background: var(--cream2);
}

.disclosure-inner {
    display: grid;

    grid-template-columns: 40px 1fr;

    gap: 18px;

    max-width: 1050px;
}

.disclosure-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border: 2px solid var(--gold-dark);
    border-radius: 50%;

    color: var(--gold-dark);

    font-family: var(--serif);
    font-weight: 700;
}

.disclosure h4 {
    color: var(--text);

    font-size: 13px;
}

.disclosure p {
    margin-top: 5px;

    color: #344357;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 70px 0 30px;

    background: #020b16;

    color: #fff;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr .7fr .7fr;

    gap: 70px;
}

.footer h3 {
    color: #fff;

    font-family: var(--serif);
    font-size: 24px;
}

.footer p {
    margin-top: 15px;

    color: #cdd6df;

    font-size: 12px;
}

.footer-column h4 {
    color: var(--gold-light);

    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.footer-column a {
    display: block;

    margin-top: 9px;

    color: #d7dfe7;

    font-size: 12px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 55px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.14);

    color: #aeb9c4;

    font-size: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1000px) {

    .main-nav {
        display: none;
    }

    .intro-grid,
    .credit-grid,
    .builder-grid,
    .affiliate-grid {
        grid-template-columns: 1fr;
    }

    .funding-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .builder-stat {
        min-height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media(max-width:700px) {

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .header {
        padding: 15px 0;
    }

    .logo-text {
        display: none;
    }

    .logo-mark {
        width: 44px;
        height: 44px;
    }

    .hero {
        min-height: 920px;
        align-items: flex-start;
    }

    .hero-image {
        background-position: 65% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2,9,18,.98),
                rgba(2,9,18,.98)
            );
    }

    .hero-content {
        padding-top: 140px;
        padding-bottom: 260px;
    }

    .hero h1 {
        font-size: 53px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;
    }

    .stat {
        min-height: auto;

        padding: 15px 20px;

        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .stat strong {
        display: inline;

        font-size: 27px;
    }

    .stat span {
        display: inline;

        margin-left: 7px;
    }

    .intro,
    .why,
    .funding-options,
    .process,
    .credit-prep,
    .builder,
    .affiliate {
        padding: 90px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .funding-grid {
        grid-template-columns: 1fr;
    }

    .affiliate-benefits {
        grid-template-columns: 1fr;
    }

    .affiliate-box {
        padding: 32px;
    }

    .cta {
        min-height: 570px;
    }

    .cta h2 {
        font-size: 45px;
    }

    .disclosure-inner {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 4px;
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}

</style>
</head>


<body>


<!-- ======================================================
     HEADER
====================================================== -->

<header class="header">

    <div class="container header-inner">

        <a href="/" class="logo">

            <div class="logo-mark">
                WBC
            </div>

            <div class="logo-text">
                <strong>WBC CONSULTING GROUP</strong>
                <small>BUSINESS • CREDIT • CAPITAL</small>
            </div>

        </a>

        <a href="#apply" class="header-btn">
            Get Started
        </a>

    </div>

</header>


<!-- ======================================================
     HERO
====================================================== -->

<section class="hero">

    <div class="hero-image"></div>

    <div class="hero-overlay"></div>

    <div class="container hero-content">

        <div class="eyebrow">
            BUSINESS & FINANCIAL SERVICES
        </div>

        <h1>
            Get Funded
            <span>Faster.</span>
        </h1>

        <p class="hero-subtitle">
            Need funding for your business or personal goals?
            We strategically combine <strong>personal and business
            funding solutions</strong> to help maximize your total
            funding potential.
        </p>

        <div class="hero-actions">

            <a href="#apply" class="btn">
                See What You May Qualify For
                <span>→</span>
            </a>

            <a href="#process" class="hero-link">
                How It Works <span>↓</span>
            </a>

        </div>

        <div class="hero-note">
            <strong>No judgment. No cookie-cutter formulas.</strong>
            We evaluate your complete financial picture and build
            a funding strategy around your actual situation.
        </div>

    </div>


    <div class="hero-stats">

        <div class="stat">
            <strong>2–3</strong>
            <span>Days — Funding After Approval</span>
        </div>

        <div class="stat">
            <strong>5–7</strong>
            <span>Days — Expedited Credit Preparation</span>
        </div>

        <div class="stat">
            <strong>85+</strong>
            <span>Target Paydex Score</span>
        </div>

    </div>

</section>


<!-- ======================================================
     INTRO
====================================================== -->

<section class="intro">

    <div class="container intro-grid">

        <div>
            <div class="section-label">
                A Strategic Approach
            </div>
        </div>

        <div>

            <h2>
                Your financial picture is
                <span>more than one number.</span>
            </h2>

            <p class="intro-lead">
                We evaluate both your personal and business
                funding position, then develop a strategy designed
                around your goals.
            </p>

            <p>
                Combination funding allows personal and business
                funding sources to work together rather than
                relying on a single funding source.
            </p>

            <p>
                Whether you are looking for fast access to capital,
                preparing your credit profile, or building long-term
                business credit, our approach is designed to help
                position you for the strongest opportunity available
                based on your circumstances.
            </p>

        </div>

    </div>

</section>


<!-- ======================================================
     WHY CHOOSE US
====================================================== -->

<section class="why">

    <div class="container">

        <div class="heading">

            <div class="section-label">
                Why Choose Us
            </div>

            <h2>
                Funding strategy built around
                <span>your reality.</span>
            </h2>

            <p>
                No two financial profiles are identical. Our process
                focuses on understanding your starting point and
                preparing the strongest possible funding strategy.
            </p>

        </div>


        <div class="why-grid">


            <div class="why-card">

                <div class="card-number">
                    01
                </div>

                <h3>
                    Fast Funding
                </h3>

                <p>
                    When you qualify, our streamlined approval
                    process can put funds in your hands in as
                    little as 2–3 days after approval.
                </p>

            </div>


            <div class="why-card">

                <div class="card-number">
                    02
                </div>

                <h3>
                    Combination Funding
                </h3>

                <p>
                    We strategically combine personal and business
                    funding sources to pursue the highest combined
                    amount possible based on qualification.
                </p>

            </div>


            <div class="why-card">

                <div class="card-number">
                    03
                </div>

                <h3>
                    No Judgment
                </h3>

                <p>
                    Bankruptcy, late payments, and collections do
                    not automatically mean the conversation is over.
                    We focus on your complete financial picture.
                </p>

            </div>


            <div class="why-card">

                <div class="card-number">
                    04
                </div>

                <h3>
                    Hands-On Guidance
                </h3>

                <p>
                    We work with you step-by-step to prepare your
                    credit profile, organize documentation, and
                    position your application for approval.
                </p>

            </div>


        </div>

    </div>

</section>


<!-- ======================================================
     FUNDING OPTIONS
====================================================== -->

<section class="funding-options">

    <div class="container">

        <div class="heading">

            <div class="section-label">
                Funding Solutions
            </div>

            <h2>
                One strategy.
                <span>Multiple opportunities.</span>
            </h2>

            <p>
                Choose the path that best fits your current financial
                position, timeline, and business objectives.
            </p>

        </div>


        <div class="funding-grid">


            <div class="funding-card">

                <div class="funding-icon">
                    $01
                </div>

                <h3>
                    Combination Personal + Business Funding
                </h3>

                <p>
                    Strategically combine personal and business
                    funding opportunities to maximize your overall
                    funding potential.
                </p>

                <a href="#apply">
                    Explore Funding →
                </a>

            </div>


            <div class="funding-card">

                <div class="funding-icon">
                    $02
                </div>

                <h3>
                    Credit Preparation
                </h3>

                <p>
                    Get your credit profile prepared for funding
                    through an expedited 5–7 day service or a
                    comprehensive 30–40 day preparation process.
                </p>

                <a href="#apply">
                    Get Credit Ready →
                </a>

            </div>


            <div class="funding-card">

                <div class="funding-icon">
                    $03
                </div>

                <h3>
                    Corporate Business Credit Builder
                </h3>

                <p>
                    Establish a stronger business credit profile
                    and work toward qualifying for funding without
                    a personal guarantee.
                </p>

                <a href="#builder">
                    Build Business Credit →
                </a>

            </div>


        </div>

    </div>

</section>


<!-- ======================================================
     PROCESS
====================================================== -->

<section class="process" id="process">

    <div class="container">

        <div class="heading">

            <div class="section-label">
                How It Works
            </div>

            <h2>
                Three steps.
                <span>One clear strategy.</span>
            </h2>

        </div>


        <div class="process-grid">


            <div class="process-card">

                <div class="process-number">
                    01
                </div>

                <div class="process-time">
                    Consult
                </div>

                <h3>
                    We Assess Your Position
                </h3>

                <p>
                    We evaluate your personal and business funding
                    picture and identify the strongest combination
                    for your goals.
                </p>

            </div>


            <div class="process-card">

                <div class="process-number">
                    02
                </div>

                <div class="process-time">
                    Prepare
                </div>

                <h3>
                    We Prepare Your Profile
                </h3>

                <p>
                    We prepare your credit profile for approval.
                    Expedited preparation may take 5–7 days, while
                    standard preparation is 30–40 days.
                </p>

            </div>


            <div class="process-card">

                <div class="process-number">
                    03
                </div>

                <div class="process-time">
                    Get Funded
                </div>

                <h3>
                    Pursue Your Funding
                </h3>

                <p>
                    With your profile prepared, qualified applicants
                    may receive funding in as little as 2–3 days
                    after approval.
                </p>

            </div>


        </div>

    </div>

</section>


<!-- ======================================================
     CREDIT PREPARATION
====================================================== -->

<section class="credit-prep">

    <div class="container credit-grid">

        <div>

            <div class="section-label">
                Credit Preparation
            </div>

            <h2>
                Credit challenged?
                <span>We've got you covered.</span>
            </h2>

            <p>
                Bad credit doesn't necessarily mean no funding.
                We assist with preparing your credit profile so
                you can put yourself in the strongest possible
                position for qualification.
            </p>

            <a href="#apply" class="btn">
                Start Your Funding Strategy
                <span>→</span>
            </a>

        </div>


        <div class="prep-options">

            <div class="prep-option">

                <strong>
                    5–7 Days
                </strong>

                <span>
                    Expedited Service
                </span>

                <p>
                    Fast-track credit preparation for situations
                    where timing is critical.
                </p>

            </div>


            <div class="prep-option">

                <strong>
                    30–40 Days
                </strong>

                <span>
                    Standard Service
                </span>

                <p>
                    Comprehensive credit preparation designed
                    to strategically improve your overall profile.
                </p>

            </div>

        </div>

    </div>

</section>


<!-- ======================================================
     CORPORATE BUILDER
====================================================== -->

<section class="builder" id="builder">

    <div class="container builder-grid">

        <div>

            <div class="section-label">
                Corporate Builder Service
            </div>

            <h2>
                Build business credit.
                <span>Protect your position.</span>
            </h2>

            <p class="builder-lead">
                Establish a strong business credit profile designed
                to create a path toward No-PG funding opportunities.
            </p>

            <p>
                Our Corporate Builder Service focuses on establishing
                the right business foundation, developing business
                credit profiles, and strategically building trade
                accounts.
            </p>


            <div class="builder-list">

                <div>
                    <strong>
                        Business Entity & Structure Guidance
                    </strong>

                    <span>
                        Establish the right foundation for credit strength
                        and future growth.
                    </span>
                </div>


                <div>
                    <strong>
                        Business Credit Profile Setup
                    </strong>

                    <span>
                        Active profiles at Dun & Bradstreet,
                        Experian Business, and Equifax Business.
                    </span>
                </div>


                <div>
                    <strong>
                        Strategic Vendor & Trade Lines
                    </strong>

                    <span>
                        Strategic accounts designed to help build
                        your Paydex Score.
                    </span>
                </div>


                <div>
                    <strong>
                        Path to No-PG Funding
                    </strong>

                    <span>
                        Work toward business funding without relying
                        on a personal guarantee.
                    </span>
                </div>


                <div>
                    <strong>
                        Ongoing Support
                    </strong>

                    <span>
                        Continued guidance as your business credit
                        profile develops.
                    </span>
                </div>

            </div>

        </div>


        <div class="builder-stat">

            <div class="small">
                BUSINESS CREDIT TARGET
            </div>

            <div class="number">
                85+
            </div>

            <h3>
                PAYDEX SCORE
            </h3>

            <p>
                Build strong business credit in as little as
                6 weeks and work toward unlocking funding
                opportunities without a personal guarantee.
            </p>

            <a href="#apply" class="btn">
                Learn More
                <span>→</span>
            </a>

        </div>

    </div>

</section>


<!-- ======================================================
     FINAL CTA
====================================================== -->

<section class="cta" id="apply">

    <div class="cta-bg"></div>
    <div class="cta-overlay"></div>

    <div class="container cta-content">

        <div class="eyebrow">
            READY TO GET STARTED?
        </div>

        <h2>
            Let's build your
            <span>funding strategy.</span>
        </h2>

        <p>
            Whether you need combination personal/business funding,
            credit preparation, or a long-term business credit strategy,
            the first step is understanding what you may qualify for.
        </p>

        <a href="https://www.wbcconsultinggroup.com/widget/form/6EZLSPOr6VWXUHyviqMl"
           class="btn">
            Start Your Application
            <span>→</span>
        </a>

        <div class="secure">
            🔒 Secure Application · Your Information Is Protected
        </div>

    </div>

</section>


<!-- ======================================================
     AFFILIATE OPPORTUNITY
====================================================== -->

<section class="affiliate">

    <div class="container affiliate-grid">

        <div>

            <div class="section-label">
                Want To Go Further?
            </div>

            <h2>
                Turn your network
                into an <span>opportunity.</span>
            </h2>

            <p class="affiliate-lead">
                Know business owners, entrepreneurs, or individuals
                who are looking for funding and financial solutions?
                Our affiliate opportunity allows qualified partners
                to refer prospective clients to WBC Consulting Group.
            </p>

            <p>
                Whether you're a business professional, consultant,
                marketer, entrepreneur, or simply connected to people
                who need funding guidance, you can introduce them to
                our services and build an additional revenue opportunity.
            </p>


            <div class="affiliate-benefits">

                <div class="affiliate-benefit">
                    <strong>
                        Referral Opportunity
                    </strong>

                    <span>
                        Introduce qualified prospects.
                    </span>
                </div>


                <div class="affiliate-benefit">
                    <strong>
                        Business Network
                    </strong>

                    <span>
                        Turn valuable connections into opportunities.
                    </span>
                </div>


                <div class="affiliate-benefit">
                    <strong>
                        Professional Support
                    </strong>

                    <span>
                        Give your referrals access to a funding team.
                    </span>
                </div>


                <div class="affiliate-benefit">
                    <strong>
                        Additional Revenue
                    </strong>

                    <span>
                        Potential compensation for eligible referrals.
                    </span>
                </div>

            </div>

        </div>


        <div class="affiliate-box">

            <div class="label">
                WBC Affiliate Opportunity
            </div>

            <h3>
                Build relationships.
                Create opportunities.
            </h3>

            <p>
                Become a referral partner and introduce qualified
                prospects to WBC Consulting Group's business funding,
                credit preparation, and business credit services.
            </p>

            <a href="https://www.wbcconsultinggroup.com"
               class="btn">
                Become An Affiliate
                <span>→</span>
            </a>

        </div>

    </div>

</section>


<!-- ======================================================
     DISCLOSURE
====================================================== -->

<section class="disclosure">

    <div class="container disclosure-inner">

        <div class="disclosure-icon">
            i
        </div>

        <div>

            <h4>
                Important Funding Disclosure
            </h4>

            <p>
                Approval and funding are subject to underwriting
                and third-party lender requirements. This website
                and its materials are for informational purposes only
                and do not constitute a loan offer, promise, or
                guarantee of funding. Qualification, approval,
                funding amounts, rates, terms, and timing may vary
                based on individual circumstances and lender
                requirements.
            </p>

        </div>

    </div>

</section>


<!-- ======================================================
     FOOTER
====================================================== -->

<footer class="footer">

    <div class="container">

        <div class="footer-grid">

            <div>

                <h3>
                    WBC Consulting Group
                </h3>

                <p>
                    Business funding, credit preparation, business
                    credit building, and strategic financial services
                    designed to help clients pursue their next level
                    of opportunity.
                </p>

            </div>


            <div class="footer-column">

                <h4>
                    Explore
                </h4>

                <a href="#process">
                    How It Works
                </a>

                <a href="#builder">
                    Business Credit
                </a>

                <a href="#apply">
                    Apply
                </a>

                <a href="#affiliate">
                    Affiliate Opportunity
                </a>

            </div>


            <div class="footer-column">

                <h4>
                    Services
                </h4>

                <a href="#apply">
                    Business Funding
                </a>

                <a href="#apply">
                    Personal Funding
                </a>

                <a href="#apply">
                    Credit Preparation
                </a>

                <a href="#builder">
                    Corporate Builder
                </a>

            </div>

        </div>


        <div class="footer-bottom">

            © 2026 WBC Consulting Group. All rights reserved.
            Business & Financial Services.

        </div>

    </div>

</footer>


</body>
</html>
```