.unified_section {
    padding-top: clamp(60px, 7vh, 80px);
    width: 100%;
    height: 100vh;
    min-height: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gr, linear-gradient(180deg, #FFF -27.58%, #C2CDE9 34.47%, #8CA1D5 75.34%, #758DCC 99.12%));
    overflow: hidden;
}

.unified_section__title {
    margin: clamp(50px, 3.3vw, 76px) 0 clamp(23px, 1.5vw, 35px);
    text-align: center;
    color: #000A4C;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.unified_section__subTitle {
    text-align: center;
    color: #212121;
    font-style: normal;
    font-weight: 400;
    line-height: 134%;
}

.unified_section__icons {
    width: 100%;
    flex: 1;
    position: relative;
}

.semicircle_wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(clamp(762px, 50vw, 1144px) + 100px), 88vw);
    height: min(calc(clamp(762px, 50vw, 1144px) / 2 + 50px), 44vw);
    overflow: hidden;
}

.circles_wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.big_circle {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: min(clamp(762px, 50vw, 1144px), 88vw);
    height: min(clamp(762px, 50vw, 1144px), 88vw);
    border-radius: 50%;
    background: linear-gradient(180deg, #FFF -22.17%, #C2CDE9 -11.57%, #8CA1D5 34.76%, #758DCC 66.28%);
    filter: blur(5px);
    z-index: 1;
}

.medium_circle {
    position: absolute;
    top: calc(50px + (min(clamp(762px, 50vw, 1144px), 88vw) - min(clamp(582px, 38.2vw, 874px), 67.2vw)) / 2);
    left: 50%;
    transform: translateX(-50%);
    width: min(clamp(582px, 38.2vw, 874px), 67.2vw);
    height: min(clamp(582px, 38.2vw, 874px), 67.2vw);
    border-radius: 50%;
    background: linear-gradient(180deg, #FFF -60.71%, #C2CDE9 -8.96%, #8CA1D5 64.8%, #758DCC 93.81%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.small_circle {
    position: absolute;
    top: calc(50px + (min(clamp(762px, 50vw, 1144px), 88vw) - min(clamp(448px, 29.4vw, 672px), 51.7vw)) / 2);
    left: 50%;
    transform: translateX(-50%);
    width: min(clamp(448px, 29.4vw, 672px), 51.7vw);
    height: min(clamp(448px, 29.4vw, 672px), 51.7vw);
    border-radius: 50%;
    background: var(--gr, linear-gradient(180deg, #FFF -27.58%, #C2CDE9 34.47%, #8CA1D5 75.34%, #758DCC 99.12%));
    z-index: 3;
}

.allbiz_logo {
    position: absolute;
    bottom: 3.4vw;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(174px, 13vw, 323px);
    z-index: 4;
}

.icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 5;
    width: clamp(147px, 11vw, 273px);
    opacity: 0;
    pointer-events: none;
}

/* 모바일 환경 최적화 */
@media (max-width: 1024px) {
    .unified_section {
        height: auto;
        padding: clamp(60px, 7vh, 80px) 6vw 0;
    }
}

@media (max-width: 767px) {
    .unified_section__icons {
        margin-top: 50px;
        margin-left: 12vw;
        height: calc(min(827px, 130vw) + 100px);
        flex: unset;
    }

    .semicircle_wrap {
        bottom: unset;
        left: unset;
        transform: none;

        position: absolute;
        right: 0;
        top: 0;

        width: calc(min(827px, 130vw) * 0.75);
        height: min(827px, 130vw);
        overflow: hidden;
    }

    .circles_wrapper {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .big_circle {
        position: absolute;
        top: 0;
        right: 20%;
        left: unset;
        transform: translate(50%, 0%);

        width: min(827px, 130vw);
        height: min(827px, 130vw);
        border-radius: 50%;
        background: linear-gradient(180deg, #FFF -22.17%, #C2CDE9 -11.57%, #8CA1D5 34.76%, #758DCC 66.28%);
        filter: blur(5px);
        z-index: 1;
    }

    .medium_circle {
        position: absolute;
        top: calc(min(827px, 130vw) * 0.118);
        right: 20%;
        left: unset;
        transform: translate(50%, 0%);

        width: calc(min(827px, 130vw) * 0.764);
        height: calc(min(827px, 130vw) * 0.764);
        border-radius: 50%;
        background: linear-gradient(180deg, #FFF -60.71%, #C2CDE9 -8.96%, #8CA1D5 64.8%, #758DCC 93.81%);
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
        z-index: 2;
    }

    .small_circle {
        position: absolute;
        top: calc(min(827px, 130vw) * 0.2065);
        right: 20%;
        left: unset;
        transform: translate(50%, 0%);

        width: calc(min(827px, 130vw) * 0.587);
        height: calc(min(827px, 130vw) * 0.587);
        border-radius: 50%;
        background: var(--gr, linear-gradient(180deg, #FFF -27.58%, #C2CDE9 34.47%, #8CA1D5 75.34%, #758DCC 99.12%));
        z-index: 3;
    }

    .allbiz_logo {
        position: absolute;
        right: calc(min(827px, 130vw) * 0.05);
        top: calc(min(827px, 130vw) / 2);
        transform: translate(3vw, -50%);
        bottom: unset;
        left: unset;
        width: calc(min(827px, 130vw) * 0.3);
        z-index: 4;
    }

    .icon {
        position: absolute;
        right: 20%;
        top: calc(min(827px, 130vw) / 2);
        left: unset;
        bottom: unset;
        transform: translate(50%, -50%);
        width: calc(min(827px, 130vw) * 0.22);
        opacity: 0;
        pointer-events: none;
    }
}