:root {
    --primary-orange: #f05e27;
    --text-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: rgba(255, 255, 255, 0.9);
    --bg-secondary: #f9f6f0;
    --font-family: "Poppins", sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 15px 40px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100vw;
}

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

body {
    font-family: var(--font-family);
    background-color: #fff;
    overflow-x: clip;
}

/* GENERIC CONTAINER */
.mbp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: clamp(20px, 4vw, 48px);
    width: 100%;
    box-sizing: border-box;
}

/* HERO SECTION */
.mbp-hero-section {
    background-color: var(--bg-secondary);

    overflow: hidden;
}

/* Keep every public page hero on the same brand background as the homepage. */
.mbp-hero-section,
.au-hero-section,
.blog-hero-section,
.faqs-hero-section,
.wcu-hero-section,
.rp-hero-section,
.pp-hero-section,
.post-hero-section,
.delivery-hero,
.terms-hero,
.sm-hero {
    background: #f9f6f0 !important;
    background-color: #f9f6f0 !important;
    background-image: none !important;
}

.mbp-hero-container {
    display: flex;
    align-items: center;
    gap: 45px;
}

.mbp-hero-content {
    flex: 1;
}

.mbp-hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.mbp-hero-title span.mbp-highlight {
    color: var(--primary-orange);
    display: block;
    margin-top: 5px;
}

.mbp-hero-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 15px;
    max-width: 650px;
    font-weight: 400;
    text-align: justify;
}

.mbp-hero-btns {
    display: flex;
    gap: 20px;
}

.mbp-btn {
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.mbp-btn-primary {
    background-color: var(--primary-orange);
    color: white;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 6px 20px rgba(240, 94, 39, 0.25);
}

.mbp-btn-primary:hover {
    background-color: #e05420;
    box-shadow: 0 10px 25px rgba(240, 94, 39, 0.35);
}

.mbp-btn-outline {
    background-color: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.mbp-btn-outline:hover {
    background-color: var(--primary-orange);
    color: white;
    box-shadow: 0 10px 25px rgba(240, 94, 39, 0.2);
}

.mbp-hero-image-area {
    flex: 1;
}

.mbp-hero-image-area img {
    width: 100%;
    height: auto;
    display: block;
}

/* HERO SECTION MOBILE */
@media (max-width: 992px) {
    .mbp-hero-section {
        padding: 0px 0 60px;
        background-color: var(--bg-secondary);
    }

    .mbp-hero-container {
        display: flex;
        flex-direction: column-reverse;
        /* Since Image is 2nd in HTML, this puts it on Top */
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .mbp-hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mbp-hero-title {
        font-size: 1rem;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.2;
        color: #000;
    }

    .mbp-hero-title span.mbp-highlight {
        display: block;
        color: var(--primary-orange);
        margin-top: 5px;
    }

    .mbp-hero-desc {
        font-size: 1rem;
        line-height: 1.6;
        color: #000;
        margin-bottom: 35px;
        text-align: center;
        max-width: 100%;
    }

    .mbp-hero-btns {
        display: flex;
        flex-direction: row;
        /* Keep them side by side as per pic */
        justify-content: center;
        gap: 15px;
        width: 100%;
        padding: 0 10px;
    }

    .mbp-btn {
        flex: 1;
        padding: 14px 10px;
        font-size: 13px;
        border-radius: 50px;
        white-space: nowrap;
        max-width: none;
    }

    .mbp-hero-image-area {
        width: 100%;
        margin-bottom: 10px;
    }

    .mbp-hero-image-area img {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        display: block;
        transform: scale(1.1);
        /* Slightly enlarge to fill space */
    }
}

/* INDUSTRY INTRO SECTION */
.mbp-industry-intro {
    background-color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.mbp-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.mbp-intro-title {
    display: block;
    font-size: 1.8rem;
    /* Increased for hierarchy */
    color: #000000;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.mbp-intro-desc {
    font-size: 1.2rem;
    color: #000;
    line-height: 1.6;
    font-weight: 400;
}

/* PRODUCTS GRID */
.mbp-products-grid {
    background-color: #ffffff;
    padding: 0 0 18px;
    /* Aligned with intro */
}

.mbp-grid-header {
    text-align: center;
    margin-bottom: 60px;
}

.mbp-grid-title {
    font-size: 2.2rem;
    color: #000;
    font-weight: 800;
    margin-bottom: 15px;
}

.mbp-grid-desc {
    font-size: 1.1rem;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.mbp-grid-container {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
    padding: 0;
}

.mbp-product-item {
    text-align: center;
}

.mbp-product-grid-extra[hidden] {
    display: none !important;
}

.mbp-product-image {
    border-radius: 8px;
    margin-bottom: 15px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #f05e27;
}

.mbp-product-item:hover .mbp-product-image {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mbp-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.mbp-product-title {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

a.mbp-product-grid-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.mbp-product-grid-link:hover .mbp-product-title {
    color: #f05e27;
}

/* FEATURES SECTION - UNIQUE PREMIUM VERSION */
.mbp-features-section {
    background-color: #ffffff;
    padding: 15px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.mbp-features-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.mbp-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.mbp-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mbp-feature-icon i {
    font-size: 32px;
    color: #f05e27;
    transition: var(--transition);
}

/* Hover Effects */
.mbp-feature-item:hover .mbp-feature-icon i {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.mbp-feature-text {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0;
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .mbp-hero-title {
        font-size: 3.5rem;
    }

    .mbp-hero-container {
        gap: 60px;
    }


    .mbp-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
        justify-content: center;
    }

    .mbp-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* Center the 5th item */
    .mbp-feature-item:last-child {
        grid-column: span 2;
        max-width: 180px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .mbp-hero-section {}

    .mbp-hero-container {
        text-align: center;
        gap: 0px;
    }

    .mbp-hero-desc {
        margin: 0 auto 40px;
    }

    .mbp-hero-btns {
        justify-content: center;
    }

    .mbp-hero-image-area {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .mbp-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .mbp-nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mbp-grid-container { grid-template-columns: repeat(2, 1fr); }

    .mbp-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
        justify-content: center;
    }

    .mbp-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Center the 5th item */
    .mbp-feature-item:last-child {
        grid-column: span 2;
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .mbp-hero-title {
        font-size: 2rem;
    }

    .mbp-hero-btns {
        flex-direction: column;
    }

    .mbp-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .mbp-grid-container {
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }

    .mbp-features-grid {
        justify-content: center;
    }
}

#mbp-explore-btn {
    cursor: pointer;
    min-width: 220px;
}

/* BOXES BY MATERIALS SECTION */
.mbp-material-section {
    background-color: #ffffff;
    padding: 0 0 28px;
}

.mbp-material-main-title {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 40px;
}

.mbp-material-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 768px) {
    .mbp-material-section {
        padding-bottom: 36px;
    }

    .mbp-material-tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        gap: 8px;
        padding-bottom: 10px;
        margin: 0 -20px;
        padding: 0 20px 10px 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .mbp-material-tabs::-webkit-scrollbar {
        display: none;
    }

    .mbp-search,
    .mbp-cta-btn,
    .mbp-secondary-bar {
        display: none;
    }

    .mbp-logo-img {
        max-width: 84px;
        height: 84px;
    }

    .mbp-tab-btn {
        flex-shrink: 0;
        min-width: 42vw;
        /* Forces exactly 2.5 tabs visible on screen */
        text-align: center;
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    .mbp-material-main-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    /* Right fade gradient to hint scrollability */
    .mbp-material-section .mbp-container {
        position: relative;
    }

    .mbp-material-section .mbp-container::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 50px;
        /* Height of the tabs row */
        background: linear-gradient(to right, transparent, #fff 85%);
        pointer-events: none;
        z-index: 2;
    }
}

.mbp-tab-btn {
    padding: 12px 28px;
    border-radius: 10px;
    border: none;
    background-color: #f8f7f2;
    color: #333;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.mbp-tab-btn.active {
    background-color: var(--primary-orange);
    color: #fff;
}

.mbp-tab-btn:hover:not(.active) {
    background-color: #f0eee4;
}

.mbp-material-content-box {
    background-color: #f8f7f2;
    border-radius: 15px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 20px;
    gap: 100px;
    text-align: justify;
}

.mbp-material-info {
    flex: 1.2;
    padding: 0;
}

.mbp-material-title {
    font-size: 1.4rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.mbp-material-desc {
    font-size: 13px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
    text-align: justify;
    transition: all 0.3s ease;
}

.mbp-quote-btn {
    padding: 9px 25px;
    font-size: 13px;
}

/* Desktop: show Get Quote, hide Explore More */
.mbp-quote-btn-desktop {
    display: inline-flex;
}

.mbp-explore-mobile-btn {
    display: none;
}

/* Mobile: hide Get Quote, show Explore More */
@media (max-width: 991px) {
    .mbp-material-desc {
        display: block;
        margin-bottom: 20px;
    }

    .mbp-material-desc.expanded {
        display: block;
    }

    .mbp-quote-btn-desktop {
        display: none;
    }

    .mbp-explore-mobile-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--primary-orange);
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        background: none;
        border: none;
        padding: 0;
        border-radius: 0;
        width: auto;
        margin-top: -5px;
        margin-bottom: 20px;
        cursor: pointer;
    }

    .mbp-explore-mobile-btn::after {
        content: "→";
        font-size: 16px;
    }
}

.mbp-material-image {
    flex: 1;
    height: 260px;
    background: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.mbp-material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mbp-img-placeholder {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    letter-spacing: -1px;
}

.mbp-view-all-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.mbp-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-orange);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.mbp-view-all-btn:hover {
    background-color: #e05420;
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .mbp-material-content-box {
        flex-direction: column;
        padding: 0;
        gap: 0;
        overflow: hidden;
    }

    .mbp-material-info {
        padding: 20px;
        order: 1;
    }

    .mbp-material-image {
        width: 100%;
        height: 280px;
        border-radius: 0 0 12px 12px;
        order: 2;
        margin: 0;
    }
}

/* BOXES BY STYLE SECTION */
.mbp-style-section {
    background-color: #fcfcf7;
    padding: 12px 0;
    overflow: hidden;
}

.mbp-style-header {
    text-align: center;
    margin-bottom: 15px;
}

.mbp-style-main-title {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}

.mbp-style-subtitle {
    font-size: 1.1rem;
    color: #000;
    max-width: 700px;
    margin: 0 auto;
}

.mbp-style-slider-wrapper {
    position: relative;
    padding: 0;
}

.mbp-style-slider {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.mbp-style-slider::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.mbp-style-card {
    flex: 0 0 clamp(220px, 23vw, 280px);
    min-width: 220px;
    max-width: 280px;
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: none;
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mbp-style-card:hover {
    transform: translateY(-10px);
    box-shadow: none;
}

.mbp-style-image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background-color: #e9e9e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #000;
    font-weight: 700;
    font-size: 1.5rem;
}

.mbp-style-image-placeholder.mbp-style-image-has-photo {
    display: block;
    padding: 0;
    overflow: hidden;
}

.mbp-style-image-placeholder.mbp-style-image-has-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.mbp-style-tag {
    font-size: 12px;
    color: #000;
    display: block;
    margin-bottom: 6px;
}

.mbp-style-card-title {
    font-size: 1rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
}

.mbp-style-explore-btn {
    display: inline-block;
    padding: 7px 22px;
    border: 1.5px solid var(--primary-orange);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
}

.mbp-style-explore-btn:hover {
    background-color: var(--primary-orange);
    color: #fff;
}

.mbp-style-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.mbp-style-arrow:hover {
    background: var(--primary-orange);
    color: #fff;
}

.mbp-prev {
    left: -50px;
}

.mbp-next {
    right: -50px;
}

@media (max-width: 991px) {
    .mbp-style-card {
        flex-basis: 240px;
        min-width: 240px;
    }
}

@media (max-width: 576px) {
    .mbp-style-card {
        flex-basis: min(78vw, 260px);
        min-width: min(78vw, 260px);
        max-width: 260px;
    }

    .mbp-style-slider-wrapper {
        padding: 0 10px;
    }

    .mbp-style-arrow {
        display: flex;
        width: 35px;
        height: 35px;
        font-size: 14px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .mbp-prev {
        left: -5px;
    }

    .mbp-next {
        right: -5px;
    }

    .mbp-view-all-wrapper {
        justify-content: center !important;
        text-align: center !important;
    }
}

/* PROMO PRODUCTS SECTION */
.mbp-promo-section {
    background-color: #ffffff;
    padding: 15px 0;
}

.mbp-promo-container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.mbp-promo-content {
    flex: 1;
}

.mbp-promo-title {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.mbp-promo-text {
    font-size: 14.5px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: justify;
}

.mbp-promo-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
    margin: 40px 0;
}

.mbp-promo-list-item {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mbp-promo-list-item span {
    color: #000;
    font-size: 20px;
    line-height: 1;
}

.mbp-promo-btn {
    padding: 12px 45px;
    border-radius: 50px;
}

/* Promo Grid Styling */
.mbp-promo-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.mbp-promo-top-layer {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.mbp-promo-left-part {
    flex: 1;
}

.mbp-promo-right-part {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mbp-promo-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.mbp-promo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.mbp-promo-img-wrapper:hover img {
    transform: scale(1.05);
}

.large-vertical {
    height: 100%;
    min-height: 320px;
}

.secondary-h {
    aspect-ratio: 16/9;
    flex: 1;
}

.full-wide {
    aspect-ratio: 21/9;
    width: 100%;
}

@media (max-width: 991px) {
    .mbp-promo-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .mbp-promo-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mbp-promo-list {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
        width: 100%;
        max-width: 400px;
        margin: 20px auto;
        text-align: left;
    }

    .mbp-promo-top-layer {
        flex-direction: row;
        gap: 5px;
    }

    .mbp-promo-right-part {
        gap: 5px;
    }

    .large-vertical {
        min-height: 200px;
    }
}

/* SAMPLE KIT SECTION */
.mbp-sample-section {
    background-color: #fdfaf4;
    /* Light cream */
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.mbp-sample-content {
    max-width: 800px;
}

.mbp-sample-title {
    display: block;
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
}

.mbp-sample-desc {
    font-size: 16px;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.5;
}

.mbp-sample-btn {
    padding: 12px 35px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .mbp-sample-section {
        text-align: center;
        padding: 10px 0;
    }
}

/* SIMPLE STEPS SECTION */
.mbp-steps-section {
    background-color: #ffffff;
    padding: 20px 0;
}

.mbp-steps-header {
    text-align: center;
    margin-bottom: 40px;
}

.mbp-steps-main-title {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}

.mbp-steps-subtitle {
    font-size: 14px;
    color: #000;
}

.mbp-steps-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.mbp-steps-tab {
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    background-color: #f9f6f0;
    color: #000;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 150px;
}

.mbp-steps-tab.active {
    background-color: var(--primary-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(240, 94, 39, 0.2);
}

.mbp-steps-tab:hover:not(.active) {
    background-color: #f0eee4;
}

.mbp-steps-content-pane {
    display: none;
}

.mbp-steps-content-pane.active {
    display: block;
    animation: mbpFadeIn 0.5s ease;
}

@keyframes mbpFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mbp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mbp-steps-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
}

.mbp-steps-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-orange);
}

.mbp-steps-card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 94, 39, 0.1);
    color: var(--primary-orange);
    font-size: 21px;
    transition: var(--transition);
}

.mbp-steps-card:hover .mbp-steps-card-icon {
    background: var(--primary-orange);
    color: #fff;
    transform: translateY(-2px);
}

.mbp-steps-card-title {
    font-size: 1.1rem;
    color: #000;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.mbp-steps-card-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    text-align: justify;
}

@media (max-width: 991px) {

    /* .mbp-steps-card {
        padding: 25px 0 20px;
    } */
    .mbp-steps-section {
        padding: 30px 0;
    }

    .mbp-steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 15px;
    }

    .mbp-steps-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 5px 20px 20px;
        margin: 0 -20px 30px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .mbp-steps-tabs::-webkit-scrollbar {
        display: none;
    }

    .mbp-steps-tab {
        flex-shrink: 0;
        min-width: 140px;
        padding: 10px 20px;
    }
}

/* COMPETITIVE EDGE SECTION */
.mbp-edge-section {
    background-color: #ffffff;
    padding: 3px 0;
}

.mbp-edge-header {
    text-align: center;
    margin-bottom: 25px;
}

.mbp-edge-tag {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

.mbp-edge-main-title {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mbp-edge-top-btn {
    margin-top: 10px;
}

.mbp-edge-layout {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.mbp-edge-col {
    width: 33.33%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.mbp-edge-center {
    width: 33.33%;
    display: flex;
}

.mbp-edge-img-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mbp-edge-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mbp-edge-card {
    display: flex;
    gap: 20px;
    padding: 22px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: var(--transition);
}

.mbp-edge-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.mbp-edge-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 24px;
}

.mbp-edge-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mbp-edge-info h3,
.mbp-edge-info .mbp-edge-info-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    display: block;
}

.mbp-edge-info p {
    font-size: 13.5px;
    color: #000;
    line-height: 1.5;
    text-align: justify;
}

/* Default: hide mobile bottom btn on desktop */
.mbp-edge-mobile-btn-wrapper {
    display: none;
}

@media (max-width: 1100px) {
    .mbp-edge-layout {
        flex-direction: column;
        gap: 20px;
    }

    .mbp-edge-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0px;
    }

    /* Hide header outline btn on mobile */
    .mbp-edge-btn-desktop {
        display: none !important;
    }

    /* Show bottom btn on mobile */
    .mbp-edge-mobile-btn-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 40px;
    }

    .mbp-edge-bottom-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 14px 30px;
        font-size: 15px;
        font-weight: 700;
        border-radius: 50px;
    }

    .mbp-edge-top-btn {
        order: 3;
        margin-top: 15px;
        width: 100%;
        max-width: 280px;
    }

    /* Image first on mobile */
    .mbp-edge-center {
        order: 1;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .mbp-edge-img-wrapper {
        height: auto;
    }

    .mbp-edge-img-wrapper img {
        height: auto;
        object-fit: contain;
    }

    /* Cards after image */
    .mbp-edge-col {
        order: 2;
        width: 100%;
        gap: 20px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .mbp-edge-card {
        padding: 18px;
    }
}

/* ============================================
   INSTANT QUOTE SECTION (iq-*)
   ============================================ */

.iq-section {
    background-color: #fff;
    padding: 10px 0;
}

.iq-layout {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

/* Left: Form Panel */
.iq-form-panel {
    flex: 1;
    background: #fefaf5;
    border-radius: 20px;
    padding: 60px 50px;
}

.iq-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(240, 94, 39, 0.08);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.iq-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    line-height: 1.25;
    margin-bottom: 10px;
}

.iq-subtitle {
    font-size: 14px;
    color: #000;
    margin-bottom: 28px;
    line-height: 1.6;
}

.iq-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.iq-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.iq-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.iq-row-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* Material / options block: desktop 3+3, mobile 2+2 then full-width rows */
.iq-quote-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    grid-template-areas:
        "iqmat iqcol iqturn"
        "iqpkg iqqty iqupl";
}

.iq-quote-fields--no-pkg {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas:
        "iqmat iqmat iqcol iqcol iqturn iqturn"
        "iqqty iqqty iqqty iqupl iqupl iqupl";
}

.iq-quote-fields--no-pkg {
    grid-template-columns: repeat(6, 1fr);
    grid-template-areas:
        "iqmat iqmat iqcol iqcol iqturn iqturn"
        "iqqty iqqty iqqty iqupl iqupl iqupl";
}

.iq-quote-fields>.iq-field {
    min-width: 0;
    position: relative;
}

.iq-quote-fields>.iq-field.iq-field--select-open {
    z-index: 10000;
}

.iq-quote-field--material {
    grid-area: iqmat;
}

.iq-quote-field--color {
    grid-area: iqcol;
}

.iq-quote-field--turn {
    grid-area: iqturn;
}

.iq-quote-field--packaging {
    grid-area: iqpkg;
}

.iq-quote-field--quantity {
    grid-area: iqqty;
}

.iq-quote-field--upload {
    grid-area: iqupl;
}

/* Custom dropdown (used with instant-quote-form.js on .iq-form select.iq-select) */
.iq-custom-select {
    position: relative;
    width: 100%;
}

.iq-custom-select.open {
    z-index: 10001;
}

.iq-custom-select-trigger {
    width: 100%;
    padding: 12px 15px;
    padding-right: 35px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13.5px;
    color: #333;
    background-color: #fafafa;
    cursor: pointer;
    display: block;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s ease;
    user-select: none;
    box-sizing: border-box;
}

.iq-custom-select-trigger:after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s ease;
}

.iq-custom-select.open .iq-custom-select-trigger {
    border-color: #f05e27;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(240, 94, 39, 0.08);
}

.iq-custom-select.open .iq-custom-select-trigger:after {
    transform: translateY(-50%) rotate(-135deg);
}

.iq-custom-select-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-height: 280px;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
}

.iq-custom-select-optgroup {
    padding: 8px 15px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #888;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
    pointer-events: none;
    user-select: none;
}

.iq-custom-select.open .iq-custom-select-dropdown {
    display: block;
}

.iq-custom-select-option {
    padding: 11px 15px;
    font-size: 13.5px;
    color: #333;
    cursor: pointer;
    transition:
        background 0.15s ease,
        color 0.15s ease;
}

.iq-custom-select-option:hover {
    background-color: #f05e27;
    color: #fff;
}

.iq-custom-select-option.selected {
    background-color: rgba(240, 94, 39, 0.08);
    color: #f05e27;
    font-weight: 600;
}

.iq-custom-select-option.selected:hover {
    background-color: #f05e27;
    color: #fff;
}

.catp-iq-card .iq-form,
.cp-quote-form-area .iq-form,
.mbp-piq-form-area .iq-form,
.mbp-prod-quote-card .iq-form,
.gq-form-side .iq-form {
    width: 100%;
    overflow: visible;
}

.iq-custom-select.open-up .iq-custom-select-dropdown {
    top: auto;
    bottom: calc(100% + 5px);
}

.iq-form--stacked {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.iq-form--inline-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
}

.iq-form--inline-row .iq-input {
    flex: 1;
    min-width: 160px;
}

.lg-pass-wrapper .iq-input {
    width: 100%;
    padding-right: 44px;
    box-sizing: border-box;
}

.cup-app-input-wrapper .iq-input {
    width: 100%;
    box-sizing: border-box;
}

.cup-form-container .iq-submit-btn,
.cup-app-form-card .iq-submit-btn {
    width: 100%;
    max-width: none;
}

.mbp-footer-newsletter.iq-form--inline-row {
    align-items: stretch;
}

.mbp-footer-newsletter.iq-form--inline-row .iq-input {
    flex: 1;
    min-width: 0;
}

.iq-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.iq-label {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

.iq-label span {
    color: var(--primary-orange);
}

.iq-input,
.iq-select,
.iq-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 13.5px;
    color: #333;
    background-color: #fafafa;
    transition: var(--transition);
    outline: none;
}

.iq-input:focus,
.iq-select:focus,
.iq-textarea:focus {
    border-color: var(--primary-orange);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(240, 94, 39, 0.08);
}

.iq-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23999' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding: 12px 15px;
    padding-right: 35px;
    cursor: pointer;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.iq-textarea {
    resize: none;
    min-height: 90px;
}

.iq-file-wrapper {
    display: flex;
    align-items: stretch;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    background-color: #fafafa;
    overflow: hidden;
    min-height: 46px;
}

.iq-file-text {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 12px 11px;
    font-size: 12.5px;
    color: #333;
    outline: none;
}

.iq-file-btn {
    flex-shrink: 0;
    align-self: stretch;
    margin: 0;
    background-color: #f05e27;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 4.5rem;
    box-sizing: border-box;
}

.iq-file-btn:hover {
    background-color: #e05420;
}

.iq-submit-btn {
    margin: 0px auto 0;
    display: block;
    background-color: #f05e27;
    color: #fff;
    border: none;
    padding: 15px 80px;
    border-radius: 50px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(240, 94, 39, 0.2);
}

.iq-submit-btn:hover {
    background-color: #e05420;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(240, 94, 39, 0.4);
}

.iq-success-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #edfbf4;
    border: 1.5px solid #22c55e;
    color: #15803d;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.iq-success-msg i {
    font-size: 20px;
    flex-shrink: 0;
}

/* Right: Image Panel */
.iq-image-panel {
    flex: 0 0 320px;
    height: auto;
}

.iq-image-content {
    width: 100%;
    height: 100%;
    background-color: #fef3d9;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.iq-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .iq-layout {
        flex-direction: column;
    }

    .iq-image-panel {
        display: none;
        /* Hide trust/badges panel on mobile as requested */
    }

    .iq-image-content {
        height: auto;
        min-height: 280px;
    }

    .iq-row-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .iq-form-panel {
        padding: 30px 20px;
    }

    .iq-row-2,
    .iq-row-3 {
        grid-template-columns: 1fr;
    }

    .iq-row-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .iq-row-3>.iq-field,
    .iq-row-4>.iq-field {
        min-width: 0;
    }

    .iq-row-3>.iq-field:nth-child(3) {
        grid-column: 1 / -1;
    }

    .iq-row-4>.iq-field {
        min-width: 0;
    }

    .iq-quote-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "iqmat iqcol"
            "iqpkg iqqty"
            "iqturn iqturn"
            "iqupl iqupl";
    }

    .iq-quote-fields--no-pkg {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "iqmat iqcol"
            "iqqty iqqty"
            "iqturn iqturn"
            "iqupl iqupl";
    }

    .iq-custom-select-dropdown {
        max-height: min(320px, calc(100vh - 24px));
    }

    .iq-title {
        font-size: 1.5rem;
    }

    .iq-submit-btn {
        padding: 15px 40px;
        width: 100%;
    }
}

/* ============================================
   WALL OF LOVE - TESTIMONIAL SECTION
   ============================================ */

.mbp-wol-section {
    background-color: #fff;
    overflow: hidden;
}

/* Trust Bar */
.mbp-wol-trust-bar {
    background-color: #f8f7f2;
    border-bottom: 1px solid #ede9df;
    padding: 18px 0;
    margin: 10px;
}

.mbp-wol-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mbp-wol-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mbp-wol-trust-name {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.mbp-wol-trust-stars {
    display: flex;
    gap: 3px;
    color: #fbbc05;
    font-size: 15px;
}

.mbp-wol-trust-stars.mbp-wol-trust-item .mbp-wol-trust-stars {
    color: #00b67a;
}

.mbp-wol-trust-score {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    background: #fff;
    border: 1px solid #e0ddd5;
    padding: 3px 10px;
    border-radius: 50px;
}

.mbp-wol-trust-divider {
    width: 1px;
    height: 36px;
    background: #ddd;
    flex-shrink: 0;
}

.mbp-wol-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mbp-wol-stat-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.mbp-wol-stat-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    margin-top: 3px;
}

/* Main Body */
.mbp-wol-body {
    display: flex;
    gap: 70px;
    padding: 80px 0;
    align-items: center;
    min-height: 600px;
}

/* Left Panel */
.mbp-wol-left {
    flex: 0 0 420px;
    max-width: 420px;
}

.mbp-wol-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(240, 94, 39, 0.08);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.mbp-wol-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    line-height: 1.25;
    margin-bottom: 16px;
}

.mbp-wol-subtitle {
    font-size: 1rem;
    color: #000;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Featured Review Card */
.mbp-wol-featured {
    background: #f8f7f2;
    border-radius: 20px;
    padding: 35px;
    border-left: 4px solid var(--primary-orange);
    position: relative;
}

.mbp-wol-featured-quote {
    font-size: 80px;
    color: var(--primary-orange);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    right: 25px;
    line-height: 1;
    font-family: Georgia, serif;
}

.mbp-wol-feat-stars {
    display: flex;
    gap: 4px;
    color: #fbbc05;
    font-size: 16px;
    margin-bottom: 18px;
}

.mbp-wol-feat-text {
    font-size: 0.98rem;
    color: #000;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 25px;
}

.mbp-wol-feat-client {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mbp-wol-feat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.mbp-wol-feat-client h4 {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.mbp-wol-feat-client span {
    font-size: 13px;
    color: #666;
}

/* Right Panel - Scrolling Ticker */
.mbp-wol-right {
    flex: 1;
    overflow: hidden;
    height: 520px;
    position: relative;
}

/* Fade masks top and bottom */
.mbp-wol-right::before,
.mbp-wol-right::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 10;
    pointer-events: none;
}

.mbp-wol-right::before {
    top: 0;
    background: linear-gradient(to bottom, #ffffff, transparent);
}

.mbp-wol-right::after {
    bottom: 0;
    background: linear-gradient(to top, #ffffff, transparent);
}

.mbp-wol-ticker-wrap {
    display: flex;
    gap: 20px;
    height: 100%;
}

.mbp-wol-ticker-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

/* Scrolling up */
.mbp-wol-ticker-up {
    animation: wol-scroll-up 22s linear infinite;
}

.mbp-wol-ticker-up:hover {
    animation-play-state: paused;
}

/* Scrolling down */
.mbp-wol-ticker-down {
    animation: wol-scroll-down 26s linear infinite;
}

.mbp-wol-ticker-down:hover {
    animation-play-state: paused;
}

@keyframes wol-scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes wol-scroll-down {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Mini Review Cards */
.mbp-wol-mini-card {
    background: #f8f7f2;
    border-radius: 14px;
    padding: 20px 22px;
    border: 1px solid #ede9df;
    transition: var(--transition);
    flex-shrink: 0;
}

.mbp-wol-mini-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(240, 94, 39, 0.08);
    background: #fff;
}

.mbp-wol-mini-highlight {
    background: #fff8f5;
    border-color: rgba(240, 94, 39, 0.25);
}

.mbp-wol-mini-stars {
    display: flex;
    gap: 3px;
    color: #fbbc05;
    font-size: 13px;
    margin-bottom: 10px;
}

.mbp-wol-mini-card>p {
    font-size: 13.5px;
    color: #000;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 14px;
}

.mbp-wol-mini-client {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mbp-wol-mini-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.mbp-wol-mini-client b {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    display: block;
}

.mbp-wol-mini-client span {
    font-size: 12px;
    color: #888;
}

/* Responsive */
@media (max-width: 1024px) {
    .mbp-wol-body {
        flex-direction: column;
        gap: 50px;
        padding: 60px 0;
    }

    .mbp-wol-left {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .mbp-wol-right {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .mbp-wol-trust-inner {
        gap: 20px;
    }

    .mbp-wol-trust-divider {
        display: none;
    }

    .mbp-wol-ticker-wrap {
        gap: 12px;
    }
}

.mbp-tm-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.mbp-tm-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    background: rgba(240, 94, 39, 0.1);
    padding: 6px 15px;
    border-radius: 50px;
}

.mbp-tm-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    line-height: 1.15;
    margin-bottom: 20px;
}

.mbp-tm-desc {
    font-size: 1.15rem;
    color: #000;
    line-height: 1.7;
    margin-bottom: 40px;
}

.mbp-tm-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.mbp-tm-badge {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    min-width: 160px;
}

.mbp-tm-badge-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.mbp-tm-badge .mbp-tm-stars {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
}

.mbp-tm-stars-tp {
    gap: 2px;
}

.mbp-tm-stars-tp span {
    background-color: #00b67a;
    color: #fff;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.mbp-tm-stars-google {
    color: #fbbc05;
    gap: 3px;
}

.mbp-tm-rating-text {
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.mbp-tm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mbp-tm-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.mbp-tm-card:nth-child(2) {
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.mbp-tm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.mbp-tm-card:nth-child(2):hover {
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.mbp-tm-quote-icon {
    font-size: 40px;
    color: rgba(240, 94, 39, 0.15);
    position: absolute;
    top: 30px;
    right: 30px;
}

.mbp-tm-card:nth-child(2) .mbp-tm-quote-icon {
    color: rgba(255, 255, 255, 0.05);
}

.mbp-tm-stars-row {
    color: #fbbc05;
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.mbp-tm-review {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    flex: 1;
}

.mbp-tm-card:nth-child(odd) .mbp-tm-review {
    color: #444;
}

.mbp-tm-card:nth-child(2) .mbp-tm-review {
    color: #ddd;
}

.mbp-tm-client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mbp-tm-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.mbp-tm-client-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.mbp-tm-client-info span {
    font-size: 13px;
    color: inherit;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .mbp-tm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mbp-tm-grid {
        grid-template-columns: 1fr;
    }

    .mbp-tm-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .mbp-features-section {
        display: none !important;
    }
}

/* BY INDUSTRY CONTENT SECTION */
.bi-content-section {
    padding: 0px 0 20px;
    background-color: #ffffff;
    margin-top: 0px;
}

.bi-wrapper {
    max-width: 1200px;
}

.bi-item {
    margin-bottom: 30px;
}

.bi-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.4;
}

.bi-desc {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* CMS extra content (TinyMCE HTML) */
.bi-extra-content .bi-item {
    margin-bottom: 30px;
}

.bi-extra-content h2,
.bi-extra-content h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #000000;
    margin: 28px 0 12px;
    line-height: 1.4;
}

.bi-extra-content h2:first-child,
.bi-extra-content h3:first-child,
.bi-extra-content>h2:first-child,
.bi-extra-content>h3:first-child {
    margin-top: 0;
}

.bi-extra-content p,
.bi-extra-content ul,
.bi-extra-content ol {
    font-size: 1rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 15px;
}

.bi-extra-content ul,
.bi-extra-content ol {
    padding-left: 1.25rem;
}

.bi-extra-content a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.bi-extra-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.bi-hidden-content {
    display: none;
    transition: all 0.3s ease;
}

.bi-btn-wrapper {
    margin-top: 40px;
}

.bi-read-more {
    display: inline-block;
    background-color: var(--primary-orange);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(240, 94, 39, 0.3);
    cursor: pointer;
    border: none;
}

.bi-read-more:hover {
    background-color: #d94e1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 94, 39, 0.4);
}

/* CLIENT TESTIMONIAL DESIGN */
.mbp-testimonial-new {
    padding: clamp(20px, 0vw, 88px) 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.mbp-tm-new-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
    align-items: center;
    gap: clamp(42px, 6vw, 96px);
}

.mbp-tm-new-content {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.mbp-tm-new-title {
    display: block;
    font-size: 30px;
    font-weight: 600;
    color: black;
    margin: 0 0 14px;
    letter-spacing: 0;
    line-height: 0.96;
    text-transform: uppercase;
}

.mbp-tm-new-subtitle {
    max-width: 860px;
    font-size: clamp(14px, 1.28vw, 19px);
    color: #000;
    font-weight: 700;
    margin: 0 0 30px;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: uppercase;
}

.mbp-tm-new-quote {
    font-size: clamp(46px, 6vw, 78px);
    color: #ffbd09;
    margin-bottom: 28px;
    line-height: 0.8;
}

.mbp-tm-new-client-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.mbp-tm-new-avatar-box {
    width: 86px;
    height: 72px;
    flex: 0 0 auto;
    background: #ffbd09;
    color: #050505;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 28px 0 28px;
    font-size: 23px;
    letter-spacing: 0.05em;
}

.mbp-tm-new-client-info .mbp-tm-new-client-name {
    display: block;
    font-size: clamp(17px, 1.45vw, 22px);
    font-weight: 800;
    margin: 0 0 4px;
    color: #11151a;
    line-height: 1.15;
}

.mbp-tm-new-client-info .mbp-tm-new-client-role {
    font-size: clamp(13px, 1.1vw, 16px);
    color: #30343a;
    font-weight: 600;
}

.mbp-tm-new-text {
    max-width: 820px;
    font-size: 16px;
    color: black;
    line-height: 1.42;
    font-style: italic;

    margin: 0 0 28px;
}

.mbp-tm-new-stars {
    color: #ffbd09;
    font-size: clamp(22px, 2.25vw, 34px);
    display: flex;
    gap: 6px;
    line-height: 1;
}

.mbp-tm-new-visual {
    position: relative;
    min-width: 0;
}

.mbp-tm-visual-stage {
    position: relative;
    width: min(100%, 720px);
    margin-left: auto;
    min-height: clamp(350px, 34vw, 520px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mbp-tm-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    display: block;
}

.mbp-tm-bbb-badge {
    position: absolute;
    left: 6%;
    bottom: 12%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 172px;
    padding: 9px 12px;
    border: 3px solid #9ed7de;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.96);
    color: #13718b;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.05;
    box-shadow: 0 12px 30px rgba(9, 39, 52, 0.1);
}

.mbp-tm-bbb-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 34px;
    border-right: 1px solid #9ed7de;
    padding-right: 9px;
    color: #0b7e95;
    font-size: 16px;
    letter-spacing: 0;
}

@media (max-width: 1100px) {
    .mbp-tm-new-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mbp-tm-new-content {
        max-width: 850px;
        margin: 0 auto;
    }

    .mbp-tm-new-client-box,
    .mbp-tm-new-stars {
        justify-content: center;
    }

    .mbp-tm-visual-stage {
        margin: 0 auto;
        justify-content: center;
        min-height: auto;
    }

    .mbp-tm-img {
        max-width: 760px;
    }
}

@media (max-width: 767px) {
    .mbp-testimonial-new {
        padding: 40px 0 25px;
    }

    .mbp-tm-new-grid {
        gap: 30px;
    }

    .mbp-tm-new-subtitle {
        margin-bottom: 22px;
    }

    .mbp-tm-new-quote {
        margin-bottom: 22px;
    }

    .mbp-tm-new-client-box {
        gap: 14px;
        margin-bottom: 24px;
    }

    .mbp-tm-new-avatar-box {
        width: 72px;
        height: 64px;
        border-radius: 0 22px 0 22px;
        font-size: 20px;
    }

    .mbp-tm-new-text {
        margin-bottom: 24px;
    }

    .mbp-tm-bbb-badge {
        left: 50%;
        bottom: 3%;
        transform: translateX(-50%) scale(0.86);
        transform-origin: center;
    }
}

/* ========================================================
   RICH TEXT & RESPONSIVE TABLE STYLES (Fix Table Overflow)
   ======================================================== */
.post-main-article,
.article-rich-text,
.sp-blog-desc,
.editorjs-container {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
}

/* Table container auto-scroll */
.table-responsive {
    width: 100% !important;
    max-width: 100% !important;
    margin: 1.5rem 0 !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
}

/* Table styling for Editor.js / rich text tables */
.article-rich-text table,
.sp-blog-desc table,
table.table {
    width: 100% !important;
    max-width: 100% !important;
    margin: 1.25rem 0 !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    table-layout: auto;
    word-break: normal;
    overflow-wrap: break-word;
    background-color: #ffffff;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Mobile responsive scroll for tables */
@media (max-width: 768px) {

    .article-rich-text table,
    .sp-blog-desc table {
        display: block !important;
        overflow-x: auto !important;
        white-space: nowrap;
    }
}

.article-rich-text table th,
.article-rich-text table td,
.sp-blog-desc table th,
.sp-blog-desc table td,
table.table th,
table.table td {
    padding: 12px 16px !important;
    border: 1px solid #e2e8f0 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    vertical-align: middle;
    color: #2d3748;
}

.article-rich-text table th,
.sp-blog-desc table th,
table.table th {
    background-color: #f7fafc !important;
    font-weight: 700;
    color: #1a202c;
    text-align: left;
    border-bottom: 2px solid #cbd5e0 !important;
}

.article-rich-text table tr:nth-child(even),
.sp-blog-desc table tr:nth-child(even),
table.table tr:nth-child(even) {
    background-color: #f8fafc;
}

.article-rich-text table tr:hover,
.sp-blog-desc table tr:hover,
table.table tr:hover {
    background-color: #f1f5f9;
}

/* Code & Pre Blocks in Rich Text */
.article-rich-text pre,
.sp-blog-desc pre {
    background: #1e1e2e !important;
    color: #cdd6f4 !important;
    padding: 18px 22px !important;
    border-radius: 10px !important;
    overflow-x: auto !important;
    max-width: 100% !important;
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin: 1.5rem 0 !important;
    white-space: pre-wrap !important;
    word-break: break-word !important;
    border: 1px solid #313244 !important;
}

.article-rich-text code,
.sp-blog-desc code {
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace !important;
    background: #f1f5f9;
    color: #d946ef;
    padding: 3px 7px;
    border-radius: 5px;
    font-size: 0.88em;
}

.article-rich-text pre code,
.sp-blog-desc pre code {
    background: transparent !important;
    padding: 0 !important;
    color: inherit !important;
    font-size: inherit !important;
}

/* Images & Figures in Rich Text */
.article-rich-text img,
.sp-blog-desc img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
}

/* PRODUCT CATALOG CARD (home industry grid) */
@media (min-width: 992px) {
    .mbp-grid-container > .mbp-catalog-card-item {
        grid-column: 5 / span 2;
        grid-row: 1 / span 2;
        align-self: stretch;
    }

    .mbp-grid-container > .mbp-catalog-card-item .mbp-catalog-card {
        height: 100%;
        aspect-ratio: auto;
    }
}

.mbp-catalog-card {
    position: relative;
    border: 0;
    background: #f9f6f0;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 800 / 913;
    padding: clamp(20px, 2vw, 32px);
    color: #1e1e1e;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    text-align: left;
}

.mbp-catalog-card::before {
    content: '';
    position: absolute;
    width: 78%;
    aspect-ratio: 1;
    right: -34%;
    top: -13%;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8a38 0%, #f25324 100%);
    opacity: .98;
}

.mbp-catalog-card::after {
    content: '';
    position: absolute;
    inset: 11px;
    border: 1px solid rgba(30,30,30,.12);
    border-radius: 8px;
    pointer-events: none;
}

.mbp-catalog-glow {
    position: absolute;
    width: 80%;
    height: 42%;
    left: -32%;
    bottom: -20%;
    border-radius: 50%;
    background: rgba(242, 83, 36, .35);
    filter: blur(22px);
}

.mbp-catalog-header,
.mbp-catalog-footer {
    position: relative;
    z-index: 1;
}

.mbp-catalog-kicker {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    background: #1e1e1e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.mbp-catalog-card h3 {
    margin: 18px 0 9px;
    color: #1e1e1e;
    font-size: clamp(29px, 2.7vw, 43px);
    line-height: .96;
    text-transform: uppercase;
    letter-spacing: -.04em;
}

.mbp-catalog-card p {
    max-width: 185px;
    margin: 0;
    color: #4d4b47;
    font-size: 14px;
    line-height: 1.35;
}

.mbp-catalog-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.mbp-catalog-qr-wrap {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #4d4b47;
    font-size: 11px;
    font-weight: 600;
}

.mbp-catalog-card .mbp-catalog-qr {
    position: static;
    display: block;
    width: clamp(95px, 8vw, 130px);
    height: auto;
    padding: 8px;
    border-radius: 8px;
    background: #fff;
}

.mbp-catalog-download {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 12px;
    border-radius: 7px;
    background: #f45b2b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.mbp-catalog-card-item:hover .mbp-catalog-download {
    background: #ff7a43;
}

@media (max-width: 480px) {
    .mbp-catalog-card { min-height: 315px; }
    .mbp-catalog-card h3 { font-size: 34px; }
}

@media (max-width: 991px) {
    .mbp-catalog-card-item {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .mbp-grid-container { gap: 16px; }
    .mbp-catalog-card-item { grid-column: span 2; }
}
