.wf-section {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    position: relative;
}

.s-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 860px;
    width: 100%;
}

.s-head h2 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--color-text);
}

.gt {
    background: var(--bg-highlight-light);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.s-head p {
    font-size: 18px;
    line-height: 26px;
    color: #3A464F;
}

.w-card {
    background: #fff;
    border-radius: 40px;
    padding: 40px;
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    border: 1px solid #f3f3f3;
}

.tabs-wrap {
    width: 100%;
    align-self: stretch;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    padding-top: 16px;
}

.tabs-nav {
    display: flex;
    width: 100%;
    padding-bottom: 24px;
}

.tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    opacity: .3;
    transition: opacity .35s ease;
    user-select: none;
}

.tab.active {
    opacity: 1;
}

.tab-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
}

.tab-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-hover);
    border-radius: 99px;
}

.tab-badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-highlight-light);
    line-height: 24px;
    white-space: nowrap;
}

.prog-track {
    height: 4px;
    background: var(--bg-hover);
    border-radius: 16px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.prog-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 10px;
    background: var(--bg-highlight-light-hover);
    width: 0%;
    transition: width .08s linear;
}

.steps-vp {
    width: 100%;
    position: relative;
}

.steps-inner {
    padding: 24px 0 40px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.steps-list-wrap {
    width: 100%;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 120px;
    scroll-margin-top: 180px;
}

.steps-list+.steps-list {
    margin-top: 80px;
}

.step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.step-badge {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-badge-in {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-num {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    background: var(--bg-highlight-light);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
}

.step-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 50px;
}

/* Center vertical timeline line */

.step-content::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 4px;
    bottom: 4px;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgb(108, 84, 255) 0%, rgb(9, 114, 206) 100%);
    border-radius: 10px;
}

.steps-list .step:last-child .step-content::before {
    background: linear-gradient(180deg, rgb(108, 84, 255) 0%, rgb(9, 114, 206) 55%, rgba(9, 114, 206, 0) 100%);
}

.row-title {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 50%;
    padding: 8px 0;
    position: relative;
}

.dot-title {
    position: absolute;
    right: -8px;
    top: 50%;
    height: 16px;
    border-radius: 50%;
    z-index: 3;
    border: 0;
    background: var(--bg-highlight-light);
    width: 16px;
    transform: translateY(-50%);
}

/* Actor wrapper (You / Next-Cart) */

.actor {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 6px;
    padding-bottom: 26px;
}

.actor-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    white-space: nowrap;
    background: var(--bg-highlight-light-hover);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-mid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 0;
}

.title-text {
    position: absolute;
    bottom: 62px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    text-align: right;
    margin: 0 15px 0 0;
}

.hline {
    height: 2px;
    background: rgba(9, 114, 206, .4);
    border-radius: 10px;
    position: absolute;
    top: 50%;
    width: calc(100% - 50px);
    transform: translateY(-50%);
}

.row-sub {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    position: relative;
    gap: 0;
}

.sub-l {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding-right: 30px;
    padding-top: 0;
}

.sub-l-text {
    font-size: 16px;
    color: #3A464F;
    line-height: 24px;
    white-space: nowrap;
    text-align: right;
}

.sub-r {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dot-sub {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 4px solid rgb(255 255 255);
    z-index: 3;
    background: var(--bg-highlight-light);
}

.sub-r-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-left: 0;
}

.sub-r-texts {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.sub-r-label {
    position: absolute;
    bottom: 35px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 26px;
    white-space: normal;
    margin-left: 10px;
    max-width: calc(100% - 50px);
}

.dline {
    height: 2px;
    background: repeating-linear-gradient(to right,
            rgba(9, 114, 206, .35) 0,
            rgba(9, 114, 206, .35) 6px,
            transparent 6px,
            transparent 12px);
    top: 50%;
    position: absolute;
    width: calc(100% - 75px);
    transform: translateY(-50%);
}

.actor-nc {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 0;
}

.complete-badge {
    background: rgba(222, 239, 255, 1);
    border-radius: 99px;
    padding: 12px 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 26px;
    text-align: center;
    margin-top: 16px;
    align-self: center;
}

.cta-btn {
    padding: 12px 24px;
    width: 240px;
    background: var(--color-text);
    border-radius: 999px;
    color: #fff;
    font-size: 16px;
    transition: background .35s ease-in-out, transform .35s ease-in-out, box-shadow .35s ease-in-out;
}

.cta-btn:hover {
    background: var(--bg-highlight-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(9, 114, 206, .25);
}

.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(9, 114, 206, .55);
    opacity: 1;
    transition: opacity .4s ease;
    pointer-events: none;
}

.scroll-hint.hidden {
    opacity: 0;
}

@keyframes bobble {

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

    50% {
        transform: translateY(4px);
    }
}

.scroll-hint svg {
    animation: bobble 1.8s ease-in-out infinite;
}

@keyframes flash-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

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

.steps-inner.anim-in {
    animation: flash-in .4s ease forwards;
}

.step-badge-in svg {
    width: 64px;
    height: 64px;
}

.dot-title:before {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--bg-highlight-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    content: '';
    top: 50%;
    left: 50%;
    border: 2px solid #fff;
}

.step-content .row-sub:last-child {
    padding-bottom: 0;
}

.box-section-service-04 {
    padding-top: 50px;
}

.box-section-service-03 {
    padding-bottom: 60px;
    padding-top: 50px;
}

.step-badge-in img {
    width: 64px;
    height: 64px;
}

.step.link-step .complete-badge {
    margin-top: 0;
}

.step.link-step .step-content {
    padding-bottom: 40px;
}

/* ===== Migrated from custom.css ===== */

.box-section-step .top .title-section {
    margin-bottom: 10px;
}

.box-section-step .top {
    margin-bottom: 50px;
}

.box-section-step .info .content-right .item .img {
    position: relative;
    width: 96px;
    height: 96px;
}

.box-section-step .info .content-right .item .step {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    color: #43A3F7;
    font-weight: 700;
    text-transform: uppercase;
}

.box-section-step .info .content-right .item .img img {
    width: 96px;
    height: 96px;
}

.box-section-step .top>.row>div:last-child .item span.icon-right {
    display: none;
}

.box-section-step .info .content-right .item.active img.img-active {
    display: block;
}

.box-section-step .info .content-right .item.active img.img-step {
    display: none;
}

.box-section-step .info .content-right .item span.icon-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
}

.box-section-step .content .title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.box-section-step .content .dsc .item {
    font-size: 14px;
    color: rgba(58, 70, 79, 1);
    margin-bottom: 20px;
    display: flex;
}

.box-section-step .content .dsc .item svg {
    flex: 0 0 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.box-section-step .img-target {
    padding-top: 46.66%;
}
.box-section-step .img-target img {
    object-fit: cover;
    border-radius: 16px;
    overflow: hidden;
}
.box-section-step .info>.row {
    margin-left: -40px;
    margin-right: -40px;
}

.box-section-step .info>.row>div {
    padding-left: 40px;
    padding-right: 40px;
}

.box-section-step .info .content-right .item {
    cursor: pointer;
}

.workflows-end-to-end .content .img {
    padding-top: 45%;
    position: relative;
    z-index: 3;
    pointer-events: none;
}

.workflows-end-to-end .img-list-icon-left .warp-img,
.workflows-end-to-end .img-list-icon-right .warp-img {
    z-index: 15 !important;
}

.box-the-complete .content .item {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.box-the-complete .top .dsc {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.box-the-complete .content .item .inter-item {
    position: relative;
    margin-bottom: 50px;
}

.box-the-complete .content .item .inter-item .title.title-01 {
    position: absolute;
    top: 85px;
    max-width: 50%;
    width: 100%;
    text-align: center;
    color: rgba(5, 54, 96, 1);
    font-weight: 600;
    font-size: 18px;
}

.box-the-complete .content .item .inter-item .title.title-02 {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 50%;
    text-align: right;
    padding-right: 55px;
}

.box-the-complete .content .item .inter-item .title.title-02 .dscv.dscv-01 {
    margin-bottom: 40px;
}

.box-the-complete .content .item .inter-item .title.title-03 {
    position: absolute;
    bottom: 39px;
    right: 0;
    width: 50%;
    text-align: center;
}

.box-the-complete .content .item .inter-item .title.title-03 .dscv.dscn-01 {
    margin-bottom: 45px;
}

.box-the-complete {
    position: relative;
}

.box-the-complete .content {
    position: relative;
    margin: 0 auto;
}

.box-the-complete .item.is-passed {
    transform: scale(0.92);
    opacity: 0.6;
    z-index: 0;
}

.box-the-complete .item.is-active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.list-tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.list-tab .item .name {
    height: 56px;
    padding: 0 15px;
    border-radius: 16px;
    background: rgba(250, 250, 250, 1);
    display: inline-flex;
    align-items: center;
}

.workflows-end-to-end .top {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
}

.workflows-end-to-end .list-image .item {
    display: none;
}

.workflows-end-to-end .list-image .item.active {
    display: block;
}

.workflows-end-to-end .imter-img-01 {
    position: relative;
    overflow: hidden;
}

.workflows-end-to-end .imter-img-01>svg:first-of-type {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
    z-index: 3;
    position: relative;
}

.workflows-end-to-end .imter-img-01 img.img-nen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.workflows-end-to-end>.container {
    position: relative;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01__ellipse-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    pointer-events: none;
    z-index: 0;
}

.workflows-end-to-end .imter-img-01__frame {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52%;
    pointer-events: none;
    z-index: 1;
}

.workflows-end-to-end .imter-img-01__frame--left {
    left: 0;
}

.workflows-end-to-end .imter-img-01__frame--right {
    right: 0;
    transform: translateY(-50%) scaleX(-1);
}

.workflows-end-to-end .imter-img-01 .list-image {
    position: absolute;
    width: 262px;
    height: 262px;
    top: 50%;
    left: 56px;
    z-index: 11;
    transform: translateY(-50%);
}

.workflows-end-to-end .imter-img-01 .list-image .warp-img.item-1 {
    position: absolute;
    top: 62px;
    left: 21px;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01 .list-image .warp-img.item-4 {
    position: absolute;
    left: 76px;
    top: 21px;
    z-index: 3;
}

.workflows-end-to-end .imter-img-01 .list-image .warp-img.item-3 {
    position: absolute;
    right: 0;
    top: 66px;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01 .list-image .warp-img.item-2 {
    position: absolute;
    top: 84px;
    left: 61%;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01 .list-image .warp-img.item-6 {
    position: absolute;
    top: 52%;
    left: 88px;
    z-index: 2;
    transform: translateY(-50%);
}

.workflows-end-to-end .imter-img-01 .list-image .warp-img.item-7 {
    position: absolute;
    bottom: 41px;
    left: 11px;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01 .list-image .warp-img.item-8 {
    left: 59%;
    position: absolute;
    top: 61%;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01 .list-image .warp-img.item-10 {
    position: absolute;
    bottom: 28px;
    left: 41%;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01 .list-image .warp-img.item-9 {
    position: absolute;
    bottom: 51px;
    right: 16px;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01 .list-image .warp-img.item-5 {
    position: absolute;
    right: 26px;
    top: 46%;
    z-index: 2;
}

.list-image-02 {
    position: absolute;
    right: 55px;
    width: 262px;
    height: 250px;
    top: 50%;
    z-index: 12;
    transform: translateY(-50%);
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-1 {
    position: absolute;
    top: 49px;
    right: -28px;
    z-index: 1;
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-2 {
    position: absolute;
    top: 72px;
    right: 43%;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-3 {
    position: absolute;
    left: 0;
    top: 57px;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-4 {
    position: absolute;
    right: 24px;
    top: 0px;
    z-index: 11;
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-5 {
    position: absolute;
    left: 45px;
    top: 46%;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-6 {
    position: absolute;
    top: 53%;
    right: 37px;
    z-index: 2;
    transform: translateY(-50%);
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-7 {
    position: absolute;
    bottom: 31px;
    right: -33px;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-8 {
    right: 52%;
    position: absolute;
    top: 64%;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-9 {
    position: absolute;
    bottom: 42px;
    left: 17px;
    z-index: 2;
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-10 {
    position: absolute;
    bottom: 16px;
    right: 31%;
    z-index: 2;
}

.workflows-end-to-end .list-tab--legacy {
    position: relative;
    margin-bottom: 50px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
}

.workflows-end-to-end .moving-icon-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.workflows-end-to-end .moving-icon-animation {
    position: absolute;
    z-index: 10000;
    pointer-events: none;
    transition: opacity 0.3s ease;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.workflows-end-to-end .moving-icon-default {
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.workflows-end-to-end .moving-icon-default::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 4px;
}

.workflows-end-to-end .list-tab .item.active .name {
    background: var(--bg-highlight-light);
    color: #fff;
    transition: background 0.3s ease, color 0.3s ease;
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.active {
    opacity: 1;
}

.box-the-complete .content .item .inter-item .img img {
    height: 325px;
}

.box-the-complete .content .item .inter-item .title.title-03 .dscv {
    color: rgba(5, 54, 96, 1);
    font-size: 18px;
    font-weight: 600;
}

.box-the-complete .content .item .inter-item .title.title-02 .dscv svg {
    margin-right: 10px;
}

.box-the-complete .warp-icon {
    position: absolute;
    top: 300px;
    z-index: 1;
    pointer-events: none;
}

.box-the-complete .warp-icon svg {
    max-width: 100%;
}

.box-the-complete .content .item-stack .warp-bottom {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.box-the-complete .content .item-stack .warp-top {
    text-align: center;
    margin-bottom: 50px;
}

.box-the-complete .content .item-stack .warp-top .title-warp {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

.box-the-complete .content .item-stack .warp-top .dsc span {
    background: rgba(9, 114, 206, 0.1);
    height: 40px;
    display: inline-flex;
    padding: 0 25px;
    border-radius: 25px;
    align-items: center;
    color: rgba(9, 114, 206, 1);
}

.box-the-complete .content {
    position: relative;
    padding: 0;
    min-height: 100vh;
    isolation: isolate;
}

.box-the-complete .content .item-stack {
    position: relative;
    width: 100%;
    height: calc(100vh - 160px);
    margin: 30px 0;
    padding: 3rem 0;
    border-radius: 40px;
    box-shadow: 0 0 0px rgba(0, 0, 0, .25);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    overflow: hidden;

    /* GPU acceleration */
    transform: translate3d(0, 0, 0);
    transform-origin: top center;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    transition: transform 0.1s cubic-bezier(0.33, 1, 0.68, 1);

    contain: layout style paint;
    content-visibility: auto;
}

.box-the-complete .content .item-stack:nth-child(1) {
    z-index: 1;
}

.box-the-complete .content .item-stack:nth-child(2) {
    z-index: 2;
}

.box-the-complete .content .item-stack:nth-child(3) {
    z-index: 3;
}

.box-the-complete .content .item-stack:nth-child(4) {
    z-index: 4;
}

.box-the-complete .content .item-stack:nth-child(5) {
    z-index: 5;
}

.box-the-complete .content .item-stack .warp-top {
    flex-shrink: 0;
}

.box-the-complete .content .item-stack .warp-bottom {
    position: relative;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .2) transparent;
    pointer-events: none;
}

.box-the-complete .content .item-stack .warp-bottom:hover {
    pointer-events: auto;
}

.box-the-complete .content .item-stack.is-hovering {
    box-shadow: 0 0 40px rgba(0, 0, 0, .3);
}

.box-the-complete .content .item-stack.is-hovering .warp-bottom {
    cursor: auto;
}

.box-the-complete .content .item-stack .warp-bottom::-webkit-scrollbar {
    width: 6px;
}

.box-the-complete .content .item-stack .warp-bottom::-webkit-scrollbar-track {
    background: transparent;
}

.box-the-complete .content .item-stack .warp-bottom::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .2);
    border-radius: 3px;
}

.box-the-complete .content .item-stack .warp-bottom::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, .3);
}

.box-the-complete .content .item-stack .warp-bottom .item {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

.box-the-complete .content .scroll-stack-end {
    width: 100%;
    height: 1px;
    margin-top: 50vh;
}

.workflows-end-to-end .list-tab {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    margin-bottom: 50px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 24px;
}

.workflows-end-to-end .list-tab .tab-arrow {
    display: flex;
    align-items: center;
    color: rgba(9, 114, 206, 0.35);
    flex-shrink: 0;
    pointer-events: none;
}

.workflows-end-to-end .list-tab .item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 16px;
    transition: color 0.2s ease;
    min-height: 56px;
    padding: 0 10px;
}

.workflows-end-to-end .list-tab .item .item-fill {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    transition: none;
    pointer-events: none;
    z-index: 0;
    border-radius: 16px;
    background: linear-gradient(93.79deg, #0972CE 1.77%, #43A3F7 97.2%);
}

.workflows-end-to-end .list-tab .item .item-label {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 600;
    color: #3A464F;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.workflows-end-to-end .list-tab .item.active .item-label {
    font-weight: 600;
}

.workflows-end-to-end .list-tab .item.active .item-fill {
    transform: scaleX(1);
}

.workflows-end-to-end .list-tab .item.done {
    background: linear-gradient(93.79deg, #0972CE 1.77%, #43A3F7 97.2%);
}

.workflows-end-to-end .list-tab .item.done .item-label {
    color: #fff;
}

.workflows-end-to-end .content .info-warp-item-bottom {
    background: #0972CE1A;
    padding: 40px 60px;
    border-radius: 24px;
}

.workflows-end-to-end .content .info-warp-item-bottom>.row {
    align-items: center;
}

.info-warp-item-bottom--left .info-warp-item-bottom--left--title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.info-warp-item-bottom--left .info-warp-item-bottom--left--title .icon {
    width: 40px;
    height: 40px;
    background: #fff;
    box-shadow: 0px 2.39px 2.39px 0px #ECF0F4;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.info-warp-item-bottom--left .info-warp-item-bottom--left--title .icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.info-warp-item-bottom--left .info-warp-item-bottom--left--title .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
}

.info-warp-item-bottom--left .info-warp-item-bottom--left--content {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
}

.workflows-end-to-end .warp-img img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 50%;
}

.workflows-end-to-end .warp-img {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflows-end-to-end .warp-img.item-1 {
    width: 31px;
    height: 31px;
}

.workflows-end-to-end .warp-img.item-1 img {
    width: 20px;
    height: 20px;
}

.workflows-end-to-end .warp-img.item-2 {
    height: 32px;
    width: 32px;
}

.workflows-end-to-end .warp-img.item-2 img {
    width: 21px;
    height: 22px;
}

.workflows-end-to-end .warp-img.item-3 {
    height: 35px;
    width: 35px;
}

.workflows-end-to-end .warp-img.item-3 img {
    width: 25px;
    height: 25px;
}

.workflows-end-to-end .warp-img.item-4 {
    height: 52px;
    width: 52px;
}

.workflows-end-to-end .warp-img.item-4 img {
    width: 35px;
    height: 35px;
}

.workflows-end-to-end .warp-img.item-5 {
    height: 35px;
    width: 35px;
}

.workflows-end-to-end .warp-img.item-5 img {
    width: 25px;
    height: 25px;
}

.workflows-end-to-end .warp-img.item-6 {
    height: 30px;
    width: 30px;
}

.workflows-end-to-end .warp-img.item-6 img {
    width: 20px;
    height: 20px;
}

.workflows-end-to-end .warp-img.item-7 {
    height: 44px;
    width: 44px;
}

.workflows-end-to-end .warp-img.item-7 img {
    width: 25px;
    height: 25px;
}

.workflows-end-to-end .warp-img.item-8 {
    height: 26px;
    width: 26px;
}

.workflows-end-to-end .warp-img.item-8 img {
    width: 18px;
    height: 18px;
}

.workflows-end-to-end .warp-img.item-9 {
    height: 35px;
    width: 35px;
}

.workflows-end-to-end .warp-img.item-9 img {
    width: 25px;
    height: 25px;
}

.workflows-end-to-end .warp-img.item-10 {
    height: 40px;
    width: 40px;
}

.workflows-end-to-end .warp-img.item-10 img {
    width: 25px;
    height: 25px;
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.active {
    opacity: 1;
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.active img {
    opacity: 1;
}

.workflows-end-to-end .imter-img-01 .list-image-02 .warp-img img {
    opacity: 0.2;
}

.workflows-end-to-end {
    padding-bottom: 80px;
    position: relative;
    padding-top: 80px;
}

.workflows-end-to-end .svg-before svg,
.workflows-end-to-end .svg-before img {
    position: absolute;
    top: 0;
    pointer-events: none;
    left: 0;
    width: 100%;
    z-index: 1;
}

.steps-list-wrap .title-step {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 25px;
    color: var(--color-text);
}

.workflows-end-to-end .imter-img-01 .wf-target-content>*:not(.wf-target-item) {
    opacity: 0.1;
}

.workflows-end-to-end .imter-img-01 .wf-target-content>.wf-target-item {
    opacity: 0.2;
    transition: opacity 4s linear;
}

.workflows-end-to-end .imter-img-01 .wf-target-content>.wf-target-item.is-active {
    opacity: 1;
}

.workflows-end-to-end .imter-img-01 .wf-target-content>.wf-target-lines {
    opacity: 0.1;
    transition: opacity 0.5s ease-out;
}

.workflows-end-to-end .imter-img-01 .wf-target-content>.wf-target-lines.is-active {
    opacity: 1;
    transition: opacity 4s linear;
}

.workflows-end-to-end .imter-img-01 .wf-arrow {
    opacity: 0;
    transform: translate3d(-10px, 0, 0);
    transform-box: fill-box;
    transform-origin: center;
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.workflows-end-to-end .imter-img-01 .wf-arrow-big {
    animation: wf-arrow-big 2.8s cubic-bezier(0.33, 0.65, 0.36, 1) infinite;
}

.workflows-end-to-end .imter-img-01 .wf-arrow-small {
    animation: wf-arrow-small 2.8s cubic-bezier(0.33, 0.65, 0.36, 1) infinite;
}

@keyframes wf-arrow-big {
    0% {
        opacity: 0;
        transform: translate3d(-10px, 0, 0);
    }

    18% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    65% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    82% {
        opacity: 0;
        transform: translate3d(6px, 0, 0);
    }

    100% {
        opacity: 0;
        transform: translate3d(-10px, 0, 0);
    }
}

@keyframes wf-arrow-small {
    0% {
        opacity: 0;
        transform: translate3d(-10px, 0, 0);
    }

    20% {
        opacity: 0;
        transform: translate3d(-10px, 0, 0);
    }

    38% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    65% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    82% {
        opacity: 0;
        transform: translate3d(6px, 0, 0);
    }

    100% {
        opacity: 0;
        transform: translate3d(-10px, 0, 0);
    }
}

.workflows-end-to-end.nh-motion-paused .imter-img-01 .wf-arrow {
    animation-play-state: paused !important;
}

.workflows-end-to-end.nh-motion-paused .item-fill,
.workflows-end-to-end.nh-motion-paused .text-overlay,
.workflows-end-to-end.nh-motion-paused .imter-img-01 .wf-target-item,
.workflows-end-to-end.nh-motion-paused .imter-img-01 .wf-target-lines {
    transition-duration: 0s !important;
}

#wfSection.wf-anim .step-content::before {
    transform: translateX(-50%) scaleY(0);
    transform-origin: top center;
    transition: transform 1.4s cubic-bezier(.22, .61, .36, 1);
}

#wfSection.wf-anim .step.is-revealed .step-content::before {
    transform: translateX(-50%) scaleY(1);
}

#wfSection.wf-anim .actor {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 1s ease .45s, transform 1.3s cubic-bezier(.22, .61, .36, 1) .45s;
}

#wfSection.wf-anim .step.is-revealed .actor {
    opacity: 1;
    transform: translateX(0);
}

#wfSection.wf-anim .actor-nc {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 1s ease .45s, transform 1.3s cubic-bezier(.22, .61, .36, 1) .45s;
}

#wfSection.wf-anim .row-sub.is-revealed .actor-nc {
    opacity: 1;
    transform: translateX(0);
}

#wfSection.wf-anim .hline {
    transform: translateY(-50%) scaleX(0);
    transform-origin: right center;
    transition: transform 1.2s cubic-bezier(.22, .61, .36, 1);
}

#wfSection.wf-anim .step.is-revealed .hline {
    transform: translateY(-50%) scaleX(1);
}

#wfSection.wf-anim .dline {
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    transition: transform 1.2s cubic-bezier(.22, .61, .36, 1);
}

#wfSection.wf-anim .row-sub.is-revealed .dline {
    transform: translateY(-50%) scaleX(1);
}

#wfSection.wf-anim .dot-title,
#wfSection.wf-anim .dot-sub {
    opacity: 0;
    transition: opacity .6s ease;
}

#wfSection.wf-anim .step.is-revealed .dot-title,
#wfSection.wf-anim .row-sub.is-revealed .dot-sub {
    opacity: 1;
}

#wfSection.wf-anim .title-text,
#wfSection.wf-anim .sub-l>img,
#wfSection.wf-anim .sub-l-text,
#wfSection.wf-anim .sub-r-label {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .9s ease .25s, transform .9s cubic-bezier(.22, .61, .36, 1) .25s;
}

#wfSection.wf-anim .step.is-revealed .title-text,
#wfSection.wf-anim .row-sub.is-revealed .sub-l>img,
#wfSection.wf-anim .row-sub.is-revealed .sub-l-text,
#wfSection.wf-anim .row-sub.is-revealed .sub-r-label {
    opacity: 1;
    transform: translateY(0);
}

.box-section-step .top .list-warp {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-section-step .top .list-warp span.icon-right img {
    width: 32px;
    height: 32px;
}

.box-section-step .top .list-warp span.icon-right:last-child {
    display: none;
}

.workflows-end-to-end>.container {
    position: relative;
    z-index: 2;
}

.box-the-complete>.container {
    position: relative;
    z-index: 2;
}

/* ===== Migrated from custom.css (auto-split by page usage) ===== */

.section-banner-workflows-01 {
    background: linear-gradient(180deg, #DEEFFF 0%, #FFFFFF 96.43%);
    padding-bottom: 80px;
    padding-top: 40px;
}

.warp-banner-01 {
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.warp-banner-01 .dsc {
    color: #053660;
    font-weight: 600;
    margin-bottom: 30px;
}

.warp-banner-01 .title-section span {
    margin-left: 0;
}

.warp-banner-01 .inter-img .img {
    padding-top: 58.9%;
}

.warp-banner-01 .inter-img .img img {
    object-fit: cover;
}

img.img-active {
    display: none;
}

.warp-banner-01 .inter-img {
    position: relative;
}

.text-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    padding: 0 10px;
    z-index: 2;
    clip-path: inset(0 100% 0 0);
    pointer-events: none;
    border-radius: 6px;
}

.box-the-complete .warp-icon img {
    width: 100%;
    max-width: 100%;
}

.warp-banner-01 .inter-img .img svg {
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.box-rely-workflows {
    overflow: hidden;
}

.box-section-step .image-warp {
    box-shadow: inset 0 0 0 1px #FFFFFF, 0 7.57px 43.26px 7.57px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 18px;
    z-index: 1;
    position: relative;
    padding: 12px;
    margin-bottom: 48px;
}

.box-section-step .image-warp img.dot {margin-bottom: 10px;height: 10px;margin-top: 10px;padding-left: 15px;}
@media (prefers-reduced-motion: reduce) {
    .workflows-end-to-end .imter-img-01 .wf-arrow {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .workflows-end-to-end .item-fill,
    .workflows-end-to-end .text-overlay,
    .workflows-end-to-end .imter-img-01 .wf-target-item,
    .workflows-end-to-end .imter-img-01 .wf-target-lines {
        transition: none !important;
    }
}

@media (max-width: 1299.98px) {
    .box-section-step .top .list-warp span.icon-right img {
        width: 25px;
    }

    .box-rely-workflows {
        padding: 60px 0;
    }
}

@media (max-width: 1199.98px) {
    .workflows-end-to-end {
        padding-bottom: 60px;
        padding-top: 0;
    }

    .workflows-end-to-end .content .info-warp-item-bottom {
        padding: 15px;
    }

    .list-tab .item .name {
        height: 45px;
        padding: 0 10px;
        width: 100%;
        text-align: center;
        font-size: 11px;
        display: inline-flex;
        justify-content: center;
    }

    .workflows-end-to-end .list-tab {
        gap: 5px;
        margin-bottom: 15px;
    }

    .workflows-end-to-end .list-tab .item>svg {
        display: none;
    }

    .list-image-02 {
        right: 0;
        width: 131px;
        height: 169px;
    }

    .workflows-end-to-end .imter-img-01 .list-image {
        left: 0;
        width: 131px;
        height: 169px;
    }

    .workflows-end-to-end .content .img {
        padding-top: 47%;
    }

    .workflows-end-to-end .warp-img.item-1 {
        width: 20px;
        height: 20px;
    }

    .workflows-end-to-end .warp-img.item-1 img {
        width: 15px;
        height: 15px;
    }

    .workflows-end-to-end .warp-img.item-2 {
        height: 20px;
        width: 20px;
    }

    .workflows-end-to-end .warp-img.item-2 img {
        width: 15px;
        height: 15px;
    }

    .workflows-end-to-end .warp-img.item-3 {
        height: 20px;
        width: 20px;
    }

    .workflows-end-to-end .warp-img.item-3 img {
        width: 14px;
        height: 14px;
    }

    .workflows-end-to-end .warp-img.item-4 {
        height: 25px;
        width: 25px;
    }

    .workflows-end-to-end .warp-img.item-4 img {
        width: 20px;
        height: 20px;
    }

    .workflows-end-to-end .warp-img.item-5 {
        height: 20px;
        width: 20px;
    }

    .workflows-end-to-end .warp-img.item-5 img {
        width: 14px;
        height: 15px;
    }

    .workflows-end-to-end .warp-img.item-6 {
        height: 20px;
        width: 20px;
    }

    .workflows-end-to-end .warp-img.item-6 img {
        width: 14px;
        height: 14px;
    }

    .workflows-end-to-end .warp-img.item-7 {
        height: 25px;
        width: 25px;
    }

    .workflows-end-to-end .warp-img.item-7 img {
        width: 18px;
        height: 18px;
    }

    .workflows-end-to-end .warp-img.item-8 {
        height: 20px;
        width: 20px;
    }

    .workflows-end-to-end .warp-img.item-8 img {
        width: 15px;
        height: 15px;
    }

    .workflows-end-to-end .warp-img.item-9 {
        height: 20px;
        width: 20px;
    }

    .workflows-end-to-end .warp-img.item-9 img {
        width: 14px;
        height: 14px;
    }

    .workflows-end-to-end .warp-img.item-10 {
        height: 20px;
        width: 20px;
    }

    .workflows-end-to-end .warp-img.item-10 img {
        width: 16px;
        height: 16px;
    }

    .workflows-end-to-end .list-tab .tab-arrow {
        display: none;
    }

    .workflows-end-to-end .imter-img-01 .list-image .warp-img.item-4 {
        left: 40px;
        top: 31px;
    }

    .workflows-end-to-end .imter-img-01 .list-image .warp-img.item-3 {
        top: 51px;
    }

    .workflows-end-to-end .imter-img-01 .list-image .warp-img.item-1 {
        top: 52px;
        left: 13px;
    }

    .workflows-end-to-end .imter-img-01 .list-image .warp-img.item-6 {
        top: 52%;
        left: 37px;
    }

    .workflows-end-to-end .imter-img-01 .list-image .warp-img.item-10 {
        bottom: 27px;
        left: 35%;
    }

    .workflows-end-to-end .imter-img-01 .list-image .warp-img.item-8 {
        left: 48%;
        top: 56%;
    }

    .workflows-end-to-end .imter-img-01 .list-image .warp-img.item-2 {
        top: 59px;
        left: 51%;
    }

    .workflows-end-to-end .imter-img-01 .list-image .warp-img.item-9 {
        bottom: 38px;
        right: 15px;
    }

    .workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-4 {
        right: 23px;
        top: 27px;
    }

    .workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-3 {
        top: 50px;
    }

    .workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-1 {
        right: 0;
    }

    .workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-5 {
        left: 11px;
        top: 46%;
    }

    .workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-9 {
        bottom: 42px;
        left: 5px;
    }

    .workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-2 {
        top: 57px;
        right: 43%;
    }

    .workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-7 {
        bottom: 38px;
        right: 0;
    }

    .workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-10 {
        bottom: 32px;
        right: 31%;
    }

    .workflows-end-to-end .imter-img-01 .list-image-02 .warp-img.item-8 {
        right: 55%;
        top: 55%;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .box-section-step .img-target {
        margin-top: 30px;
    }

    /* list-tab scroll ngang */
    .workflows-end-to-end .list-tab {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 4px;
        padding: 10px 12px;
        margin-bottom: 24px;
    }

    .workflows-end-to-end .list-tab::-webkit-scrollbar {
        display: none;
    }

    .workflows-end-to-end .list-tab .tab-arrow {
        display: none;
    }

    .workflows-end-to-end .list-tab .item {
        flex-shrink: 0;
        min-height: 48px;
    }

    /* info bottom */
    .workflows-end-to-end .content .info-warp-item-bottom {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .workflows-end-to-end .content .info-warp-item-bottom>.row {
        flex-direction: column;
    }

    .workflows-end-to-end .content .info-warp-item-bottom>.row>[class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .info-warp-item-bottom--left .info-warp-item-bottom--left--title .title {
        font-size: 19px;
    }

    .info-warp-item-bottom--left .info-warp-item-bottom--left--content {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .workflows-end-to-end .content .img {
        padding-top: 55%;
    }

    /* Card */
    .w-card {
        padding: 24px 20px;
        border-radius: 24px;
        gap: 24px;
    }

    /* Tabs */
    .tab-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .tab-badge-text {
        font-size: 13px;
    }

    .tab-badge {
        padding: 6px 12px;
    }

    .tabs-nav {
        gap: 8px;
        padding-bottom: 16px;
    }

    /* Steps layout */
    .steps-list {
        padding: 0 10px;
    }

    .steps-inner {
        padding: 16px 0 30px;
    }

    .steps-list-wrap .title-step {
        font-size: 20px;
        margin-bottom: 16px;
    }

    /* Timeline text */
    .title-text {
        font-size: 14px;
        padding: 0 8px;
    }

    .sub-r-label {
        font-size: 13px;
        white-space: normal;
        line-height: 1.4;
        padding: 0 4px;
        position: absolute;
        bottom: 34px;
        max-width: calc(100% - 50px);
    }

    .sub-l-text {
        font-size: 12px;
        white-space: normal;
        line-height: 1.4;
        text-align: right;
    }

    .sub-l {
        padding-right: 16px;
    }

    .sub-r-inner {
        gap: 8px;
    }

    /* Actor icons */
    .actor svg,
    .actor-nc svg {
        width: 30px;
        height: 30px;
    }

    .actor-name {
        font-size: 11px;
    }

    .actor {
        padding-bottom: 16px;
    }

    /* Step badge */
    .step-num {
        font-size: 22px;
    }

    .step-badge {
        width: 56px;
        height: 56px;
    }

    .step-badge-in svg,
    .step-badge-in img {
        width: 56px;
        height: 56px;
    }

    /* CTA */
    .cta-btn {
        font-size: 15px;
        width: 220px;
    }

    .box-section-step .info>.row {
        margin-left: -20px;
        margin-right: -20px;
    }

    .box-section-step .info>.row>div {
        padding-left: 20px;
        padding-right: 20px;
    }

    .box-section-step .info .content-right .item .img {
        width: 80px;
        height: 80px;
        margin-left: auto;
        margin-right: auto;
    }

    .box-section-step .info .content-right .item .img img {
        width: 80px;
        height: 80px;
    }

    .box-section-step .info .content-right .item .step {
        font-size: 15px;
    }

    .box-section-step .info .content-right .item span.icon-right {
        right: -10px;
    }

    .box-section-step .info .content-right .item span.icon-right svg {
        width: 22px;
        height: 22px;
    }

    .box-section-step .content .title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .box-section-step .top {
        margin-bottom: 35px;
    }

    .box-section-step .content-right {
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .box-section-step .info .content-right .item .img {
        width: 65px;
        height: 65px;
    }

    .box-section-step .info .content-right .item .img img {
        width: 65px;
        height: 65px;
    }
}

@media (min-width: 767px) and (max-width: 1199.98px) {
    .tab-badge {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .text-overlay {
        font-size: 13px !important;
    }

    .box-section-service-04 {
        padding-top: 30px;
    }

    .box-section-service-03 {
        padding-bottom: 40px;
        padding-top: 40px;
    }

    .w-card {
        border-radius: 12px;
        padding: 15px;
        max-width: 100%;
        gap: 30px;
    }

    .tab-title {
        font-size: 16px;
    }

    .tab-badge-text {
        font-size: 12px;
    }

    .tab-badge svg {
        height: 16px;
        width: 16px;
    }

    .tab-badge {
        padding: 8px 12px;
        display: none;
    }

    .tabs-nav {
        gap: 10px;
        padding-bottom: 15px;
        overflow-x: auto;
    }

    .tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .tabs-wrap {
        padding-top: 5px;
    }

    .steps-list {
        padding: 0;
    }

    .title-text {
        font-size: 13px;
    }

    .sub-r-label {
        font-size: 12px;
        white-space: normal;
        line-height: 1.3;
        padding: 0 5px;
        bottom: 50px;
    }

    .sub-r-inner {
        gap: 10px;
        padding-bottom: 25px;
    }

    .sub-l-text {
        font-size: 11px;
        white-space: normal;
        line-height: 1.5;
    }

    .sub-l {
        padding-right: 15px;
    }

    .actor-nc svg {
        width: 27px;
        height: 27px;
    }

    .actor svg {
        width: 25px;
        height: 25px;
    }

    .actor-name {
        font-size: 10px;
    }

    .sub-r-texts {
        flex-basis: calc(100% - 57px);
        max-width: calc(100% - 57px);
    }

    .step-num {
        font-size: 20px;
    }

    .cta-btn {
        font-size: 14px;
    }

    .steps-list-wrap .title-step {
        font-size: 22px;
    }

    .row-title {
        gap: 10px;
    }

    .dline {
        width: calc(100% - 55px);
    }

    .steps-inner {
        padding-bottom: 0;
    }

    .workflows-end-to-end .top {
        margin-bottom: 30px;
    }

    /* list-tab scroll ngang */
    .workflows-end-to-end .list-tab {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 4px;
        padding: 8px 10px;
        margin-bottom: 20px;
        border-radius: 16px;
    }

    .workflows-end-to-end .list-tab::-webkit-scrollbar {
        display: none;
    }

    .workflows-end-to-end .list-tab .tab-arrow {
        display: none;
    }

    .workflows-end-to-end .list-tab .item {
        flex-shrink: 0;
        min-height: 44px;
        padding: 0 10px;
    }

    .workflows-end-to-end .list-tab .item .item-label {
        font-size: 13px;
        white-space: nowrap;
    }

    .workflows-end-to-end .content .info-warp-item-bottom {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .workflows-end-to-end .content .info-warp-item-bottom>.row {
        flex-direction: column;
    }

    .workflows-end-to-end .content .info-warp-item-bottom>.row>[class*="col-"] {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .info-warp-item-bottom--left .info-warp-item-bottom--left--title .title {
        font-size: 18px;
    }

    .info-warp-item-bottom--left .info-warp-item-bottom--left--content {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .workflows-end-to-end .imter-img-01 {
        display: block;
    }

    .workflows-end-to-end .content .img {
        padding-top: 70%;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .box-section-step .info .content-right .item .img {
        width: 80px;
        height: 80px;
        margin-left: auto;
        margin-right: auto;
    }

    .box-section-step .info .content-right .item .img img {
        width: 80px;
        height: 80px;
    }

    .box-section-step .info .content-right .item .step {
        font-size: 16px;
    }

    .box-section-step .info .content-right .item {
        position: relative;
    }

    .box-section-step .info .content-right .item span.icon-right {
        right: -12px;
        z-index: 1;
    }

    .box-section-step .info .content-right .item span.icon-right svg {
        width: 18px;
    }

    .box-section-step .top {
        margin-bottom: 40px;
    }

    .box-section-step .content-right {
        margin-bottom: 40px;
    }

    .box-section-step .content-right .top {
        margin-bottom: 20px;
    }

    .box-section-step .content .title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .box-section-step .content-right .btn-action.btn-link-more {
        text-align: center;
    }

    .box-section-step .img-target {
        margin-top: 20px;
    }

    .box-section-step .info>.row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .box-section-step .info>.row>div {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 575.98px) {
    .box-section-step .info .content-right .item .img img {
        width: 60px;
        height: 60px;
    }

    .box-section-step .info .content-right .item .img {
        width: 60px;
        height: 60px;
        margin-left: auto;
        margin-right: auto;
    }

    .box-section-step .info .content-right .item span.icon-right {
        right: -8px;
    }

    .box-section-step .info .content-right .item span.icon-right svg {
        width: 14px;
    }

    .box-section-step .info .content-right .item .step {
        font-size: 14px;
    }

    .box-section-step .top {
        margin-bottom: 40px;
    }

    .box-section-step .content-right {
        margin-bottom: 40px;
    }

    .box-section-step .content-right .top {
        margin-bottom: 20px;
    }

    .box-section-step .content .title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .box-section-step .content-right .btn-action.btn-link-more {
        text-align: center;
        justify-content: center;
    }

    .box-the-complete .top .dsc {
        margin-bottom: 30px;
    }
}
