.home-process-section {
    position: relative;
    overflow: hidden;
    padding: 82px 0 76px;
    background: linear-gradient(180deg, #f6fbff 0%, #ffffff 48%, #edf7ff 100%);
    isolation: isolate;
}

    .home-process-section:before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(90deg, rgba(0, 168, 249, 0.08) 1px, transparent 1px), linear-gradient(180deg, rgba(0, 168, 249, 0.08) 1px, transparent 1px);
        background-size: 44px 44px;
        -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
        mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
        opacity: 0.45;
        pointer-events: none;
        z-index: 0;
    }

    .home-process-section:after {
        content: "";
        position: absolute;
        right: -18%;
        bottom: -28%;
        width: 620px;
        height: 620px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(246, 191, 66, 0.22) 0%, rgba(246, 191, 66, 0) 65%);
        pointer-events: none;
        z-index: 0;
    }

.home-process-container {
    position: relative;
    z-index: 1;
    padding: 0 10px;
    margin: 0 auto;
}

.home-process-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    padding-bottom: 18px;
    text-align: center;
    background: none;
}

    .home-process-heading span {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        color: #f6bf42;
        font-family: 'monSB';
        font-size: 14px;
        line-height: 1.4;
        text-transform: uppercase;
    }

        .home-process-heading span:before,
        .home-process-heading span:after {
            content: "";
            width: 34px;
            height: 2px;
            border-radius: 8px;
            background: #f6bf42;
        }

    .home-process-heading h2 {
        position: relative;
        display: inline-block;
        margin: 0;
        color: #07305d;
        font-family: 'MonEB';
        font-size: 36px;
        font-weight: normal;
        line-height: 1.18;
        text-transform: uppercase;
    }

        .home-process-heading h2:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -14px;
            width: 92px;
            height: 3px;
            border-radius: 8px;
            background: linear-gradient(90deg, #f6bf42, #00a8f9);
            transform: translateX(-50%);
        }

    .home-process-heading p {
        max-width: 680px;
        margin: 28px auto 0;
        color: #40546a;
        font-family: 'monM';
        font-size: 16px;
        line-height: 1.7;
    }

.home-process-layout {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    background: none;
}

.home-process-visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .home-process-visual:before {
        content: "";
        position: absolute;
        inset: -1px;
        border: 1px dashed rgba(0, 168, 249, 0.35);
        border-radius: 50%;
        animation: processSpin 20s linear infinite;
    }

.home-process-image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 380px;
    height: 380px;
    padding: 18px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff 0%, #eaf7ff 100%);
    box-shadow: 0 28px 70px rgba(0, 61, 117, 0.18);
}

    .home-process-image img {
        display: block;
        max-width: 470px;
        max-height: 470px;
        width: 100%;
        height: 100% !important;
        object-fit: cover;
        filter: drop-shadow(0 18px 24px rgba(0, 56, 104, 0.14));
        transition: transform 0.45s ease;
        border-radius: 50%;
    }

.home-process-visual:hover .home-process-image img {
    transform: scale(1.05);
}

.home-process-badge {
    position: absolute;
    z-index: 2;
    right: 4px;
    bottom: -22px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: max-content;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #045ca9 0%, #00a8f9 100%);
    box-shadow: 0 18px 36px rgba(0, 92, 169, 0.26);
}

    .home-process-badge strong {
        color: #f6bf42;
        font-family: 'MonEB';
        font-size: 36px;
        font-weight: normal;
        line-height: 1;
    }

    .home-process-badge span {
        font-family: 'monSB';
        font-size: 13px;
        line-height: 1.35;
        text-transform: uppercase;
    }

.home-process-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: none;
}

    .home-process-list:before {
        content: "";
        position: absolute;
        top: 36px;
        bottom: 36px;
        left: 38px;
        width: 2px;
        border-radius: 8px;
        background: linear-gradient(180deg, rgba(0, 168, 249, 0), rgba(0, 168, 249, 0.72), rgba(246, 191, 66, 0.78), rgba(0, 168, 249, 0));
    }

.home-process-step {
    position: relative;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    margin: 0;
    animation: processFadeUp 0.7s ease both;
}

    .home-process-step:nth-child(2) {
        animation-delay: 0.06s;
    }

    .home-process-step:nth-child(3) {
        animation-delay: 0.12s;
    }

    .home-process-step:nth-child(4) {
        animation-delay: 0.18s;
    }

    .home-process-step:nth-child(5) {
        animation-delay: 0.24s;
    }

.home-process-number {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 78px;
    min-width: 78px;
    height: 78px;
    margin: 0;
    border: 6px solid #f3fbff;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #eaf7ff 100%);
    box-shadow: 0 14px 28px rgba(0, 83, 145, 0.14);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

    .home-process-number span {
        color: #64758a;
        font-family: 'monSB';
        font-size: 10px;
        line-height: 1;
        text-transform: uppercase;
    }

    .home-process-number p {
        margin: 4px 0 0;
        color: #045ca9;
        font-family: 'MonEB';
        font-size: 27px;
        font-weight: normal;
        line-height: 1;
    }

.home-process-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 112px;
    width: 100%;
    max-width: none;
    height: auto;
    padding: 20px 22px;
    overflow: hidden;
    border: 1px solid rgba(0, 168, 249, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 44px rgba(13, 60, 109, 0.09);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

    .home-process-card:before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 168, 249, 0.1), rgba(246, 191, 66, 0.08));
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .home-process-card:after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 4px;
        background: linear-gradient(180deg, #00a8f9, #f6bf42);
    }

.home-process-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    color: #045ca9;
    background: #eff9ff;
    box-shadow: inset 0 0 0 1px rgba(0, 168, 249, 0.14);
    transition: transform 0.35s ease, color 0.35s ease, background 0.35s ease;
}

.home-process-text {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.home-process-card h3 {
    margin: 0 0 6px;
    color: #07305d;
    font-family: 'MonEB';
    font-size: 16px;
    font-weight: normal;
    line-height: 1.35;
    text-transform: uppercase;
}

.home-process-card p {
    margin: 0;
    color: #4b5f73;
    font-family: 'monM';
    font-size: 14px;
    line-height: 1.65;
}

.home-process-step:hover .home-process-number {
    transform: translateY(-4px);
    border-color: rgba(246, 191, 66, 0.28);
    box-shadow: 0 18px 36px rgba(0, 83, 145, 0.2);
}

.home-process-step:hover .home-process-card {
    transform: translateY(-5px);
    border-color: rgba(0, 168, 249, 0.32);
    box-shadow: 0 24px 54px rgba(13, 60, 109, 0.15);
}

    .home-process-step:hover .home-process-card:before {
        opacity: 1;
    }

.home-process-step:hover .home-process-icon {
    transform: scale(1.08);
    color: #10243d;
    background: #f6bf42;
}

.home-process-section .catchuoi1,
.home-process-section .catchuoi2 {
    white-space: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.home-process-section .catchuoi1 {
    -webkit-line-clamp: 1;
}

.home-process-section .catchuoi2 {
    -webkit-line-clamp: 2;
}

@keyframes processFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes processSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media(max-width: 1023px) {
    .home-process-section {
        padding: 54px 0;
    }

    .home-process-heading {
        margin-bottom: 32px;
    }

        .home-process-heading h2 {
            font-size: 30px;
        }

        .home-process-heading p {
            font-size: 15px;
        }

    .home-process-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-process-visual {
        min-height: auto;
        padding: 10px 0 18px;
    }

        .home-process-visual:before {
            inset: 4px;
        }

    .home-process-image {
        width: 250px;
        height: 250px;
        padding: 14px;
    }

        .home-process-image img {
            max-width: 218px;
            max-height: 218px;
        }

    .home-process-badge {
        right: calc(50% - 190px);
        bottom: 10px;
    }

    .home-process-list {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media(max-width: 739px) {
    .home-process-section {
        padding: 38px 0;
    }

    .home-process-container {
        padding: 0 12px;
    }

    .home-process-heading {
        margin-bottom: 24px;
        padding-bottom: 12px;
    }

        .home-process-heading span {
            gap: 8px;
            margin-bottom: 8px;
            font-size: 12px;
        }

            .home-process-heading span:before,
            .home-process-heading span:after {
                width: 24px;
            }

        .home-process-heading h2 {
            font-size: 24px;
        }

        .home-process-heading p {
            margin-top: 24px;
            font-size: 15px;
            line-height: 1.65;
            text-align: justify;
        }

    .home-process-visual {
        display: none;
    }

    .home-process-layout {
        display: block;
    }

    .home-process-list {
        gap: 14px;
    }

        .home-process-list:before {
            top: 30px;
            bottom: 30px;
            left: 28px;
        }

    .home-process-step {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 12px;
    }

    .home-process-number {
        width: 58px;
        min-width: 58px;
        height: 58px;
        border-width: 4px;
    }

        .home-process-number span {
            font-size: 13px;
            line-height: 1.5;
        }

        .home-process-number p {
            margin-top: 3px;
            font-size: 21px;
        }

    .home-process-card {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        min-height: 104px;
        padding: 16px 14px;
    }

    .home-process-icon {
        width: 42px;
        height: 42px;
    }

        .home-process-icon svg {
            width: 23px;
            height: 23px;
        }

    .home-process-card h3 {
        margin-bottom: 5px;
        font-size: 13px;
        line-height: 1.35;
    }

    .home-process-card p {
        font-size: 13px;
        line-height: 1.55;
    }
}

@media(max-width: 400px) {
    .home-process-heading h2 {
        font-size: 21px;
    }

    .home-process-step {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .home-process-list:before {
        display: none;
    }

    .home-process-number {
        width: max-content;
        min-width: 0;
        height: auto;
        flex-direction: row;
        justify-content: flex-start;
        gap: 7px;
        padding: 8px 12px;
        border-radius: 8px;
    }

        .home-process-number p {
            margin: 0;
            font-size: 20px;
        }

    .home-process-card {
        grid-template-columns: 1fr;
    }
}

@media(prefers-reduced-motion: reduce) {
    .home-process-visual:before,
    .home-process-step {
        animation: none;
    }

    .home-process-image img,
    .home-process-number,
    .home-process-card,
    .home-process-card:before,
    .home-process-icon {
        transition: none;
    }
}
