.b2b-fullbleed {
    width: 100vw;
    /* paint the whole screen  */
    margin-left: calc(-50vw + 50%);
    /* pull it out of the parent flow  */
    margin-right: calc(-50vw + 50%);
    /* so it is truly edge-to-edge      */

}

/* custom gap for this hero row */
.b2b-row {
    --col-gap: 120px;
    /* tweak this value for more/less gap */
    margin-left: calc(var(--col-gap) / -2);
    margin-right: calc(var(--col-gap) / -2);
}

.b2b-row>[class*="col-"] {
    padding-left: calc(var(--col-gap) / 2) !important;
    padding-right: calc(var(--col-gap) / 2) !important;
}

/* smaller gap on tablet/phone if you want */
@media (max-width: 991.98px) {
    .b2b-row {
        --col-gap: 28px;
    }
}

/* ---------------------------------------------------------
   BASE: HERO / INTRO SECTION
---------------------------------------------------------- */
.b2b-wrap h1.b2b-title {
    font-size: 42px;
    font-weight: 600;
    color: #021B32 !important;
    line-height: 1.3;

}

.b2b-blurb {
    font-size: 18px;
    color: #083156;
    line-height: 1.625;
    max-width: 550px;
    margin-bottom: 30px;
}

.container.first-section {
    padding-top: 100px;
    padding-bottom: 60px;
}

.b2b-ctas {
    display: flex;
    gap: 18px;
    /* space between buttons */
    flex-wrap: wrap;
    margin-top: 24px;
}

/* Buttons */
.b2b-cta,
.global-button {
    display: inline-block;
    font-weight: 600;
    color: #083156;
    background-color: #ffd200;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.b2b-cta:hover,
.global-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6),
        0 10px 25px -3px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.b2b-main-img {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    transition: transform .3s ease;
    width: 100%;
    height: auto;
    /* grow naturally with the wider column */
    max-width: 760px;
    /* optional ceiling on huge screens */
    object-fit: cover;
}

/* if you prefer a fixed-ish height on big screens: */
@media (min-width: 992px) {
    .b2b-main-img {
        aspect-ratio: 3 / 2;
        /* keeps a nice proportion */
        height: auto;
        /* leave auto when using aspect-ratio */
    }
}

/* Floating Toasts */
.b2b-toast {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: 0.3s transform, 0.3s box-shadow;
    cursor: pointer;
}

.b2b-toast:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.b2b-toast strong {
    color: #001c3f;
}

.b2b-toast--tl {
    top: -58px;
    left: -56px;
}

.b2b-toast--br {
    bottom: -36px;
    right: -37px;
}

.b2b-icon-box,
.b2b-cash {
    width: 40px;
    height: 40px;
}

.b2b-icon-box {
    background: #1e293b;
    border-radius: 8px;
}

.b2b-toast-text-head {
    max-width: 280px;
    line-height: 1.5;
}

/* Scroll Pill (optional) */
.b2b-scroll {
    color: #00234f !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    background: transparent;
    transition: background 0.2s;
    text-decoration: none;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.b2b-scroll:hover {
    background: rgba(0, 28, 63, 0.05);
    color: #083156 !important;
    text-decoration: none;
}

/* ---------------------------------------------------------
   WHO WE WORK WITH
---------------------------------------------------------- */
.b2b-who {
    padding: 80px 0;
    background: #FAFAFA;
}

.b2b-who .b2b-overline {
    text-transform: uppercase;
    color: #05559F;
    font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.25rem);
    margin-bottom: 10px;
    line-height: 1.5;
}

.b2b-who h2.b2b-title {
    font-size: 2.45rem;
    line-height: 1.2;
    /* font-weight: 600 !important; */
    color: #0f1c2e !important;
    margin-bottom: 12px;
}

.b2b-who .b2b-lead {
    color: #083156;
    font-size: 1.0625rem;
    line-height: 1.5;
    max-width: 780px;
    margin: 0 auto 40px auto;
}

/* Cards */
/* Base cards: control only the horizontal gap between columns */
.b2b-who .b2b-card,
.b2b-who .b2b-card.reverse {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    /* reverse swaps below */
    column-gap: 80px;
    /* <- gap between text & image */
    row-gap: 24px;
    /* gap when stacked or wrapping */
    align-items: center;
    margin-bottom: 48px;
}

/* Reverse cards: swap the column sizes/order */
.b2b-who .b2b-card.reverse {
    grid-template-columns: 1fr 1.1fr;
}

/* Make the gap larger on very wide screens */
@media (min-width: 1400px) {

    .b2b-who .b2b-card,
    .b2b-who .b2b-card.reverse {
        column-gap: 120px;
    }
}

/* Slightly smaller gap on standard desktops */
@media (min-width: 992px) and (max-width: 1399.98px) {

    .b2b-who .b2b-card,
    .b2b-who .b2b-card.reverse {
        column-gap: 72px;
    }
}

/* Stack on tablet/phone; keep a comfy vertical gap */
@media (max-width: 991.98px) {
  .b2b-who .b2b-card,
  .b2b-who .b2b-card.reverse {
    display: flex;
    flex-direction: column;
  }

  /* For those “reverse” cards, swap the order of children */
  .b2b-who .b2b-card.reverse .b2b-imgwrap {
    order: 2;  /* image comes second */
  }
  .b2b-who .b2b-card.reverse .b2b-copy {
    order: 1;  /* copy comes first */
  }

  /* For non-reverse cards, keep default order (copy first, image second) */
  .b2b-who .b2b-card:not(.reverse) .b2b-copy {
    order: 1;
  }
  .b2b-who .b2b-card:not(.reverse) .b2b-imgwrap {
    order: 2;
  }
}
.b2b-who .b2b-card .b2b-copy h3 {
    font-size: 2.2rem;
    color: #021B32 !important;
    line-height: 1.3;
    margin-bottom: 10px;
}

.b2b-who .b2b-card .b2b-copy p {
    color: #475569;
    margin: 0;
    line-height: 1.7;
    max-width: 600px;
    color: #083156;
    font-size: clamp(1rem, 1.4vw + 0.3rem, 1.125rem);
}

/* Images */
.b2b-who .b2b-imgwrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(2, 27, 50, 0.1);
}

.b2b-who .b2b-imgwrap img {
    display: block;
    width: 100%;
    height: auto;
}

.b2b-who-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 20px auto;
}


.b2b-who-foot p {
    text-align: center;
    margin-bottom: 0;
    font-size: clamp(1.1rem, 1.5vw + 0.4rem, 1.5rem);
    line-height: 1.5;
    color: #021B32;
}

/* ---------------------------------------------------------
   STATS SECTION
---------------------------------------------------------- */
.section-fullbleed.b2b-stats {
    background: #00234f;
    color: #fff;
    padding: 120px 0;
}

.b2b-stats-row {
    max-width: 1200px;
    margin: 0 auto;
}

.b2b-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: center;
    padding: 10px 0;
}

.b2b-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.b2b-stat-icon img {
    filter: brightness(0) invert(1);
    width: 64px;
    height: 64px;
}

.b2b-stat-number {
    font-family: 'Martino', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.b2b-stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.4;
}

/* ---------------------------------------------------------
   FEATURES SECTION
---------------------------------------------------------- */


.b2b-fullbleed.b2b-feat {
    background: #F5F5F5;
    padding: 80px 0;
}

.b2b-feat h2.b2b-feat-title {
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    font-weight: 600 !important;
    color: #021B32 !important;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 1em !important;
}

.b2b-feat-lead {
    font-size: 1.06rem;
    color: var(--b2b-muted);
    line-height: 1.75;
    max-width: 46rem;
    margin: 0 auto 34px auto;
    text-align: center;
}

.b2b-feat-col {
    display: flex;
}

/* --- Card internals --- */
.b2b-feat-card {
    background: #fff;
    padding: 20px 18px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* left align */
    text-align: left;
    width: 100%;
}

.b2b-feat-icon {
    width: 70px;
    height: 70px;
    margin: 0;
}

.b2b-feat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.b2b-feat-p {
    margin-bottom: 10px !important;
    font-weight: 600;
    line-height: 1.5;
    color: #021B32;
    font-size: 1.2em;
}

.b2b-feat-text {
    color: #083156;
    line-height: 1.5;
    font-size: 0.9em;
}

/* --- Force 4 cards per row on large screens --- */
/* Your HTML already uses col-lg-3; this just guarantees 25% width. */
@media (min-width: 992px) {
    .b2b-feat-col {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.b2b-feat-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.85em;
}

.b2b-feat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* ---------------------------------------------------------
   RESPONSIVE QUERIES (grouped by breakpoint)
---------------------------------------------------------- */

/* <= 991.98px */
@media (max-width: 991.98px) {

    .b2b-who .b2b-card,
    .b2b-who .b2b-card.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .b2b-feat-col {
        max-width: 50%;
    }
}

/* <= 768px */
@media (max-width: 768px) {
    .b2b-stat-number {
        font-size: 2rem;
    }

    .b2b-stat-icon img {
        width: 44px;
        height: 44px;
    }
}

/* <= 575.98px */
@media (max-width: 575.98px) {

    /* Hero */
    .container.first-section {
        padding-top: 20px !important;
    }

    .b2b-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        max-width: 100% !important;
    }

    .b2b-blurb {
        font-size: 15px;
        line-height: 1.4;
        max-width: 100%;
    }

    .b2b-toast {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .b2b-icon-box,
    .b2b-cash {
        width: 30px;
        height: 30px;
    }

    .b2b-toast--tl {
        top: -15px;
        left: 10px;
    }

    .b2b-toast--br {
        bottom: -15px;
        right: 10px;
    }

    /* Who We Work With */
    .b2b-who {
        padding: 50px 0;
    }

    .b2b-who .b2b-title {
        font-size: 1.8rem;
    }

    .b2b-who .b2b-card .b2b-copy h3 {
        font-size: 1.35rem;
    }

    /* Features */
    .b2b-feat-col {
        max-width: 100%;
    }

    .b2b-feat-card {
        padding: 1.5rem;
    }

    .b2b-feat-h3 {
        font-size: 1rem;
    }

    .b2b-feat-text {
        font-size: 0.95rem;
    }

    .b2b-feat-icon {
        width: 52px;
        height: 52px;
    }
}

/* <= 480px */
@media (max-width: 480px) {
    .b2b-stat-number {
        font-size: 1.75rem;
    }

    .b2b-stat-label {
        font-size: 0.82rem;
    }

    .b2b-stat-item {
        gap: 6px;
    }
}

/* ===============================
   PARTNERSHIP CHOOSER (b2b-*)
   =============================== */
.b2b-choose {
    background: #FFFFFF;
    padding: 80px 0;
}

.b2b-choose h2.b2b-choose-title {
    text-align: center;
    font-size: clamp(1.8rem, 3.2vw, 2.25rem);
    color: #021B32 !important;
    margin-bottom: 34px;
    line-height: 1.3;
}
.b2b-business-needs {
    gap: 1.5rem; /* Default desktop gap (~24px) */
}

/* Tablet */
@media (max-width: 991.98px) {
    .b2b-business-needs {
        gap: 2rem; /* ~32px */
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .b2b-business-needs {
        gap: 3rem; /* ~48px for more breathing room */
    }
}
/* Cards */
.b2b-plan {
    background: #F5F5F5;
    border: 1px solid #e6ecf3;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(2, 27, 50, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b2b-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(2, 27, 50, 0.12);
}

/* Dark primary card */
.b2b-plan--primary {
    background: #07274a;
    /* deep navy */
    color: #ffffff;
    border: none;
}

.b2b-plan--primary .b2b-plan-title {
    color: #ffffff;
}

.b2b-plan--primary .b2b-plan-list li {
    color: rgba(255, 255, 255, .9);
}

.b2b-plan--primary .b2b-plan-note {
    color: white;
}

.b2b-plan--primary .b2b-btn {
    background: #d7e5ff;
    color: #0f1c2e;
}

/* Titles & divider */
.b2b-plan-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #021B32;
    margin: 0 0 2px 0;
}

.b2b-plan-subline {
    height: 1px;
    background: #e6ecf3;
    width: 100%;
}

/* Bullet list */
.b2b-plan-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.b2b-plan-list li {
    color: #475569;
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

.b2b-plan-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    color: #8aa3c6;
    font-weight: 900;
}

/* Green check note */
.b2b-plan-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 2px;
}

.b2b-plan-note::before {
    content: "✓";
    font-weight: 900;
    margin-top: 1px;
    color: #17A34A;
}

/* Button */
.b2b-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    background: #e6efff;
    color: #0f1c2e;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.b2b-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(2, 27, 50, .12);
}

/* Media queries at bottom */
@media (max-width: 991.98px) {
    .b2b-choose {
        padding: 56px 0;
    }
}

@media (max-width: 575.98px) {
    .b2b-choose-title {
        margin-bottom: 26px;
    }

    .b2b-plan {
        padding: 20px;
    }
}

/* ---------- DESKTOP styles (unchanged, now b2b-*) ---------- */
.b2b-outline-step {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    letter-spacing: .02em;
    font-size: clamp(5rem, 14vw, 9rem);
    line-height: 1;
}

.b2b-step-line {
    display: block;
    width: clamp(150px, 14vw, 310px);
    border-top: 2px solid rgba(255, 255, 255, .5);
}

.b2b-steps-container {
    justify-content: center !important;
}

/* ---------- MEDIA QUERIES (at bottom) ---------- */
@media (max-width:767.98px) {

    /* hide the whole desktop row */
    .b2b-steps-container {
        display: none !important;
    }

    /* wrapper: create a full-height vertical guide */
    .b2b-text-row {
        position: relative;
        margin-left: 10px;
        /* pulls text a bit right */
    }

    /* each caption row = flex */
    .b2b-text-row .col-md-4 {
        display: flex;
        align-items: flex-start;
        text-align: left !important;
        gap: 1rem;
        margin-bottom: 1.75rem;
    }

    /* bigger outline number + centred on the vertical guide */
    .b2b-mobile-step-num {
        font-size: 3rem;
        -webkit-text-stroke: 2px #fff;
        color: transparent;
        line-height: 1;
        flex-shrink: 0;
        position: relative;
        left: -10px;
        /* re-centre number on the guide */
        white-space: nowrap;
    }

    /* draw the vertical “continuation” below each number except last */
    .b2b-mobile-step-num::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        width: 2px;
        height: calc(100% + 5.75rem);
        /* matches gap between rows */
        background: rgba(255, 255, 255, .4);
    }

    .b2b-mobile-step-num.active {
        color: #F9C90A;
        -webkit-text-stroke-color: #F9C90A;
        text-shadow:
            0 0 8px rgba(249, 201, 10, .8),
            0 0 16px rgba(249, 201, 10, .6);
        /* smooth neon look */
    }
}

/* ===== B2B CTA Section ===== */
.b2b-cta-section {
    padding: 80px 0 90px;
    background-color: #f7f8fa;
}

.b2b-cta-card {
    background: #00234f;
    border-radius: 20px;
    padding: 3rem 2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.b2b-cta-card h2.b2b-cta-title {
    font-size: clamp(1.75rem, 3vw, 2rem) !important;
    /* font-weight: 800 !important; */
    margin-bottom: 12px !important;
    color: #ffffff !important;
}

.b2b-cta-text {
    font-size: 1.1rem;
    color: #d1d7e0;
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.b2b-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.b2b-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.b2b-btn-primary {
    background: #ffd200;
    color: #001c3f;
}

.b2b-btn-primary:hover {
    background: #ffcc00;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 210, 0, 0.4);
}

.b2b-btn-secondary {
    background: #e2e8f0;
    color: #001c3f;
}

.b2b-btn-secondary:hover {
    background: #cfd8e3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .b2b-cta-card {
        padding: 2rem 1.5rem;
    }

    .b2b-cta-title {
        font-size: 1.5rem;
    }

    .b2b-cta-text {
        font-size: 1rem;
        margin-bottom: 22px;
    }

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

/* ------------------------------
   HERO BACKDROP
------------------------------- */
.b2b-form-hero {
    --b2b-form-bg: url('https://visa-indonesia.com/wp-content/uploads/b2b-partnership-business-needs.png');
    /* swap the URL above to your preferred background */
    background:
        linear-gradient(0deg, rgba(0, 16, 38, .55), rgba(0, 16, 38, .55)),
        var(--b2b-form-bg) center/cover no-repeat;
    padding: 72px 0;
    position: relative;
}

/* ------------------------------
   CARD
------------------------------- */
.b2b-form-card {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(2, 27, 50, .28);
    overflow: hidden;
    /* for rounded header edges */
}

/* Header */
.b2b-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 22px;
    background: #ffffff;
    border-bottom: 1px solid #e6edf5;
}

.b2b-form-title {
    margin: 0;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 800;
    color: #0f1c2e;
    letter-spacing: -0.01em;
}

.b2b-form-tab {
    background: #f0f6ff;
    color: #0f3a7a;
    border: 1px solid #d8e6ff;
    font-weight: 700;
    font-size: .8rem;
    padding: 6px 10px;
    border-radius: 10px;
    white-space: nowrap;
}

/* Body */
.b2b-form-body {
    padding: 18px 22px 8px;
}

/* Footer (kept for future use if needed) */
.b2b-form-foot {
    padding: 12px 18px 18px;
}

/* ------------------------------
   WPForms – light theming inside the card
   (scoped so it only affects this wrapper)
------------------------------- */
.b2b-form-card .wpforms-field-label {
    font-weight: 700;
    color: #0f1c2e;
}

.b2b-form-card .wpforms-field-description {
    color: #64748b;
    font-size: .925rem;
}

.b2b-form-card input[type="text"],
.b2b-form-card input[type="email"],
.b2b-form-card input[type="tel"],
.b2b-form-card input[type="number"],
.b2b-form-card textarea,
.b2b-form-card select {
    background: #f8fafc;
    border: 1px solid #e6edf5;
    color: #0f172a;
    border-radius: 10px;
    padding: 12px 14px;
    line-height: 1.4;
    box-shadow: none;
}

.b2b-form-card input::placeholder,
.b2b-form-card textarea::placeholder {
    color: #9aa7b8;
}

.b2b-form-card .wpforms-field-select:after {
    /* keep default WPForms caret spacing nice */
    right: 14px;
}

/* Inline checkboxes/radios grid spacing */
.b2b-form-card .wpforms-field.wpforms-field-checkbox li,
.b2b-form-card .wpforms-field.wpforms-field-radio li {
    margin-bottom: .35rem;
}

.b2b-form-card .wpforms-field.wpforms-field-checkbox ul,
.b2b-form-card .wpforms-field.wpforms-field-radio ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .35rem 1.25rem;
}

/* Progress bar (if enabled) */
.b2b-form-card .wpforms-page-indicator.progress .wpforms-progress-bar,
.b2b-form-card .wpforms-progress {
    background: #e6edf5;
    height: 6px;
    border-radius: 999px;
}

.b2b-form-card .wpforms-page-indicator.progress .wpforms-progress-bar .wpforms-progress-bar-inner,
.b2b-form-card .wpforms-progress .wpforms-progress-bar-inner {
    background: #87b7ff;
    height: 100%;
    border-radius: 999px;
}

/* Buttons */
.b2b-form-card .wpforms-submit,
.b2b-form-card button[type="submit"],
.b2b-form-card .wpforms-page-button {
    border-radius: 999px !important;
    font-weight: 700 !important;
    padding: 12px 20px !important;
    border: 0 !important;
    transition: transform .2s ease, box-shadow .2s ease !important;
}

/* Primary (yellow) submit */
.b2b-form-card .wpforms-submit {
    background: #ffd200 !important;
    color: #001c3f !important;
    box-shadow: 0 8px 18px rgba(255, 210, 0, .35) !important;
}

.b2b-form-card .wpforms-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(255, 210, 0, .45) !important;
}

/* Secondary (back) */
.b2b-form-card .wpforms-page-button {
    background: #eef2f7 !important;
    color: #0f1c2e !important;
}

.b2b-form-card .wpforms-page-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(15, 28, 46, .12) !important;
}

/* Align back + submit like the screenshot when WPForms renders both */
.b2b-form-card .wpforms-submit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.b2b-form-head h3.b2b-form-title {
    margin: 0;
    font-size: clamp(1.15rem, 2.2vw, 1.35rem) !important;
    font-weight: 800;
    color: #021B32 !important;
    line-height: 1.5;
    padding-bottom: 0 !important;
}
/* ------------------------------
   Responsive
------------------------------- */
@media (max-width: 767.98px) {
    .b2b-form-hero {
        padding: 56px 0;
    }

    .b2b-form-card {
        border-radius: 16px;
        box-shadow: 0 16px 40px rgba(2, 27, 50, .24);
    }

    .b2b-form-body {
        padding: 16px 16px 6px;
    }

    .b2b-form-card .wpforms-field.wpforms-field-checkbox ul,
    .b2b-form-card .wpforms-field.wpforms-field-radio ul {
        grid-template-columns: 1fr;
        /* stack choices on small screens */
    }

    .b2b-form-card .wpforms-submit-container {
        grid-template-columns: 1fr;
        /* buttons stack */
    }
}

/* ================================
   B2B Testimonial Section
================================ */
.b2b-testimonial-section {
    background: #f7f8fa;
    padding: 90px 0;
    text-align: center;
}

.b2b-testimonial-section h2.b2b-testimonial-title {
    color: #021B32 !important;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Card */
.b2b-testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 36px;
    padding: 40px 50px;
    text-align: left;
}

.b2b-testimonial-image {
    flex: 0 0 160px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background: #e4e6eb;
}

.b2b-testimonial-content {
    flex: 1;
}

.b2b-testimonial-quote {
    font-size: 1.15rem;
    color: #001c3f;
    line-height: 1.6;
    margin-bottom: 18px;
    font-weight: 500;
}

.b2b-testimonial-author strong {
    color: #001c3f;
    font-weight: 700;
}

.b2b-testimonial-author span {
    color: #4b5563;
    font-size: 0.95rem;
}

/* Avatars */
.b2b-testimonial-avatars {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.b2b-testimonial-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease;
}

.b2b-testimonial-avatars img:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 767.98px) {
    .b2b-testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .b2b-testimonial-image {
        width: 120px;
    }

    .b2b-testimonial-content {
        text-align: center;
    }

    .b2b-testimonial-quote {
        font-size: 1rem;
    }
}