.b2b-hub {
    font-family: var(--fb, 'Lexend Deca', 'Be Vietnam Pro', sans-serif);
    color: #111827;
}

.b2b-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.b2b-display {
    font-family: var(--fd, 'Plus Jakarta Sans', sans-serif);
}

.b2b-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    padding: 14px 22px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.b2b-btn:hover {
    transform: translateY(-2px);
    opacity: .95;
    text-decoration: none;
}

.b2b-btn-primary {
    background: #FEBE00;
    color: #1a0f2e;
    box-shadow: 0 14px 35px rgba(254, 190, 0, .28);
}

.b2b-btn-ghost {
    border: 1px solid rgba(255, 255, 255, .34);
    color: #fff;
}

.b2b-card {
    background: #fff;
    border: 1px solid #ede9ff;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 14px 40px rgba(17, 24, 39, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.b2b-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(71, 17, 141, .12);
    border-color: rgba(71, 17, 141, .18);
}

.b2b-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.b2b-section {
    padding: 64px 0;
}

.b2b-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.b2b-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.b2b-muted {
    color: #6b7280;
}

.b2b-link-card {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}

.b2b-link-card:hover {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 900px) {
    .b2b-grid-3,
    .b2b-grid-2 {
        grid-template-columns: 1fr;
    }

    .b2b-section {
        padding: 46px 0;
    }

    .b2b-wrap {
        padding-left: 18px;
        padding-right: 18px;
    }
}
