.pc-show {
    display: block;
}

.mo-show {
    display: none;
}

@media all and (max-width: 768px) {
    .pc-show {
        display: none;
    }

    .mo-show {
        display: block;
    }
}



.h3-title {
    font-size: clamp(18px, 0.250vw + 17.200px, 22px);
    margin-bottom: clamp(10px, 0.625vw + 8.000px, 20px);
    display: flex;
    align-items: center;
    gap: 1rem;

    &::after {
        content: '';
        height: 1px;
        width: 3rem;
        background: white;
    }
}



.container {
    max-width: 1260px;
    min-width: 320px;
    margin: 0 auto;
    padding-right: 16px !important;
    padding-left: 16px !important;

    &.w-100 {
        max-width: 100% !important;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgb(var(--rgb-white), 15%);
    /* background: rgba(0, 0, 0, 1); */
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgb(var(--rgb-white), 15%);
}

.header-content {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    max-width: 1200px;
    min-width: 320px;
    margin: 0 auto;

    .logo-area {
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid rgb(var(--rgb-white), 15%);
        border-right: 1px solid rgb(var(--rgb-white), 15%);
        padding: 0 20px;
        height: 100%;
    }

    .logo {
        background: url("../images/logo.svg") no-repeat center;
        width: 180px;
        height: 42px;
        background-size: cover;
        font-size: 0;
        display: block;
    }
}

@media all and (max-width: 768px) {
    .header-content {
        height: 50px;
        padding: 0 16px;

        .logo-area {
            border-left: 0;
            border-right: 0;
            padding: 0 0;
        }

        .logo {
            width: 130px;
            height: 30px;
            background-size: cover;
            font-size: 0;
            display: block;
        }
    }
}


/***/
.nav-menu {
    display: flex;
    align-items: center;
    height: 100%;

    .nav-item {
        padding: 0 20px;
        transition: background-color 0.3s;
        cursor: pointer;
        font-size: 17px;
        height: 100%;
        white-space: nowrap;
        font-weight: 600;
        color: var(--gray-900);
    }

    .nav-item:hover {
        color: var(--primera-500);
        border-bottom: 3px solid var(--primera-500);
    }
}

@media all and (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: #111;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 99;
        padding-top: 60px;

        .nav-item {
            padding: 1rem;
            border: none;
            width: 100%;
            height: auto;
            color: var(--gray-300);
        }

        .nav-item:hover {
            color: var(--primera-500);
            border-bottom: 0;
        }

        &.show {
            display: flex;
        }
    }
}


.mobile-menu-btn {
    display: none;

    @media (max-width: 768px) {
        display: flex;
        background: none;
        border: none;
        color: var(--black);
        cursor: pointer;
        flex-direction: column;
        gap: 5px;

        span {
            width: 22px;
            height: 2px;
            background: var(--black);
        }
    }
}

.menu-close-btn {
    display: none;

    @media all and (max-width: 768px) {
        display: block;
        position: absolute;
        top: 18px;
        right: 20px;
        font-size: 24px;
        background: none;
        border: none;
        color: var(--white);
        cursor: pointer;
        z-index: 100;
    }
}




.mobile-menu-box {
    display: none;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.5);

    &.active {
        display: block;
    }

    .nav-item {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-right: none;
    }
}



/* Main Content */
main.main {
    min-height: calc(100vh - 120px);
    height: 100%;
    padding-top: 75px;
    overflow: hidden;
    /* border: 1px solid red; */

    @media all and (max-width: 768px) {
        padding-top: 50px;
    }
}

/* Hero Section */
.hero {
    height: calc(100vh - 195px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    @media all and (max-width: 768px) {
        height: calc(100vh - 170px);
    }
}

.video-background {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .video {
        position: relative;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }
}






.hero-content {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    color: var(--white);
    width: 80%;

    &>h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.2;
    }

    &>p {
        font-size: 1.8rem;
        max-width: 600px;
        font-weight: 400 !important;
        text-align: center;
        margin: 0 auto;
        line-height: 1.6;
        letter-spacing: 0px;
    }
}



/* Section Styles */
.section {
    padding: 5rem 0;
}

@media all and (max-width: 768px) {
    .section {
        padding-top: 35px;
        padding-bottom: 45px;

        &.sec-plr-0 {
            padding-right: 0;
            padding-left: 0;
        }

        &.plr-16 {
            padding-right: 16px !important;
            padding-left: 16px !important;
        }
    }
}


.section-title {
    text-align: center;
    font-size: clamp(24px, 1.000vw + 20.800px, 40px);
    letter-spacing: -1px;
    margin-bottom: clamp(18px, 2.000vw + 11.600px, 50px);
    font-weight: 600;
    line-height: 100% !important;
}

.sub-visaul-video {
    position: relative;
    height: 320px;
    overflow: hidden;

    .video {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }
}

@media all and (max-width: 768px) {

    .sub-visaul-video {
        height: 260px;
    }
}



/* Tab Styles */
.tabs-defatult-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 2.4rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    overflow-x: auto;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;

    &::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        padding: 0 20px;
        height: 50px;
        /* border-bottom: 1px solid var(--black); */
        cursor: pointer;
        transition: all 0.3s;
        font-size: clamp(15px, 0.188vw + 14.400px, 18px);
        letter-spacing: -1px;
        color: var(--gray-700);
        white-space: nowrap;
        flex-shrink: 0;
        font-weight: 500;
        /* background: var(--white); */
    }

    .tab-btn.active,
    .tab-btn:hover {
        border-bottom: 3px solid #000;
        font-weight: 600;
        color: var(--black);
    }

    &.dragging {
        cursor: grabbing;
        user-select: none;
    }
}

@media (max-width: 768px) {
    .tabs-defatult-wrap {
        justify-content: flex-start;
        margin-bottom: 22px;
        padding: 0 16px;

        .tab-btn {
            height: 38px;
            padding: 0 5px;
        }

        .tab-btn.active,
        .tab-btn:hover {
            border-bottom: 2px solid #000;

        }
    }
}

/***/
.tab-content {
    display: none;

    &.active {
        display: block;
    }
}

.bg-box {
    padding: clamp(20px, 3.125vw + 10.000px, 70px) 0;
    background: var(--gray-150) !important;
}


/* Company Section */
.company-section {

    .company-content {
        display: grid;
        grid-template-columns: 1.2fr 2fr;
        gap: clamp(26px, 1.500vw + 21.200px, 50px);
        align-items: center;
    }

    .company-image {
        width: 100%;
        height: 500px;
        background-position: center 20%;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .global-content-wrap {
        padding: 80px 16px 80px;
        background: var(--white);

        .global-text {
            text-align: center;
            font-size: 22px;
            font-weight: 500;
            padding-bottom: 75px;
        }
    }

    .company-text {
        display: flex;
        flex-direction: column;
        gap: 14px;
        height: 100%;


        &>h3 {
            font-size: clamp(20px, 0.938vw + 17.000px, 35px);
            margin-bottom: clamp(1px, 1.188vw + -2.800px, 20px);
        }

        &>h4 {
            font-size: clamp(16px, 0.250vw + 15.200px, 20px);
            font-weight: 500;
        }

        .subj {
            font-weight: 700;
            font-size: 15px;
        }

        &>p {
            color: var(--gray-700);
            font-size: 16px;

        }

        .company-info {
            color: var(--gray-900);
            font-size: 16px;
            font-weight: 600;
            display: block;
            padding-bottom: 4px;
        }

        .company-desc {
            color: var(--gray-700);
            font-size: 14px;
            font-weight: 400;
        }

    }

    .company-global {
        display: flex;
        justify-content: center;
        gap: clamp(6px, 1.500vw + 1.200px, 30px);
        align-self: stretch;

        .global-logoBox {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 10px;
            border: 1px solid var(--gray-200);
            width: fit-content;
            padding: 20px;
            width: 300px;
            background: var(--white);

            .global-logo {
                display: flex;
                width: auto;
                height: 35px;
            }

            .global-name {
                font-size: 16px;
            }
        }
    }
}



@media all and (max-width: 768px) {
    .company-section {
        .company-content {
            display: flex;
            flex-direction: column;
        }

        .global-content-wrap {
            padding: 16px;

            .global-text {
                text-align: center;
                font-size: 16px;
                padding: 10px 0 20px;
            }
        }

        .company-image {
            height: 230px;
        }

        .company-global {
            flex-direction: column;
            gap: clamp(6px, 1.500vw + 1.200px, 30px);
            align-self: stretch;

            .global-logoBox {

                width: 100%;
                flex-direction: row;
                justify-content: space-between;

                .global-logo {
                    height: 26px;
                }

                .global-name {
                    font-size: 14px;
                }
            }
        }
    }
}


.content-infobox {
    text-align: center;
    padding: 36px 0;
    border-top: 1px solid rgb(var(--rgb-white), 15%);
    border-bottom: 1px solid rgb(var(--rgb-white), 15%);
    margin-bottom: 45px;

    .title {
        font-size: 24px;
        padding-bottom: 8px;
    }

    .desc {
        font-size: 16px;
    }
}

@media all and (max-width: 768px) {
    .content-infobox {
        padding: 16px 0;
        margin-bottom: 16px;

        .title {
            font-size: 18px;
            font-weight: 500;
            padding-bottom: 6px;
        }

        .desc {
            font-size: 14px;
            color: rgb(var(--rgb-white), 65%);
        }
    }
}

/* Works Section */
.works-section {}








.works-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;

    .work-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;

        .work-image {
            display: flex;
            justify-content: center;
            align-items: center;
            width: auto;
            overflow: hidden;
        }

        .portfolio-title {
            width: 100%;
            text-align: center;
            font-size: 16px;
            padding: 0 10px;
        }
    }
}

@media all and (max-width: 768px) {
    .works-card-grid {
        grid-template-columns: repeat(3, 1fr) !important;

        .work-card {
            gap: 8px;

            .work-image {}

            .portfolio-title {
                font-size: 14px;
            }
        }

        .store-wrap {
            gap: 4px;
            padding-top: 10px;

            &>button {
                &::before {
                    width: 18px;
                    height: 18px;
                }
            }
        }
    }
}


@media all and (max-width: 430px) {
    .works-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}


/* Solution Section */
.solution-section {}

.left-title {
    .title-1 {
        font-size: clamp(24px, 0.375vw + 22.800px, 30px);
        display: block;
        padding-bottom: 10px;
        font-weight: 800;
    }

    .desc {
        font-size: 15px;
    }
}

.fill-bg {
    background: var(--gray-100);
}

.network-content-wrap {
    background: var(--gray-100);
    padding: clamp(16px, 2.125vw + 9.200px, 50px);
    margin: 50px 0 0;

    .row2-box {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        min-width: 320px;
        max-width: 1200px;
        margin: 0 auto;
        gap: 30px;

    }
}




/* Tech Section */
.tech-section {
    background: white;
}

.tech-service-group {
    padding: 60px 0 0;
}

.tech-grid-wrap {
    .fot-content-img {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 150px;
        overflow: hidden;

        &>img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
    }
}

@media all and (max-width: 768px) {
    .tech-grid-wrap {
        .fot-content-img {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            margin-top: 30px;

            &>img {
                flex: 1;
                width: 100%;
                height: 120px;
            }
        }
    }
}



/****/
.boxCard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-self: stretch;

    &.row-2 {
        grid-template-columns: repeat(2, 1fr);
        width: 600px;
    }

    .card-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--gray-100);
        padding: clamp(10px, 0.625vw + 8.000px, 20px);
        font-size: 14px;
        text-align: center;
        min-height: clamp(200px, 6.250vw + 180.000px, 300px);
        border: 1px solid var(--gray-200);

        &.white {
            background: var(--white) !important;
        }

        .descBox {
            display: flex;
            flex-direction: column;
            gap: 4px;

            .title-1 {
                font-size: clamp(17px, 0.188vw + 16.400px, 20px);
                font-weight: 700;
                line-height: 1.2;
            }

            .title-2 {
                font-size: clamp(15px, 0.125vw + 14.600px, 17px);
            }

            .desc {
                padding-top: 4px;
                color: var(--gray-700);
            }
        }

        &>img {
            width: 50px;
            height: 50px;
            /* filter: var(--filter-gray-800); */
        }
    }

    .card-highlight {
        background: var(--black);
        color: var(--white);
        flex-direction: column;
        justify-content: center;

        .desc {
            color: var(--gray-500) !important;
        }

        &>img {
            width: 50px;
            height: 50px;
            filter: var(--filter-white);
        }
    }
}


@media (max-width: 768px) {
    .row-2 {
        width: 100% !important;
    }

    .boxCard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}





/* Recruit Section */
.recruit-section {}

.recruit-grid-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    .recruit-card {
        text-align: center;
        flex: 1 0 350px;

        .rec-infoBox {
            display: flex;
            flex-direction: column;
            padding: clamp(14px, 0.688vw + 11.800px, 25px);
            gap: clamp(1px, 0.313vw + 0.000px, 6px);
            background: var(--gray-150);

            .title-1 {
                font-size: clamp(15px, 0.313vw + 14.000px, 20px);
                font-weight: 700;
                letter-spacing: -1.5px;
            }

            .title-2 {

                font-size: clamp(13px, 0.125vw + 12.600px, 15px);
                font-weight: 500;
            }

            .desc {
                &>li {
                    color: var(--gray-700);
                    font-size: clamp(12px, 0.063vw + 11.800px, 13px);
                }
            }
        }
    }

    .recruit-image {
        height: clamp(300px, 9.375vw + 270.000px, 450px);
        background-position: center 0;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
    }
}


@media all and (max-width: 768px) {
    .recruit-grid-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;

        .recruit-card {
            flex: none;
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-bottom: 0;

            &:nth-child(3) {
                .recruit-image {
                    background-position: center center !important;
                }
            }
        }

        .recruit-image {
            height: 250px;
        }

        .rec-infoBox {
            gap: 6px;
            flex: 1;

            .title-1 {
                font-size: 16px;
                font-weight: 700;
            }

            .title-2 {
                font-size: 14px;
                font-weight: 500;
            }

            .desc>li {
                font-size: 13px;
                color: #555;
                line-height: 1.5;
            }
        }
    }
}






/* Contact Section */
.contact-section {
    background: white;
}





.contact-info {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 0.250vw + 15.200px, 20px);
    background: var(--gray-100);
    padding: clamp(16px, 3.375vw + 5.200px, 70px);
    height: clamp(370px, 8.125vw + 344.000px, 500px);


    .h3 {
        font-size: clamp(20px, 0.625vw + 18.000px, 30px);
    }

    .desc {
        font-size: clamp(13px, 0.188vw + 12.400px, 16px);
        color: var(--gray-700);
    }


    .submit-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        height: clamp(48px, 0.500vw + 46.400px, 56px);
        padding: 0 30px;
        background: var(--primera-500);
        color: white;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
        z-index: 10;

    }

    .ico-paper-airplane {
        position: absolute;
        bottom: 0;
        right: clamp(1px, 1.812vw + -4.800px, 30px);
        width: clamp(140px, 10.000vw + 108.000px, 300px);
        height: clamp(140px, 10.000vw + 108.000px, 300px);
    }
}





#footer {
    background: var(--black);
    padding: 20px 0;
    width: 100%;

    .footer-inner {
        color: var(--gray-600);
        text-align: center;

        .row {
            font-size: clamp(12px, 0.125vw + 11.600px, 14px);
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 4px;

            &>span {
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1;

                &::after {
                    content: "ㅣ";
                    margin: 4px;
                    display: flex;
                    color: rgb(var(--rgb-white), 17%);
                }

                &:last-child {
                    &::after {
                        all: unset;
                    }
                }
            }
        }
    }
}





/* Responsive */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }



}

@media (min-width: 1025px) {
    .nav-desktop {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }




    .tech-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }
}



/*******************/

.store-google {
    font-size: 0;

    &::before {
        content: "";
        background: url("../images/store-google.svg") no-repeat;
        background-size: contain;
        width: 18px;
        height: 18px;
        display: block;
    }
}

.store-apple {
    font-size: 0;

    &::before {
        content: "";
        background: url("../images/store-apple.svg") no-repeat;
        background-size: contain;
        width: 22px;
        height: 22px;
        display: block;
        filter: var(--filter-white);
    }
}

.store-one {
    font-size: 0;

    &::before {
        content: "";
        background: url("../images/store-one.svg") no-repeat;
        background-size: contain;
        width: 22px;
        height: 22px;
        display: block;
    }
}


/****/
.soft-brand-guide-container {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 0.875vw + 13.200px, 30px);

}

.brand-header-bordered-content-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(254, 107, 45, 0.2);
    padding: 40px;
    text-align: center;

    .logo-display-combination {
        padding-bottom: 16px;

        &>img {
            height: 60px;
        }
    }

    .description-text-content {
        font-size: 18px;
        color: #333;

        font-weight: 500;
    }

    .description__detailed-text {
        font-size: 14px;
        color: #666;

    }
}

.concept-content-block-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 30px 40px;
    background: var(--white);
    overflow: hidden;

    .concept-hd {
        width: 100%;
        background: var(--gray-100);
        padding: 30px;
        margin-bottom: 40px;

        &>h2 {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin-bottom: 14px;
            letter-spacing: 1px;
        }

        &>p {
            font-size: 14px;
            color: var(--gray-700);
            line-height: 1.5;

        }
    }


    .variations-display-wrap {
        display: flex;

    }

    .logo-variations-display {


        &>img {
            display: flex;
            width: 100%;
            margin: 0 auto;
        }
    }
}

@media all and (max-width: 768px) {
    .concept-content-block-wrapper {
        padding: 16px;

        .concept-hd {
            padding: 10px;
            margin-bottom: 20px;
        }

        .variations-display-wrap {
            flex-direction: column;
            gap: 10px;
        }

        .logo-variations-display {
            margin-bottom: 10px;

            &>img {
                display: flex;
                width: 100%;
                margin: 0 auto;
            }
        }
    }
}


.color-palette__horizontal-display-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 40%;

    .color-swatch__yellow-primary-variant,
    .color-swatch__orange-secondary-variant,
    .color-swatch__green-accent-variant {
        height: 36px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
    }

    .color-swatch__yellow-primary-variant {
        background: #F1C40F;
        color: #333;
    }

    .color-swatch__orange-secondary-variant {
        background: linear-gradient(90deg, #EE7C00 0%, #EE7E00 31%, #EF8600 48%, #F19300 61%, #F4A700 72%, #F7C000 83%, #FCDE00 92%, #FFF100 97%);
        color: #fff;
    }

    .color-swatch__green-accent-variant {
        background: linear-gradient(90deg, #8EC54D 32%, #3AB483 88%);
        color: #fff;
    }
}

@media all and (max-width: 768px) {
    .color-palette__horizontal-display-grid {
        width: 100%;
        flex-direction: row;

        gap: 8px;
    }

}


.symbol-explanation__three-column-layout {
    display: flex;
    flex-direction: column;
    /* grid-template-columns: 1fr 1fr 1fr; */

    gap: 18px;
    margin-top: clamp(1px, 1.812vw + -4.800px, 30px);

    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .symbol-section__individual-content-block {
        border-left: 1px solid #FF6B35;
        padding-left: 10px;

        .symbol-heading__category-title-styling {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 8px;
        }

        .symbol-content__descriptive-paragraph-text {
            font-size: 13px;
            color: #555;
            line-height: 1.5;
        }
    }
}



/****/
.content-intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(200px, 18.750vw + 140.000px, 500px);
    position: relative;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-color: #000;

    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 70%;
        height: 100%;
        background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.50) 50%, rgba(0, 0, 0, 0.00) 100%);
        z-index: 1;
    }

    &::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 70%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 50%, #000 100%);
        z-index: 1;
    }

    .content-text-wrap {
        max-width: 800px;
        margin: 0 auto;
        z-index: 10;
        position: relative;
        padding: 0 16px;

        .intro-title {
            font-size: clamp(18px, 0.875vw + 15.200px, 32px);
            font-weight: 700;
            margin-bottom: 10px;
            text-align: center;
            color: var(--white);
        }

        .intro-desc {
            font-size: clamp(13px, 0.188vw + 12.400px, 16px);
            opacity: 0.9;
            text-align: center;
            font-weight: 300 !important;
            color: var(--gray-200);
        }
    }
}

.idea-service-solution {
    .idea-service__works {
        padding-top: 60px;
        text-align: center;

        .idea-service__works-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
        }
    }
}


/***/
.idea-service__work-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(10px, 0.625vw + 8.000px, 20px);

    .work-item {
        width: auto;
        overflow: hidden;
        background: var(--white);
        border: 1px solid var(--gray-200);

        img {
            width: 100%;
            height: clamp(150px, 3.125vw + 140.000px, 200px);
            display: block;
            width: 100%;
            object-fit: cover;
        }
    }

    .desc-box {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: clamp(8px, 0.375vw + 6.800px, 14px) 8px;
        color: var(--black);

        .h1-text {
            font-size: clamp(16px, 0.125vw + 15.600px, 17px);
            font-weight: 600;
        }

        .h2-text {
            font-weight: 500;
            font-size: clamp(13px, 0.125vw + 12.600px, 15px);
            line-height: 1.2;

        }

        .desc {
            font-size: 13px;
            color: var(--gray-700);
        }
    }
}

@media all and (max-width: 768px) {

    .idea-service__work-list {
        grid-template-columns: repeat(2, 1fr) !important;

    }
}



/****/
.token-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;

    .token-info-item {
        display: flex;
        flex-direction: column;
        background: var(--white);
        border: 1px solid var(--gray-150);
        padding: clamp(10px, 0.625vw + 8.000px, 20px);
        text-align: center;
        font-size: 14px;
        line-height: 1.5;
        display: flex;
        align-items: center;
        justify-content: center;

        .title {
            font-weight: 800;
            font-size: clamp(18px, 0.438vw + 16.600px, 25px);
        }
    }
}

@media (max-width: 768px) {
    .token-info-list {
        grid-template-columns: repeat(2, 1fr);
    }
}



/***/

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;

    @media (max-width: 768px) {
        grid-template-columns: 1fr;
    }

    .feature-item {
        background: var(--gray-150);
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        .feature-title {
            font-size: 20px;
            font-weight: bold;
            color: #000;
            margin-bottom: 12px;
        }

        .feature-desc {
            font-size: 14px;
            color: var(--gray-700);
            margin-bottom: auto;
        }

        .feature-icon {
            margin-top: clamp(10px, 0.625vw + 8.000px, 20px);
            text-align: right;

            img {
                max-width: clamp(60px, 3.750vw + 48.000px, 120px);
                height: auto;
            }
        }
    }
}



@media (max-width: 768px) {
    .feature-item {}
}