:root {
    --dbp-navy: #071D35;
    --dbp-dark: #03152B;
    --dbp-green: #14933A;
    --dbp-bright-green: #21A84A;
    --dbp-orange: #F47721;
    --dbp-light-green: #F3FAF5;
    --dbp-light-gray: #F7F9F8;
    --dbp-text: #071D35;
    --dbp-muted: #657384;
    --dbp-border: #E4EAE6;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dbp-text);
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: var(--dbp-navy);
}

.text-navy { color: var(--dbp-navy) !important; }
.text-green { color: var(--dbp-green) !important; }
.text-orange { color: var(--dbp-orange) !important; }
.text-muted { color: var(--dbp-muted) !important; }

.bg-navy { background-color: var(--dbp-navy) !important; }
.bg-dark { background-color: var(--dbp-dark) !important; }
.bg-light-green { background-color: var(--dbp-light-green) !important; }
.bg-light-gray { background-color: var(--dbp-light-gray) !important; }

/* Custom Buttons */
.btn-dbp-primary {
    background-color: var(--dbp-green);
    color: #FFFFFF;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    transition: all 0.25s ease;
}

.btn-dbp-primary:hover {
    background-color: var(--dbp-bright-green);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 147, 58, 0.3);
}

.btn-dbp-secondary {
    background-color: #FFFFFF;
    color: var(--dbp-green);
    font-weight: 700;
    border: 2px solid var(--dbp-green);
    border-radius: 8px;
    padding: 10px 24px;
    transition: all 0.25s ease;
}

.btn-dbp-secondary:hover {
    background-color: var(--dbp-light-green);
    color: var(--dbp-green);
    transform: translateY(-1px);
}

/* Micro Interactions */
.hover-card {
    transition: all 0.25s ease;
    border: 1px solid var(--dbp-border);
}

.hover-card:hover {
    transform: translateY(-4px);
    border-color: var(--dbp-green);
    box-shadow: 0 10px 30px rgba(7, 29, 53, 0.05);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1050;
    transition: all 0.25s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.05) translateY(-2px);
    color: white;
}

@media (max-width: 767px) {
    .floating-whatsapp {
        bottom: 18px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

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



.btn-dbp-secondary-white {
    background-color: #FFFFFF;
    color: var(--dbp-green);
    font-weight: 700;
    border: 2px solid var(--dbp-green);
    border-radius: 8px;
    padding: 12px 24px;
    transition: all 0.25s ease;
}

.btn-dbp-secondary-white:hover {
    background-color: var(--dbp-light-green);
    color: var(--dbp-green);
    transform: translateY(-1px);
}



.tracking-widest {
    letter-spacing: 0.1em;
}

@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid var(--dbp-border);
    }
}



/* ==================================================
   MIDDLE SECTIONS (BENEFITS, STATS, GROWTH, HOW IT WORKS)
   ================================================== */

.dbp-benefits {
    margin-top: -55px; /* Overlap hero */
    z-index: 10;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(7, 29, 53, 0.08);
    border: 1px solid #E7ECE9;
    background: #FFFFFF;
}

.dbp-benefits .icon-circle {
    width: 48px;
    height: 48px;
    border: 1px solid var(--dbp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dbp-green);
    flex-shrink: 0;
}

.dbp-benefits .benefit-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--dbp-navy);
    line-height: 1.2;
}

.dbp-benefits .benefit-desc {
    font-size: 13px;
    color: #617080;
    line-height: 1.2;
}

.dbp-statistics {
    background: var(--dbp-navy);
    border-radius: 16px;
    margin-top: 20px;
}

.dbp-statistics .stat-number {
    font-size: 34px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.dbp-statistics .stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.2;
}

.dbp-statistics .stat-icon {
    font-size: 44px;
    color: #72C53F;
    line-height: 1;
}

@media (min-width: 992px) {
    .divider-right {
        border-right: 1px solid rgba(255, 255, 255, 0.18);
    }
    .divider-right-dark {
        border-right: 1px solid #E7ECE9;
    }
}

/* Growth Visual (Image Based) */
.dbp-growth-section {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.growth-content {
    display: flex;
    flex-direction: column;
}

.growth-eyebrow {
    color: var(--dbp-green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.growth-heading {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dbp-navy);
}

.growth-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #526174;
    max-width: 460px;
}

.growth-benefits {
    font-size: 15px;
    font-weight: 500;
    color: var(--dbp-navy);
}

.growth-benefits i {
    font-size: 18px;
}

.growth-cta {
    background-color: var(--dbp-green);
    color: #FFFFFF;
    border: none;
    border-radius: 7px;
    padding: 13px 22px;
    font-weight: 700;
    font-size: 15px;
    width: 100%;
    max-width: 380px;
    transition: all 0.25s ease;
}

.growth-cta:hover {
    background-color: #0F7D30;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.cta-arrow-circle {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.cta-arrow-circle i {
    font-size: 16px;
    font-weight: 800;
}

.growth-visual {
    width: 100%;
}

.growth-img {
    width: 100%;
    max-width: 760px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .dbp-growth-section {
        padding: 60px 0;
    }
    .growth-heading {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .dbp-growth-section {
        padding: 45px 0;
    }
    .growth-heading {
        font-size: 34px;
    }
    .growth-cta {
        max-width: 100%;
    }
    .growth-visual {
        margin-top: 30px;
    }
}

/* Process Cards */
.dbp-how-it-works-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.dbp-how-it-works-line::before, .dbp-how-it-works-line::after {
    content: '';
    height: 2px;
    width: 60px;
    background-color: rgba(20, 147, 58, 0.3);
}

.dbp-process-card {
    background: #FFFFFF;
    border: 1px solid #E7ECE9;
    border-radius: 16px;
    padding: 30px 20px;
    height: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.25s ease;
}

.dbp-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: rgba(20, 147, 58, 0.3);
}

.dbp-process-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--dbp-navy);
    color: #FFFFFF;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.dbp-ready-card {
    background: #F3FAF5;
    border: 1px solid #DDE8E0;
    border-radius: 16px;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 24px;
    color: var(--dbp-navy);
}

/* Categories Section */
.dbp-categories-section {
    padding: 60px 0;
    background-color: #FAFCFF; /* Slight off-white to make the white grid pop */
}

.categories-eyebrow {
    color: var(--dbp-green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.categories-eyebrow::before,
.categories-eyebrow::after {
    content: "";
    height: 1px;
    width: 60px;
    background-color: #E2E8F0;
    margin: 0 15px;
}

.categories-grid-container {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    padding: 20px;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-right: 1px solid #F1F5F9;
    border-bottom: 1px solid #F1F5F9;
    width: 25%;
}

.category-item:nth-child(4n) {
    border-right: none;
}

.category-item:nth-last-child(-n+3) {
    border-bottom: none;
}

@media (max-width: 991px) {
    .category-item {
        width: 33.33%;
    }
    .category-item:nth-child(4n) { border-right: 1px solid #F1F5F9; }
    .category-item:nth-child(3n) { border-right: none; }
}

@media (max-width: 767px) {
    .category-item {
        width: 50%;
    }
    .category-item:nth-child(3n) { border-right: 1px solid #F1F5F9; }
    .category-item:nth-child(2n) { border-right: none; }
}

.category-icon {
    font-size: 28px;
    color: var(--dbp-navy);
}

.category-icon-green {
    color: var(--dbp-green);
}

.category-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--dbp-navy);
    line-height: 1.2;
}

/* Partnership Model Section */
.dbp-partnership-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.partnership-box-navy {
    background-color: var(--dbp-navy);
    border-radius: 12px 0 0 12px;
    padding: 50px 60px;
    color: #FFFFFF;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partnership-box-white {
    background-color: #FFFFFF;
    border-radius: 0 12px 12px 0;
    padding: 40px 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .partnership-box-navy {
        border-radius: 12px 12px 0 0;
        padding: 40px 30px;
    }
    .partnership-box-white {
        border-radius: 0 0 12px 12px;
        padding: 30px 20px;
    }
}

.partnership-eyebrow {
    color: var(--dbp-orange);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.partnership-heading {
    font-size: 38px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.1;
}

.partnership-desc {
    font-size: 15px;
    color: #E2E8F0;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

.btn-discuss {
    background-color: var(--dbp-green);
    color: #FFFFFF;
    border: none;
    border-radius: 7px;
    padding: 10px 18px 10px 22px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.25s ease;
    align-self: flex-start;
}

.btn-discuss:hover {
    background-color: #0F7D30;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-discuss .circle-arrow {
    background-color: #FFFFFF;
    color: var(--dbp-green);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

/* Sale Table */
.sale-title {
    color: var(--dbp-navy);
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sale-table {
    width: 100%;
    font-size: 14px;
    color: var(--dbp-navy);
    font-weight: 600;
}

.sale-table tr {
    border-bottom: 1px solid #F1F5F9;
}

.sale-table td {
    padding: 12px 0;
}

.sale-table td:last-child {
    text-align: right;
    font-family: monospace;
    font-size: 15px;
}

.sale-table .text-danger {
    color: #14933A !important; /* using green for positive deduction logic or red if they want, image uses green negative? Wait, image uses green for subtractions? The image has - ₹500 in green. Let us use green. */
}
.sale-table .negative-val {
    color: var(--dbp-green);
}

.sale-net {
    font-size: 16px;
    font-weight: 800;
    border-top: 2px solid var(--dbp-navy) !important;
    border-bottom: none !important;
}

.sale-net td {
    padding-top: 15px;
}

.sale-note {
    font-size: 11px;
    color: #94A3B8;
    text-align: center;
    margin-top: 20px;
}

/* Share Boxes */
.share-boxes-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 30px;
    position: relative;
}

@media (max-width: 767px) {
    .share-boxes-container {
        margin-left: 0;
        margin-top: 30px;
    }
}

.share-box {
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid transparent;
}

.share-box-green {
    background-color: rgba(20, 147, 58, 0.08);
    border-color: rgba(20, 147, 58, 0.3);
}

.share-box-orange {
    background-color: rgba(244, 119, 33, 0.08);
    border-color: rgba(244, 119, 33, 0.3);
}

.share-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dbp-navy);
}

.share-sub {
    font-size: 11px;
    color: #64748B;
}

.share-value {
    font-size: 24px;
    font-weight: 800;
}

.share-value-green {
    color: var(--dbp-green);
}

.share-value-orange {
    color: var(--dbp-orange);
}

.handshake-icon {
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;
    border: 1px solid rgba(20, 147, 58, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dbp-navy);
    font-size: 20px;
    z-index: 10;
}

@media (max-width: 767px) {
    .handshake-icon {
        left: 50%;
        top: -15px;
        transform: translateX(-50%);
    }
}


/* How It Works Section */
.dbp-how-it-works {
    background-color: #FFFFFF;
    padding-top: 30px;
    padding-bottom: 60px;
}
.process-container {
    max-width: 1240px;
}
.dbp-how-it-works .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.dbp-how-it-works .title-line {
    height: 2px;
    width: 40px;
    background-color: #B8D9C2;
    margin: 0 15px;
}
.dbp-how-it-works h2 {
    font-size: 24px;
    font-weight: 800;
    color: #071D35;
    margin: 0;
    line-height: 1;
}
.process-row {
    flex-wrap: nowrap;
}
.col-process {
    width: 17%;
}
.col-cta {
    width: 20%;
}
.process-arrow {
    width: 3%;
    color: #071D35;
    font-size: 24px;
}
.process-card {
    background-color: #FFFFFF;
    border: 1px solid #E5EAE7;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(7, 29, 53, 0.06);
    padding: 20px;
    height: 210px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.25s ease;
}
.process-card:hover {
    border-color: #14933A;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(20, 147, 58, 0.10);
}
.process-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #071D35;
    color: #FFFFFF;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}
.process-icon {
    font-size: 36px;
    margin-top: 10px;
    margin-bottom: 15px;
}
.process-title {
    color: #071D35;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    line-height: 1.2;
    text-transform: uppercase;
}
.process-desc {
    color: #526174;
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
}
.ready-card {
    background-color: #F8FBF9;
    border: 1px solid #DDE8E0;
    border-radius: 12px;
    padding: 20px;
    height: 210px;
}
.ready-title {
    color: #071D35;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}
.ready-desc {
    color: #526174;
    font-size: 13px;
    line-height: 1.4;
}
.ready-btn {
    background-color: #14933A;
    color: #FFFFFF;
    border-radius: 7px;
    width: 100%;
    height: 42px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.ready-btn:hover {
    background-color: #0F7D30;
    color: #FFFFFF;
}

@media (max-width: 1199px) {
    .process-row {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    .col-process {
        width: 30%;
    }
    .col-cta {
        width: 40%;
    }
    .process-arrow {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .col-process, .col-cta {
        width: 100%;
        max-width: 380px;
    }
    .process-arrow-mobile {
        margin: 10px 0;
        font-size: 24px;
        color: #071D35;
    }
    .dbp-how-it-works {
        padding-top: 20px;
        padding-bottom: 50px;
    }
}


/* Business Categories Section */
.dbp-categories-section {
    background-color: #FFFFFF;
    padding-top: 40px;
    padding-bottom: 50px;
}
.dbp-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.dbp-section-title span {
    height: 1px;
    width: 40px;
    background-color: #B7D7C0;
    margin: 0 15px;
}
.dbp-section-title h2 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #14933A;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}
.dbp-category-box {
    background: #FFFFFF;
    border: 1px solid #E5EAE7;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(7, 29, 53, 0.06);
    max-width: 1240px;
    margin: 0 auto;
    overflow: hidden;
}
.category-row {
    display: grid;
}
.category-row-1 {
    grid-template-columns: repeat(8, 1fr);
}
.category-row-2 {
    grid-template-columns: repeat(7, 1fr);
}
.category-divider {
    height: 1px;
    background-color: #E5EAE7;
    margin: 0 20px;
}
.cat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 85px;
    text-decoration: none;
    border-right: 1px solid #E3E9E6;
    transition: all 0.25s ease;
}
.category-row-1 .cat-item:last-child,
.category-row-2 .cat-item:last-child {
    border-right: none;
}
.cat-icon {
    font-size: 38px;
    color: #071D35;
    transition: color 0.25s ease;
}
.cat-text {
    font-size: 14px;
    font-weight: 700;
    color: #071D35;
    line-height: 1.2;
    transition: color 0.25s ease;
}
.cat-item-green .cat-icon {
    color: #14933A;
}
.cat-item:hover {
    background-color: #F7FBF8;
}
.cat-item:hover .cat-icon,
.cat-item:hover .cat-text {
    color: #14933A;
}

@media (max-width: 1199px) {
    .category-row-1, .category-row-2 {
        grid-template-columns: repeat(4, 1fr);
    }
    .category-row-1 .cat-item:nth-child(4n),
    .category-row-2 .cat-item:nth-child(4n) {
        border-right: none;
    }
    .category-divider {
        display: none;
    }
    .cat-item {
        border-bottom: 1px solid #E3E9E6;
    }
    .category-row-2 .cat-item:nth-last-child(-n+4) {
        border-bottom: none;
    }
}
@media (max-width: 767px) {
    .dbp-categories-section {
        padding: 35px 0;
    }
    .dbp-section-title h2 {
        font-size: 18px;
    }
    .category-row-1, .category-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-row-1 .cat-item:nth-child(2n),
    .category-row-2 .cat-item:nth-child(2n) {
        border-right: none;
    }
    .category-row-1 .cat-item:nth-child(4n) {
        border-right: none; /* override tablet */
    }
    .cat-item {
        padding: 15px;
        height: auto;
        min-height: 80px;
    }
    .cat-icon {
        font-size: 32px;
    }
    .cat-text {
        font-size: 13px;
    }
    .category-row-2 .cat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .category-row-2 .cat-item:nth-last-child(3),
    .category-row-2 .cat-item:nth-last-child(4) {
        border-bottom: 1px solid #E3E9E6;
    }
}


/* Partnership / Revenue Sharing Section */
.dbp-partnership-section-v2 {
    background-color: #FFFFFF;
    padding-top: 40px;
    padding-bottom: 60px;
}
.partnership-wrapper {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(7, 29, 53, 0.08);
}
.partnership-content {
    background-color: #071D35;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.p-eyebrow {
    color: #F47721;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.p-heading {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}
.p-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    max-width: 300px;
    margin-bottom: 25px;
}
.p-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.p-benefits li {
    color: #FFFFFF;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.p-benefits li i {
    font-size: 15px;
    margin-top: 2px;
}
.p-btn {
    background-color: #14933A;
    color: #FFFFFF;
    border-radius: 6px;
    height: 42px;
    font-size: 12px;
    font-weight: 700;
    padding: 0 25px; width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: background-color 0.25s ease;
}
.p-btn:hover {
    background-color: #0F7D30;
    color: #FFFFFF;
}
.revenue-example {
    background-color: #FFFFFF;
    padding: 35px 30px;
}
.rev-title {
    color: #071D35;
    font-size: 19px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}
.rev-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #E5EAE7;
    margin: 10px auto 0 auto;
}
.rev-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rev-table-col {
    width: 52%;
}
.rev-shares-col {
    width: 42%;
}
.rev-center {
    width: 6%;
    display: flex;
    justify-content: center;
    z-index: 2;
}
.rev-table {
    width: 100%;
    border-collapse: collapse;
}
.rev-table td {
    padding: 8px 0;
    font-size: 12px;
    color: #071D35;
}
.text-green {
    color: var(--dbp-green) !important;
}
.rev-net td {
    border-top: 1px solid #E5EAE7;
    padding-top: 12px;
    margin-top: 4px;
    font-weight: 800;
    font-size: 16px;
}
.rev-disclaimer {
    font-size: 10px;
    color: #7A8794;
    text-align: center;
    margin-top: 15px;
    line-height: 1.3;
}
.share-card {
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    transition: transform 0.2s ease;
}
.share-card:last-child {
    margin-bottom: 0;
}
.share-card:hover {
    transform: translateY(-2px);
}
.share-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}
.share-title span {
    font-weight: 400;
    font-size: 11px;
}
.share-amt {
    font-size: 26px;
    font-weight: 800;
}
.share-green {
    background-color: #EEF8F0;
    border: 1px solid #9BCFA7;
}
.share-green .share-title { color: #14933A; }
.share-green .share-amt { color: #14933A; }
.share-orange {
    background-color: #FFF4ED;
    border: 1px solid #F6A06C;
}
.share-orange .share-title { color: #F47721; }
.share-orange .share-amt { color: #F47721; }
.rev-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #DDE6E0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

@media (max-width: 991px) {
    .rev-grid {
        flex-direction: column;
    }
    .rev-table-col, .rev-shares-col {
        width: 100%;
    }
    .rev-center {
        width: 100%;
        margin: 15px 0;
    }
}
@media (max-width: 767px) {
    .partnership-content {
        padding: 30px 25px;
    }
    .revenue-example {
        padding: 30px 20px;
    }
    .share-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .share-amt {
        margin-top: 10px;
    }
}


/* Extra Table Styling for exact match */
.rev-table-col {
    background: #FFFFFF;
    border: 1px solid #E5EAE7;
    border-radius: 12px;
    padding: 20px 25px;
}
.rev-title {
    margin-top: 10px;
}
.rev-disclaimer {
    margin-top: 20px;
}


/* Refinements for Partnership */
.partnership-content {
    padding: 60px 45px;
}
.p-desc {
    font-size: 15px;
    max-width: 320px;
    margin-bottom: 35px;
}
.p-btn {
    height: 46px;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.revenue-example {
    padding: 45px 35px;
}
.rev-title {
    font-size: 20px;
    margin-bottom: 35px;
}
.rev-table td {
    padding: 12px 0;
    font-size: 13px;
}
.rev-net td {
    font-size: 17px;
    padding-top: 15px;
}
.rev-disclaimer {
    font-size: 11px;
    color: #929DAB;
    margin-top: 25px;
}
.share-card {
    padding: 22px 25px;
    border-radius: 10px;
}
.share-title {
    font-size: 13px;
}
.share-title span {
    font-size: 12px;
}
.share-amt {
    font-size: 28px;
}
.rev-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
}

/* Partnership Wrapper and Card Overlaps */
.partnership-wrapper {
    background-color: #071D35 !important;
}
.revenue-example {
    background-color: #FFFFFF;
    border-radius: 30px 0 0 30px;
    margin-left: -5px; /* overlap slightly to avoid seam */
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .revenue-example {
        border-radius: 0 0 14px 14px;
        margin-left: 0;
        margin-top: -5px;
    }
}

/* Compact Styles to enforce 260px height */
@media (min-width: 992px) {
    .partnership-wrapper {
        height: 260px;
        max-height: 270px;
        overflow: hidden;
    }
    .partnership-content {
        height: 100% !important;
        padding: 22px 24px !important;
    }
    .revenue-example {
        height: 100% !important;
        padding: 10px 18px 8px !important;
    }
}

.p-eyebrow {
    font-size: 11px !important;
    margin-bottom: 2px !important;
}
.p-heading {
    font-size: 26px !important;
    margin-bottom: 8px !important;
}
.p-desc {
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
    max-width: 260px !important;
}
.p-btn {
    height: 36px !important;
    font-size: 11px !important;
    padding: 0 15px !important;
}
.p-btn span {
    width: 14px !important;
    height: 14px !important;
}
.p-btn span i {
    font-size: 8px !important;
}

.rev-title {
    font-size: 14px !important;
    margin: 0 0 3px 0 !important;
    line-height: 1.1 !important;
}
.rev-title::after {
    margin: 4px auto 0 auto !important;
    height: 1px !important;
}
.rev-table td {
    padding: 1px 4px !important;
    font-size: 10px !important;
    line-height: 1.15 !important;
}
.rev-net td {
    border-top: 1px solid #E5EAE7 !important;
    padding: 3px 4px !important;
    font-size: 12px !important;
}
.rev-disclaimer {
    font-size: 8px !important;
    line-height: 1.1 !important;
    margin-top: 3px !important;
}
.share-card {
    height: 60px !important;
    padding: 6px 12px !important;
    margin-bottom: 8px !important;
}
.share-card:last-child {
    margin-bottom: 0 !important;
}
.share-title {
    font-size: 9px !important;
    line-height: 1.1 !important;
}
.share-title span {
    font-size: 9px !important;
}
.share-amt {
    font-size: 20px !important;
    line-height: 1.1 !important;
}
.rev-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 16px !important;
}

/* 11. SUCCESS STORIES & CONTACT CTA */
.dbp-success-section {
    background-color: #FFFFFF;
    padding-top: 40px;
    padding-bottom: 50px;
}
.dbp-section-title-navy {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.dbp-section-title-navy span {
    height: 1px;
    width: 40px;
    background-color: #B8D8C1;
    margin: 0 12px;
}
.dbp-section-title-navy h2 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #071D35;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}
.success-card {
    background: #FFFFFF;
    border: 1px solid #E2E9E5;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(7, 29, 53, 0.06);
    height: 130px;
    padding: 12px 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.store-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #DDE7E0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F8FAF9;
    color: #071D35;
    font-size: 14px;
}
.biz-name {
    font-size: 11px;
    font-weight: 700;
    color: #071D35;
    margin: 0;
    line-height: 1.2;
}
.biz-cat {
    font-size: 8px;
    color: #6B7885;
    margin: 0;
}
.card-testimonial {
    font-size: 9.5px;
    line-height: 1.35;
    color: #34445A;
    margin: 6px 0;
    max-width: 68%;
    font-style: normal;
}
.card-footer-growth {
    display: flex;
    align-items: center;
    gap: 8px;
}
.growth-pct {
    font-size: 18px;
    font-weight: 800;
    color: #14933A;
    line-height: 1;
}
.growth-metric {
    font-size: 10px;
    color: #536272;
    line-height: 1;
}
.merchant-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 82px;
    height: 112px;
    object-fit: cover;
    z-index: 1;
}

/* Contact CTA Bar */
.dbp-contact-cta {
    border: 1px solid #C8D9D0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(7, 29, 53, 0.04);
}
.cta-left-panel {
    width: 38%;
    background-color: #071D35;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 76px;
}
.cta-headset-icon {
    font-size: 28px;
    color: #F47721;
    line-height: 1;
}
.cta-left-text {
    display: flex;
    flex-direction: column;
}
.cta-title {
    font-size: 13px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
    text-transform: uppercase;
}
.cta-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}
.cta-middle-block {
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.cta-icon-green {
    font-size: 24px;
    color: #14933A;
    line-height: 1;
}
.cta-block-text {
    display: flex;
    flex-direction: column;
}
.cta-block-label {
    font-size: 9px;
    color: #6B7885;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}
.cta-block-val {
    font-size: 18px;
    font-weight: 800;
    color: #071D35;
    margin: 0;
    line-height: 1.2;
}
.cta-divider {
    width: 1px;
    background-color: #DCE5E0;
    height: 40px;
}
.cta-btn-block {
    margin-left: auto;
    padding-right: 15px;
}
.cta-partner-btn {
    background-color: #F47721;
    color: #FFFFFF;
    border-radius: 8px;
    height: 52px;
    width: 130px;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    transition: background-color 0.2s ease;
    gap: 6px;
    border: none;
}
.cta-partner-btn:hover {
    background-color: #D45D0E;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .dbp-contact-cta {
        flex-direction: column;
        height: auto;
    }
    .cta-left-panel {
        width: 100%;
        height: auto;
        padding: 15px;
        justify-content: center;
    }
    .cta-middle-block {
        width: 100%;
        padding: 15px;
        justify-content: center;
        border-bottom: 1px solid #E2E9E5;
    }
    .cta-divider {
        display: none;
    }
    .cta-btn-block {
        width: 100%;
        margin-left: 0;
        padding: 15px;
        display: flex;
        justify-content: center;
    }
    .cta-partner-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Why Partner Section styling */
.dbp-why-partner-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}
.why-title {
    font-size: 38px;
    font-weight: 800;
    color: #071D35;
    line-height: 1.15;
    margin-bottom: 20px;
}
.why-subtitle {
    font-size: 15px;
    color: #6B7885;
}
.why-card {
    background-color: #F3FAF5;
    border-radius: 14px;
    padding: 35px 40px;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    column-gap: 30px;
    margin-bottom: 30px;
}
.why-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.why-icon {
    font-size: 24px;
    color: #14933A;
    line-height: 1;
}
.why-text {
    font-size: 14px;
    font-weight: 700;
    color: #071D35;
}
.equation-box {
    background-color: #FFFFFF;
    border: 1px solid #E2E9E5;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(7, 29, 53, 0.04);
}
.equation-text {
    font-size: 13px;
    color: #071D35;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.eq-bold {
    font-weight: 800;
}
.eq-op {
    color: #6B7885;
    font-weight: 400;
}
.eq-green {
    color: #14933A;
    font-weight: 800;
}

@media (max-width: 767px) {
    .why-title {
        font-size: 28px;
    }
    .why-card {
        padding: 25px 20px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        row-gap: 15px;
    }
    .equation-text {
        font-size: 11px;
        gap: 5px;
    }
}

/* Perfect alignment for Partnership Overlap */
@media (min-width: 992px) {
    .partnership-wrapper {
        background-color: #071D35 !important;
        padding: 12px 12px 12px 0 !important;
        height: 260px;
    }
    .partnership-content {
        background-color: transparent !important;
        padding: 30px 35px !important;
    }
    .revenue-example {
        background-color: #FFFFFF !important;
        border-radius: 16px !important;
        margin-left: 0 !important;
        height: 100% !important;
        padding: 10px 20px 8px !important;
    }
}
@media (max-width: 991px) {
    .partnership-wrapper {
        padding: 15px !important;
    }
    .partnership-content {
        background-color: transparent !important;
        padding: 20px 10px !important;
    }
    .revenue-example {
        background-color: #FFFFFF !important;
        border-radius: 16px !important;
        padding: 15px !important;
    }
}

/* Make p-eyebrow font size larger */
.p-eyebrow {
    font-size: 15px !important;
}

/* 13. PREMIUM FOOTER STYLE */
footer {
    background-color: #04152B !important; /* Deep dark navy */
    border-top: 1px solid #10253E;
    font-family: 'Inter', sans-serif;
}
footer h6 {
    color: #FFFFFF !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    margin-bottom: 20px !important;
}
footer ul li {
    font-size: 13px !important;
    margin-bottom: 10px !important;
}
footer ul li a {
    color: #929DAB !important;
    transition: color 0.25s ease !important;
}
footer ul li a:hover {
    color: #14933A !important;
    text-decoration: none !important;
}
footer .text-gray-400 {
    color: #929DAB !important;
    font-size: 13px !important;
}
footer .small i {
    font-size: 14px !important;
}
footer .border-top {
    border-color: #10253E !important;
}
footer .border-top p {
    color: #6B7885 !important;
    font-size: 12px !important;
}
footer .border-top p.fw-bold {
    color: #14933A !important;
}

/* ==================================================
   HOMEPAGE LAYOUT, SPACING & OVERLAP FIXES
   ================================================== */
:root {
    --section-padding-desktop: 60px;
    --section-padding-tablet: 50px;
    --section-padding-mobile: 40px;
    --section-gap: 40px;
    --content-gap: 24px;
}



/* Enforce Benefits and stats normal margins */
.dbp-benefits {
    margin-top: 24px !important;
    transform: none !important;
}

.dbp-statistics {
    margin-top: 24px !important;
}

/* Apply Standard Spacing system */
.dbp-growth-section,
.dbp-how-it-works,
.dbp-categories-section,
.dbp-partnership-section-v2,
.dbp-why-partner-section,
.dbp-success-section {
    padding-top: var(--section-padding-desktop) !important;
    padding-bottom: var(--section-padding-desktop) !important;
}

/* Adjust Success stories to CTA gap to 15-25px */
.dbp-success-section {
    padding-bottom: 20px !important;
}

@media (max-width: 991px) {
    .dbp-growth-section,
    .dbp-how-it-works,
    .dbp-categories-section,
    .dbp-partnership-section-v2,
    .dbp-why-partner-section,
    .dbp-success-section {
        padding-top: var(--section-padding-tablet) !important;
        padding-bottom: var(--section-padding-tablet) !important;
    }
}

@media (max-width: 767px) {
    .dbp-growth-section,
    .dbp-how-it-works,
    .dbp-categories-section,
    .dbp-partnership-section-v2,
    .dbp-why-partner-section,
    .dbp-success-section {
        padding-top: var(--section-padding-mobile) !important;
        padding-bottom: var(--section-padding-mobile) !important;
    }
}

/* Increase Partnership section height and spacing to avoid squishing */
@media (min-width: 992px) {
    .partnership-wrapper {
        height: 310px !important;
        max-height: 330px !important;
    }
    .partnership-content {
        padding: 40px 35px !important;
    }
    .revenue-example {
        padding: 20px 25px 15px !important;
    }
    .share-card {
        height: 72px !important;
        padding: 12px 18px !important;
        margin-bottom: 12px !important;
    }
    .rev-table td {
        padding: 4px 6px !important;
        font-size: 11px !important;
    }
    .rev-net td {
        padding: 6px 6px !important;
        font-size: 13px !important;
    }
    .rev-disclaimer {
        font-size: 9px !important;
        margin-top: 10px !important;
    }
    .p-desc {
        font-size: 12px !important;
        margin-bottom: 20px !important;
    }
}

/* Hero eyebrow font size increase */
.hero-eyebrow {
    font-size: 16px !important;
    letter-spacing: 0.15em !important;
}

/* Spacing compression by 50% */
:root {
    --section-padding-desktop: 30px !important;
    --section-padding-tablet: 25px !important;
    --section-padding-mobile: 20px !important;
    --section-gap: 20px !important;
    --content-gap: 12px !important;
}

/* Compress margins for hero elements */
.dbp-benefits {
    margin-top: 12px !important;
}
.dbp-statistics {
    margin-top: 12px !important;
}

/* Spacing between success stories and CTA bar */
.dbp-success-section {
    padding-bottom: 10px !important;
}
.dbp-contact-cta {
    margin-top: 12px !important;
}


.growth-eyebrow {
    font-size: 20px !important;
}

/* Premium overrides for Why Partner section to make it attractive */
.why-card {
    background-color: #F8FAF9 !important;
    border: 1px solid #E8ECEB !important;
    box-shadow: 0 8px 30px rgba(7, 29, 53, 0.05);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px !important;
    margin-bottom: 25px !important;
}
.why-item {
    background: #FFFFFF !important;
    border: 1px solid #E5EAE7 !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    box-shadow: 0 4px 12px rgba(7, 29, 53, 0.02) !important;
    transition: all 0.25s ease !important;
}
.why-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(20, 147, 58, 0.08) !important;
    border-color: #B7D7C0 !important;
}
.why-icon {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background-color: #EEF8F0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    color: #14933A !important;
    flex-shrink: 0 !important;
}
.why-text {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #071D35 !important;
}
.equation-box {
    background-color: #FFFFFF !important;
    border: 1px solid #E5EAE7 !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    box-shadow: 0 4px 15px rgba(7, 29, 53, 0.03) !important;
}
.eq-badge {
    background-color: #F4F6F8;
    border: 1px solid #E4EAE6;
    border-radius: 6px;
    padding: 4px 12px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.5px;
}
.eq-badge-green {
    background-color: #EEF8F0;
    border: 1px solid #9BCFA7;
    color: #14933A;
}

/* Smooth Scroll and anchor margins */
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 90px;
}
@media (max-width: 991px) {
    section {
        scroll-margin-top: 75px;
    }
}

/* Set standard section padding variables */
:root {
    --section-padding-desktop: 45px !important;
    --section-padding-tablet: 40px !important;
    --section-padding-mobile: 30px !important;
    --section-gap: 30px !important;
}

/* Header links active and hover indicator overrides */
.announcement-bar {
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
}
.announcement-bar-mobile {
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Base sticky header properties */
.navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border: none !important;
}

/* Desktop navbar (>= 1200px) */
@media (min-width: 1200px) {
    .navbar {
        height: 78px !important;
    }
    .navbar .container {
        max-width: 1320px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 100% !important;
    }
    .navbar-brand img {
        height: 58px !important;
        width: auto !important;
    }
    .offcanvas-body {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex-grow: 1 !important;
        height: 100% !important;
        padding: 0 !important;
    }
    .navbar-nav {
        margin-left: auto !important;
        margin-right: 35px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 32px !important;
        height: 100% !important;
    }
    .navbar-nav .nav-link {
        color: #0B1F3A !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        transition: color 200ms ease, border-color 200ms ease;
        border-bottom: 2px solid transparent !important;
        padding-bottom: 4px !important;
        white-space: nowrap !important;
    }
    .navbar-nav .nav-link:hover {
        color: #0A9F47 !important;
    }
    .navbar-nav .nav-link.active {
        color: #0A9F47 !important;
        font-weight: 600 !important;
        border-bottom: 2px solid #0A9F47 !important;
    }
    .navbar .btn-dbp-primary {
        background-color: #0A9F47 !important;
        color: #FFFFFF !important;
        width: 220px !important;
        height: 54px !important;
        border-radius: 8px !important;
        font-weight: 700 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        padding: 0 !important;
        box-shadow: none !important;
        transform: none !important;
    }
    .navbar .btn-dbp-primary:hover {
        background-color: #088039 !important;
        color: #FFFFFF !important;
    }
}

/* Medium Desktop (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar {
        height: 74px !important;
    }
    .navbar .container {
        max-width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 100% !important;
    }
    .navbar-brand img {
        height: 52px !important;
        width: auto !important;
    }
    .offcanvas-body {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex-grow: 1 !important;
        height: 100% !important;
    }
    .navbar-nav {
        margin-left: auto !important;
        margin-right: 25px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 20px !important;
    }
    .navbar-nav .nav-link {
        color: #0B1F3A !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        transition: color 200ms ease, border-color 200ms ease;
        border-bottom: 2px solid transparent !important;
        padding-bottom: 4px !important;
        white-space: nowrap !important;
    }
    .navbar-nav .nav-link:hover {
        color: #0A9F47 !important;
    }
    .navbar-nav .nav-link.active {
        color: #0A9F47 !important;
        font-weight: 600 !important;
        border-bottom: 2px solid #0A9F47 !important;
    }
    .navbar .btn-dbp-primary {
        background-color: #0A9F47 !important;
        color: #FFFFFF !important;
        width: 180px !important;
        height: 50px !important;
        border-radius: 8px !important;
        font-weight: 700 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        padding: 0 !important;
        box-shadow: none !important;
        transform: none !important;
    }
    .navbar .btn-dbp-primary:hover {
        background-color: #088039 !important;
        color: #FFFFFF !important;
    }
}

/* Force Mobile Hamburger Navigation below 1100px to prevent overlap */
@media (max-width: 1099px) {
    .navbar-toggler {
        display: flex !important;
    }
    .offcanvas {
        position: fixed !important;
        bottom: 0 !important;
        left: auto !important;
        right: 0 !important;
        width: 80vw !important;
        max-width: 360px !important;
        height: 100vh !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease-in-out !important;
        background-color: #FFFFFF !important;
        visibility: hidden !important;
        z-index: 1045 !important;
        border: none !important;
        box-shadow: -4px 0 12px rgba(0,0,0,0.1) !important;
    }
    .offcanvas.show {
        transform: translateX(0) !important;
        visibility: visible !important;
    }
    .offcanvas-header {
        display: flex !important;
        padding: 16px !important;
        border-bottom: 1px solid #E5EAE7 !important;
    }
    .offcanvas-body {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        padding: 16px !important;
    }
    .navbar-nav {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .navbar-nav .nav-item {
        width: 100% !important;
    }
    .navbar-nav .nav-link {
        width: 100% !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        padding: 12px 16px !important;
        font-size: 16px !important;
        color: #0B1F3A !important;
        border-bottom: 1px solid #E5EAE7 !important;
        font-weight: 500 !important;
        white-space: nowrap !important;
    }
    .navbar-nav .nav-link:hover {
        color: #0A9F47 !important;
    }
    .navbar-nav .nav-link.active {
        color: #0A9F47 !important;
        border-bottom: 2px solid #0A9F47 !important;
        font-weight: 600 !important;
    }
    .offcanvas-body .btn-dbp-primary {
        margin-top: 24px !important;
        width: 100% !important;
        height: 52px !important;
        background-color: #0A9F47 !important;
        color: #FFFFFF !important;
        border-radius: 8px !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: none !important;
        transform: none !important;
    }
    .offcanvas-body .btn-dbp-primary:hover {
        background-color: #088039 !important;
        color: #FFFFFF !important;
    }
}

/* Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .navbar {
        height: 76px !important;
    }
    .navbar-brand img {
        height: 50px !important;
        width: auto !important;
    }
}

/* Mobile (<= 767px) */
@media (max-width: 767px) {
    .navbar {
        height: 64px !important;
    }
    .navbar-brand img {
        height: 44px !important;
        width: auto !important;
    }
}

/* Increase Success Stories Card size */
.success-card {
    height: auto !important;
    min-height: 175px !important;
    padding: 20px 24px !important;
}
.store-avatar {
    width: 42px !important;
    height: 42px !important;
    font-size: 18px !important;
}
.biz-name {
    font-size: 14px !important;
}
.biz-cat {
    font-size: 11px !important;
}
.card-testimonial {
    font-size: 11.5px !important;
    line-height: 1.45 !important;
    margin: 10px 0 !important;
    max-width: 65% !important;
}
.growth-pct {
    font-size: 22px !important;
}
.growth-metric {
    font-size: 12px !important;
}
.merchant-img {
    width: 120px !important;
    height: 100% !important;
}

/* Further Increase Success Cards and Section sizes */
.dbp-success-section {
    padding-top: 50px !important;
    padding-bottom: 40px !important;
}
.success-card {
    min-height: 200px !important;
    padding: 24px 28px !important;
    border-radius: 14px !important;
}
.store-avatar {
    width: 46px !important;
    height: 46px !important;
    font-size: 20px !important;
}
.biz-name {
    font-size: 16px !important;
}
.biz-cat {
    font-size: 12px !important;
}
.card-testimonial {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
    margin: 12px 0 !important;
    max-width: 62% !important;
}
.growth-pct {
    font-size: 24px !important;
}
.growth-metric {
    font-size: 13px !important;
}
.merchant-img {
    width: 140px !important;
    height: 100% !important;
}

/* Increase Partnership eyebrow font size further */
.p-eyebrow {
    font-size: 20px !important;
}

/* Additional premium footer refinements */
footer ul li a {
    display: inline-block !important;
    transition: all 0.2s ease !important;
}
footer ul li a:hover {
    color: #14933A !important;
    transform: translateX(4px) !important;
}
footer .social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #929DAB !important;
    transition: all 0.2s ease;
    font-size: 14px;
}
footer .social-icons a:hover {
    background-color: #14933A;
    color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* ===== 3-STEP MULTI-STEP FORM PROGRESS ===== */
.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #CBD5D1;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease;
}
.step-circle.active,
.step-circle.done {
    background: #14933A;
}
.step-label {
    font-size: 10px;
    font-weight: 600;
    color: #CBD5D1;
    text-align: center;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.step-circle.active + .step-label,
.step-circle.done + .step-label {
    color: #14933A;
}
#stepProgressBar .d-flex.flex-column .step-circle.active ~ span,
#stepProgressBar .d-flex.flex-column .step-circle.done ~ span {
    color: #14933A;
}
.step-line {
    height: 2px;
    width: 80px;
    background: #CBD5D1;
    margin: 0 8px;
    margin-bottom: 18px;
    flex-shrink: 0;
    transition: background 0.3s ease;
}
.step-line.done {
    background: #14933A;
}
.lead-step {
    animation: fadeStepIn 0.22s ease;
}
@keyframes fadeStepIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* Mobile responsive for step labels */
@media (max-width: 576px) {
    .step-line { width: 30px; margin: 0 4px; margin-bottom: 18px; }
    .step-label { font-size: 9px; }
    .step-circle { width: 30px; height: 30px; font-size: 10px; }
}

/* ===== 4-STEP PROGRESS BAR OVERRIDES ===== */
/* Narrower lines to fit 4 steps cleanly */
#stepProgressBar .step-line {
    width: 52px;
}
@media (max-width: 576px) {
    #stepProgressBar .step-line {
        width: 18px;
        margin: 0 3px;
        margin-bottom: 18px;
    }
    #stepProgressBar .step-label {
        font-size: 8px;
        max-width: 52px;
        text-align: center;
    }
    #stepProgressBar .step-circle {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
}

/* ==================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS AND ALIGNMENTS
   ================================================== */

html {
    scroll-behavior: smooth;
}
section[id] {
    scroll-margin-top: 90px;
}

/* Responsive Container Paddings */
.container, .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
}
@media (min-width: 768px) {
    .container, .container-fluid {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}
@media (min-width: 992px) {
    .container, .container-fluid {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}

/* Desktop Container Alignment (1200px Grid) */
@media (min-width: 1200px) {
    .container, .process-container {
        max-width: 1200px !important;
    }
}

/* 1. Spacing System Variable Declaration and Application */
:root {
    --section-padding-desktop: 45px;
    --section-padding-tablet: 38px;
    --section-padding-mobile: 40px;

    --section-gap-desktop: 30px;
    --section-gap-mobile: 20px;
}

.dbp-growth-section,
.dbp-how-it-works,
.dbp-categories-section,
.dbp-partnership-section-v2,
.dbp-why-partner-section,
.dbp-success-section {
    padding-top: var(--section-padding-desktop) !important;
    padding-bottom: var(--section-padding-desktop) !important;
}

@media (max-width: 991px) {
    .dbp-growth-section,
    .dbp-how-it-works,
    .dbp-categories-section,
    .dbp-partnership-section-v2,
    .dbp-why-partner-section,
    .dbp-success-section {
        padding-top: var(--section-padding-tablet) !important;
        padding-bottom: var(--section-padding-tablet) !important;
    }
}

@media (max-width: 767px) {
    .dbp-growth-section,
    .dbp-how-it-works,
    .dbp-categories-section,
    .dbp-partnership-section-v2,
    .dbp-why-partner-section,
    .dbp-success-section {
        padding-top: var(--section-padding-mobile) !important;
        padding-bottom: var(--section-padding-mobile) !important;
    }
}





/* 4. Benefits Strip Mobile Optimization (2-column layout + full width 5th item) */
@media (max-width: 991px) {
    .dbp-benefits {
        margin-top: 15px !important;
        padding: 0 !important;
        border-radius: 12px !important;
    }
    .dbp-benefits .row {
        margin: 0 !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }
    .dbp-benefits .col {
        width: 50% !important;
        flex: 0 0 50% !important;
        min-height: 65px !important;
        padding: 12px 10px !important;
        border-bottom: 1px solid #E7ECE9 !important;
        border-right: 1px solid #E7ECE9 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .dbp-benefits .col:nth-child(2n) {
        border-right: none !important;
    }
    .dbp-benefits .col:nth-child(3),
    .dbp-benefits .col:nth-child(4) {
        border-bottom: none !important;
    }
    .dbp-benefits .col:last-child {
        width: 100% !important;
        flex: 0 0 100% !important;
        border-right: none !important;
        border-bottom: none !important;
        border-top: 1px solid #E7ECE9 !important;
        justify-content: center !important;
    }
    .dbp-benefits .icon-circle {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
    }
    .dbp-benefits .benefit-title {
        font-size: 13px !important;
    }
    .dbp-benefits .benefit-desc {
        font-size: 11px !important;
    }
}

/* 5. Statistics Strip Mobile Layout (2-column layout) */
@media (max-width: 767px) {
    .dbp-statistics {
        margin-top: 15px !important;
        padding: 15px !important;
    }
    .dbp-statistics .row {
        justify-content: center !important;
    }
    .dbp-statistics .col {
        padding: 10px !important;
        gap: 8px !important;
    }
    .dbp-statistics .stat-icon {
        font-size: 32px !important;
    }
    .dbp-statistics .stat-number {
        font-size: 24px !important;
    }
    .dbp-statistics .stat-label {
        font-size: 12px !important;
    }
}

/* 6. Growth Section Image Limits */
@media (max-width: 767px) {
    .growth-img {
        max-width: 340px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    .growth-visual {
        text-align: center !important;
        margin-top: 20px !important;
    }
    .growth-heading {
        font-size: 24px !important;
    }
    .growth-desc {
        font-size: 14px !important;
    }
}

/* 7. How It Works Section Mobile (Card Height auto) */
@media (max-width: 767px) {
    .process-card, .ready-card {
        height: auto !important;
        min-height: auto !important;
        padding: 16px !important;
    }
    .process-icon {
        font-size: 32px !important;
        margin-bottom: 10px !important;
    }
    .process-title {
        font-size: 12px !important;
    }
    .process-desc {
        font-size: 11px !important;
    }
    .ready-title {
        font-size: 18px !important;
    }
    .ready-desc {
        font-size: 12px !important;
    }
    .process-arrow-mobile {
        margin: 6px 0 !important;
        font-size: 16px !important;
        line-height: 1 !important;
    }
}

/* 8. Categories Section Cell Borders Optimization */
@media (max-width: 767px) {
    .cat-item {
        height: auto !important;
        min-height: 60px !important;
        padding: 8px 12px !important;
    }
    .cat-icon {
        font-size: 26px !important;
    }
    .cat-text {
        font-size: 11px !important;
    }
    .category-row-1 .cat-item:nth-child(2n),
    .category-row-2 .cat-item:nth-child(2n) {
        border-right: none !important;
    }
    .category-row-2 .cat-item:nth-last-child(-n+2) {
        border-bottom: none !important;
    }
}

/* 9. Partnership Model Calculation Table Layout (Full Width table columns) */
.rev-table-wrapper {
    width: 52%;
}

@media (max-width: 991px) {
    .rev-table-wrapper {
        width: 100% !important;
    }
    .rev-shares-col {
        width: 100% !important;
        margin-top: 15px !important;
    }
    .partnership-wrapper, .partnership-content, .revenue-example {
        height: auto !important;
        max-height: none !important;
    }
    .share-card {
        height: auto !important;
        padding: 15px !important;
        flex-direction: row !important;
        align-items: center !important;
    }
    .share-amt {
        font-size: 24px !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 576px) {
    .share-card {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .share-amt {
        margin-top: 8px !important;
    }
}

/* 10. Why Build Your Digital Business Alone Section Responsiveness */
@media (max-width: 767px) {
    .why-title {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
    .why-subtitle {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }
    .why-card {
        padding: 20px !important;
    }
    .why-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
    }
    .why-item {
        padding: 12px 15px !important;
    }
    .equation-box {
        padding: 12px !important;
    }
    .equation-text {
        font-size: 11px !important;
        gap: 4px !important;
    }
    .eq-badge {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }
}

/* 11. Success Stories (Flexible height, prevent absolute merchant image overlap) */
@media (max-width: 991px) {
    .success-card {
        height: auto !important;
        min-height: 180px !important;
        padding: 20px !important;
    }
    .card-header-left {
        gap: 12px !important;
    }
    .store-avatar {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }
    .biz-name {
        font-size: 15px !important;
    }
    .biz-cat {
        font-size: 12px !important;
    }
    .card-testimonial {
        max-width: 65% !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin: 10px 0 !important;
    }
    .growth-pct {
        font-size: 22px !important;
    }
    .growth-metric {
        font-size: 12px !important;
    }
    .merchant-img {
        width: 100px !important;
        height: 140px !important;
        position: absolute !important;
        right: 0 !important;
        bottom: 0 !important;
    }
}

/* 12. Contact CTA Mobile Stack */
@media (max-width: 767px) {
    .dbp-contact-cta {
        margin-top: 15px !important;
    }
    .cta-left-panel {
        padding: 12px !important;
    }
    .cta-middle-block {
        padding: 12px !important;
        min-height: 48px !important;
    }
    .cta-partner-btn {
        height: 48px !important;
        font-size: 11px !important;
    }
}

/* 13. Footer Mobile Stack and Padding Targets */
@media (max-width: 767px) {
    footer .col-lg-4, footer .col-lg-2, footer .col-md-4 {
        margin-bottom: 25px !important;
    }
    footer .col-lg-2:last-child {
        margin-bottom: 0 !important;
    }
    footer ul li {
        margin-bottom: 8px !important;
    }
    footer ul li a {
        padding: 4px 0 !important;
    }
}

/* 14. 4-Step Partnership Form Modal & Step Progress Line Adaptations */
@media (max-width: 767px) {
    #partnerLeadModal .modal-dialog {
        margin: 12px !important;
        max-width: calc(100% - 24px) !important;
    }
    #partnerLeadModal .modal-content {
        max-height: 85vh !important;
        overflow-y: auto !important;
    }
    #partnerLeadModal .modal-header {
        padding: 15px !important;
    }
    #partnerLeadModal .modal-body {
        padding: 15px !important;
    }
    #partnerLeadForm button {
        height: 48px !important;
        min-height: 48px !important;
    }
    #partnerLeadForm .form-control,
    #partnerLeadForm .form-select {
        height: 42px !important;
        font-size: 14px !important;
    }
    #partnerLeadForm textarea {
        height: auto !important;
        font-size: 14px !important;
    }
    .form-check-label {
        white-space: normal !important;
        word-wrap: break-word !important;
    }
}

@media (max-width: 576px) {
    #stepProgressBar .step-line {
        width: 20px !important;
        margin: 0 4px !important;
        margin-bottom: 15px !important;
    }
    #stepProgressBar .step-circle {
        width: 26px !important;
        height: 26px !important;
        font-size: 9px !important;
    }
    #stepProgressBar .step-label {
        font-size: 7.5px !important;
        max-width: 50px !important;
    }
}

@media (max-width: 360px) {
    #stepProgressBar .step-line {
        width: 10px !important;
    }
    #stepProgressBar .step-label {
        font-size: 7px !important;
        max-width: 42px !important;
    }
}

/* General Typography Mobile Adjustments */
@media (max-width: 767px) {
    .dbp-section-title h2,
    .dbp-section-title-navy h2 {
        font-size: 20px !important;
    }
    body {
        font-size: 14px !important;
    }
}



/* Custom Benefits Strip Spacing Overrides to prevent negative margin overlap */
.dbp-benefits {
    position: relative !important;
    margin-top: 30px !important;
    z-index: 10 !important;
}

/* ==================================================
   REBUILT HERO ARCHITECTURE
   ================================================== */
.hero-section {
    position: relative;
    background-image: url('../images/hero-bg.png');
    background-repeat: no-repeat;
    background-position: 65% center;
    background-size: cover;
    overflow: hidden;
    background-color: #FFFFFF;
}

.hero-container {
    position: relative;
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 5;
    padding-top: 50px;
    padding-bottom: 50px;
}

.hero-eyebrow {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #64748B;
    max-width: 550px;
    text-transform: uppercase;
}

.hero-main-heading {
    font-weight: 800;
    letter-spacing: -0.5px;
    max-width: 600px;
}

.hero-secondary-heading {
    font-weight: 700;
    max-width: 560px;
    color: var(--dbp-navy);
}

.hero-offer {
    font-weight: 800;
    max-width: 600px;
}

.hero-description {
    max-width: 520px;
    line-height: 1.6;
    color: #34445A;
}

.hero-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-cta-buttons .btn {
    height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



/* Desktop layout (>= 992px) */
@media (min-width: 992px) {
    .hero-section {
        min-height: 560px;
        height: auto;
    }
    .hero-content {
        width: 48%;
        max-width: 620px;
    }
    .hero-main-heading {
        font-size: 52px;
        line-height: 1.05;
    }
    .hero-secondary-heading {
        font-size: 28px;
    }
    .hero-offer {
        font-size: 30px;
    }
    .hero-description {
        font-size: 16px;
    }
}

/* Large Screens (>= 1200px) */
@media (min-width: 1200px) {
    .hero-main-heading {
        font-size: 56px;
    }
}

/* Tablet & Mobile Overlay */
@media (max-width: 991px) {
    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.88) 35%,
            rgba(255, 255, 255, 0.35) 60%,
            rgba(255, 255, 255, 0.00) 100%
        );
        z-index: 1;
    }
}

/* Tablet layout (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        min-height: 600px;
        height: auto;
        background-image: url('../images/hero-bg.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 70% center;
    }
    .hero-content {
        width: 55%;
        max-width: 560px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .hero-main-heading {
        font-size: 40px;
        line-height: 1.1;
    }
    .hero-secondary-heading {
        font-size: 24px;
    }
    .hero-offer {
        font-size: 26px;
    }
    .hero-description {
        font-size: 15px;
    }
}

/* Mobile layout (< 768px) */
@media (max-width: 767px) {
    .hero-section {
        position: relative;
        min-height: 680px;
        height: auto;
        background-image: url('../images/hero-bg.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 72% center;
        overflow: hidden;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 35px 20px 40px;
    }
    .hero-eyebrow {
        font-size: 11px;
    }
    .hero-main-heading {
        font-size: 32px;
        line-height: 1.1;
    }
    .hero-secondary-heading {
        font-size: 20px;
    }
    .hero-offer {
        font-size: 20px;
    }
    .hero-description {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 25px;
    }
}

/* Screen size under 576px */
@media (max-width: 575px) {
    .hero-main-heading {
        font-size: 30px;
    }
    .hero-cta-buttons {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .hero-cta-buttons .btn {
        width: 100% !important;
    }
}

/* Small Mobile Layout (<= 390px) */
@media (max-width: 390px) {
    .hero-content {
        padding: 25px 20px 30px;
    }
    .hero-main-heading {
        font-size: 28px;
        line-height: 1.1;
    }
    .hero-secondary-heading {
        font-size: 18px;
    }
    .hero-offer {
        font-size: 18px;
    }
    .hero-description {
        font-size: 13px;
    }
}

/* Footer collapsing accordion targets for mobile viewport */
@media (max-width: 767px) {
    footer h6[data-bs-toggle="collapse"] {
        cursor: pointer;
        margin-bottom: 12px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 8px;
    }
}
@media (min-width: 768px) {
    footer h6[data-bs-toggle="collapse"] {
        pointer-events: none;
    }
}







