* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.why-bbp-hero {
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 80px);
    padding: 40px 0px;
    overflow: hidden;
}

.why-bbp-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.why-bbp-content {
    flex: 1;
    /* max-width: 580px; */
}

.top-badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 12px 24px;
    border: 1px solid #d7dff0;
    border-radius: 30px;
    background: #fff;
    font-size: clamp(10px, 1vw, 16px);
    font-weight: 400;
    line-height: 16px;
    letter-spacing: .3px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.why-bbp-content h1 {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(24px, 3.5vw, 4.25rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 2%;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.highlight {
     color: var(--primary-color);
}

.why-bbp-content p {
    font-size: var(--p-size-16);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.75;
    text-align: left;
    letter-spacing: 5%;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.primary-btn,
.secondary-btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 5%;
    transition: .3s ease;
}

.primary-btn {
    background: var(--primary-color);
    color: #fff;
}

.secondary-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-3px);
}







/* Right Image */

.why-bbp-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.why-bbp-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
}

/* Tablet */

@media (max-width: 992px) {

    .why-bbp-hero {
        padding: 60px 0;
        height: auto;
    }

    .why-bbp-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .why-bbp-content {
        max-width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .why-bbp-image img {
        display: none;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .why-bbp-hero {
        padding: 60px 0;
    }

    .hero-btns {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-stats strong {
        font-size: 24px;
    }

    .why-bbp-content p {
        font-size: var(--p-size-14);
        text-align: center;
    }
}





















.finance-control-section {
    padding: 85px 0;
}



.section-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-family: var(--para-font-family);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    color: var(--primary-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-eyebrow .dash {
    width: 18px;
    height: 2px;
    background: var(--primary-color);
    border-radius: var(--radius-6);
    display: inline-block;
}

.finance-heading h2 {
    font-size: clamp(2.2rem, 3vw, 4rem);
    line-height: 1.2;
    font-weight: 800;
    margin-top: 20px;
}

.finance-heading p {
    color: var(--text-primary);
    max-width: 750px;
    line-height: 1.75;
    letter-spacing: 2%;
    margin: 20px 0px;
}

.finance-heading h2 span {
    color: var(--primary-color);
 }



.finance-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px;
    margin-top: 40px;
}

.finance-highlights div {
    position: relative;
    padding-top: 20px;
    /* border-top: 2px solid rgba(0, 101, 242, .15); */
}

.finance-highlights div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,

            #0065f2,
            #66a3ff,
            transparent,
            transparent);
}

.finance-highlights strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.finance-highlights span {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 2%;
    color: var(--text-secondary);
}

/* Tablet */

@media (max-width: 992px) {

    .finance-control-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .finance-heading {
        text-align: center;
    }

    .finance-highlights {
        grid-template-columns: 1fr;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .finance-control-section {
        padding: 85px 0;
    }



    .finance-content p {
        font-size: 16px;
    }
}













.secure-accessibility-section {
    background-color: var(--bg-light);
    padding: 85px 0;
}

.section-header {
    text-align: left;
    max-width: 750px;
}

.section-header h2 {
    color: var(--text-primary);
    font-size: clamp(2.2rem, 3vw, 4rem);
    line-height: 1.2;
    margin: 20px 0;
}



.section-header p {
    line-height: 1.75;
    letter-spacing: 2%;
    margin-bottom: 65px;
    color: var(--text-primary);
}

.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.accessibility-card {
    padding: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    transition: .3s ease;
}

.accessibility-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 101, 242, .3);
}

.card-number {
    display: inline-block;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-main);
    margin-bottom: 20px;
    background: var(--text-primary);
    border-radius: 8px;
}

.accessibility-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.accessibility-card p {
    line-height: 1.8;
    color: var(--text-primary);
}

/* Tablet */

@media (max-width: 992px) {

    .accessibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */

@media (max-width: 768px) {

    .secure-accessibility-section {
        padding: 85px 0;
    }

    .accessibility-grid {
        grid-template-columns: 1fr;
    }

    .accessibility-card {
        padding: 28px;
    }
}
























.accounting-module-section {
    padding: 85px 0;
}

.module-header {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 65px;
}

.module-content h2 {
    max-width: 520px;
    font-size: clamp(2.2rem, 3vw, 4rem);
    color: var(--text-primary);
    line-height: 1.2;
    margin: 20px 0;
}

.module-content h2 span {
    color: var(--primary-color);
}

.module-content p {
    line-height: 1.9;
    letter-spacing: 2%;
    color: var(--text-primary);
    max-width: 650px;
}

.tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 101, 242, .08);
    font-size: 14px;
    font-weight: 600;
}

.gst-tags {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.gst-tags span {
    padding: 12px 18px;
    background: var(--bg-light);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.accounting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 90px;
}

.feature-card {
    padding: 25px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: .3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    line-height: 1.75;
    letter-spacing: 2%;
    font-size: 16px;
    color: var(--text-secondary);
}

.section-title {
    color: var(--text-primary);
    text-align: left;
    margin-bottom: 65px;
}

.section-title h2 {
    color: var(--text-primary);
    font-size: clamp(2.2rem, 3vw, 4rem);
    line-height: 1.2;
    letter-spacing: 2%;
    margin: 20px 0px;
}

.section-title p {
    color: var(--text-primary);
    max-width: 650px;
    letter-spacing: 2%;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 90px;
}

.advantage-card {
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 16px;
    text-align: left;
    font-weight: 500;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.highlight-item {
    padding: 24px;
    border-radius: 16px;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #0065f2, #ffffff, #ffffff) border-box;
}

.management-band {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.management-item {
    flex: 1;
    padding: 40px 20px;
}

.management-item span {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
}

.management-item h3 {
    color: var(--text-primary);
    margin-top: 15px;
    font-size: 22px;
    line-height: 1.3;
}

.management-item:not(:last-child) {
    border-right: 1px solid #e5e7eb;
}

@media(max-width:768px) {

    .management-band {
        flex-direction: column;
    }

    .management-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
}

/* Tablet */

@media(max-width:1200px) {

    .accounting-grid,
    .advantages-grid,
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .module-header {
        grid-template-columns: 1fr;
    }
}

/* Mobile */

@media(max-width:768px) {

    .accounting-grid,
    .advantages-grid,
    .highlights-grid,
    .business-categories {
        grid-template-columns: 1fr;
    }

    .module-header {
        gap: 40px;
    }

    .module-content h2 {
        font-size: 2.2rem;
    }

    .management-item h3 {
        font-size: 20px;
    }
}















.business-growth-section {
    background-color: var(--bg-light);
    padding: 85px 0;
}

.growth-header {
    max-width: 600px;
    text-align: left;
}

.growth-header h2 {
    font-size: clamp(2.2rem, 3vw, 4rem);
    line-height: 1.1;
    margin: 20px 0;
}

.growth-header h2 span {
    color: var(--primary-color);
}

.growth-header p {
    max-width: 650px;
    color: var(--text-primary);
    letter-spacing: 2%;
    margin-bottom: 65px;
}

.growth-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.growth-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 35px;
    border-radius: 24px;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #0065f2, #ffffff, #ffffff) border-box;
}

.growth-item.reverse {
    flex-direction: row-reverse;
    justify-content: space-between;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(225deg, #0065f2, #ffffff, #ffffff) border-box;
}

.growth-number {
    min-width: 120px;
    font-size: 70px;
    font-weight: 800;
    color: rgba(0, 101, 242, .12);
    text-align: center;
}

.growth-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.growth-content p {
    line-height: 1.75;
    color: var(--text-primary);
    max-width: 600px;
    letter-spacing: 2%;
}

/* Tablet */

@media (max-width: 992px) {

    .growth-item,
    .growth-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .growth-number {
        min-width: auto;
        font-size: 60px;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .business-growth-section {
        padding: 85px 0;
    }

    .growth-item {
        padding: 25px;
    }

    .growth-content h3 {
        font-size: 24px;
    }

    .growth-number {
        font-size: 50px;
    }
}