.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;
    }
}

/* ========================================
뱃지
   ======================================== */

.ico-googlePlay {
    &::before {
        content: "";
        background: url("../images/store-google-black.png?01") no-repeat;
        background-size: contain;
        width: 16px;
        height: 16px;
        display: block;
    }
}

.ico-appleStore {
    &::before {
        content: "";
        background: url("../images/store-apple-black.png") no-repeat;
        background-size: contain;
        width: 16px;
        height: 16px;
        display: block;
    }
}

.ico-oneStore {
    &::before {
        content: "";
        background: url("../images/store-one-black.png?01") no-repeat;
        background-size: contain;
        width: 16px;
        height: 16px;
        display: block;
    }
}

.ico-website {
    &::before {
        content: "";
        background: url("../images/ico-home.png") no-repeat;
        background-size: contain;
        width: 16px;
        height: 16px;
        display: block;
    }
}

/*버튼*/
.btn-appleStore {
    &::before {
        content: "";
        background: url("../images/btn-appstore.png") no-repeat;
        background-size: cover;
        display: block;
    }
}

.btn-googlePlay {
    &::before {
        content: "";
        background: url("../images/btn-gooleplay.png") no-repeat;
        background-size: contain;
        display: block;
    }
}


.btn-oneStore {
    &::before {
        content: "";
        background: url("../images/btn-onstore.png") no-repeat;
        background-size: contain;
        display: block;
    }
}

.btn-website {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-700);
    color: var(--gray-400);
    height: 36px;
    font-size: 13px !important;
    font-weight: 400;
    border-radius: 5px;
    padding: 0 10px;
}

/* 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: auto;
    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;
    }
}

.hidden {
    display: none !important;
}

.tab-menu-wrap.dragging,
.tabs-defatult-wrap.dragging {
    cursor: grabbing;
    user-select: none;
}

/* 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 {}
}



.section-3depth-head {
    display: flex;
    align-items: center;
    background-color: #181819;
    min-height: 300px;
    position: relative;
    padding: 0 16px;

    .hdtitle-container {
        width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .ul-hd-branding {
            display: flex;
            align-items: flex-start;
            flex-direction: column;
            gap: 36px;
        }

        .li-title-wrapper {
            display: flex;
            align-items: center;
            gap: 14px;

            .applogo {
                width: clamp(40px, 2.250vw + 32.800px, 76px);
                height: clamp(40px, 2.250vw + 32.800px, 76px);
                border-radius: 12px;
                overflow: hidden;
            }

            .projectName {
                font-family: 'Anton', sans-serif;
                font-size: clamp(35px, 2.500vw + 27.000px, 75px);
                text-transform: uppercase;
                color: var(--gray-300);

                line-height: 1;
                white-space: nowrap;
                letter-spacing: 2px;
            }
        }

        .li-tags-wrap {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            justify-content: center;

            .tag-item {
                display: flex;
                align-items: center;
                gap: 4px;
                background: rgb(var(--rgb-white), 6%);
                color: var(--gray-300);
                padding: 0 16px;
                border-radius: 100px;
                font-size: clamp(13px, 0.188vw + 12.400px, 16px);
                font-weight: 500;
                height: clamp(28px, 0.875vw + 25.200px, 42px);
                text-transform: uppercase;
                font-weight: 300;

                &::before {
                    content: "#";
                }
            }
        }
    }

    .btn-store-download {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 4px;


        a {
            display: flex;
            font-size: 0;

            &::before {
                width: 120px;
                height: 36px;
            }
        }
    }
}



@media (max-width: 768px) {
    .section-3depth-head {
        min-height: auto !important;
        padding: 30px 16px 35px !important;

        .hdtitle-container {
            width: 100%;
            flex-direction: column;
        }

        .ul-hd-branding {
            align-items: center !important;
        }

        .btn-store-download {
            flex-direction: row;
            justify-content: center;
            margin-top: 20px;
        }

        .hdtitle-container {
            .li-title-wrapper {
                justify-content: center
            }
        }
    }
}



/* ========================================
   핸드폰 롤링
   ======================================== */
.phone-showcase-section {
    padding: clamp(50px, 3.125vw + 40.000px, 100px) 16px;
    background: rgb(var(--rgb-white), 3%);
}

.loading-screen-wrapper {
    height: 500px;
    position: relative;

    .center-phone,
    .left-phone,
    .right-phone {
        position: absolute;
        aspect-ratio: 360 / 804;
        background: var(--black);
        border-radius: 10px;

        &::after {
            content: '';
            position: absolute;
            inset: -6px;
            border: 6px solid #000;
            border-radius: 10px;
            pointer-events: none;
        }

        .phone-inner,
        .left-phone-inner,
        .right-phone-inner {
            position: relative;
            overflow: hidden;
            border-radius: inherit;
            width: 100%;
            height: 100%;
        }
    }

    /* 중앙 메인폰 */
    .center-phone {
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);

        /* 롤링 캐러셀 전체 */
        .rolling-carousel {
            position: relative;
            width: 100%;
            max-width: 980px;
            margin: 0 auto;
            user-select: none;
        }

        /* 뷰포트 (슬라이드 영역) */
        .rolling-viewport {
            overflow: hidden;
            border-radius: 6px;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
        }

        /* 트랙 (슬라이드 이동용) */
        .rolling-track {
            display: flex;
            transition: transform 0.48s ease;
            will-change: transform;
        }

        /* 슬라이드 단위 */
        .rolling-item {
            flex: 0 0 100%;
            position: relative;
            height: 500px;
            background: #111;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                /* 비율 유지하며 프레임 채우기 */
                object-position: top;/
            }
        }

        /* 도트 네비게이션 */
        .rolling-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 12px;

            .rolling-dot {
                width: 8px;
                height: 8px;
                border-radius: 999px;
                background: rgba(255, 255, 255, 0.35);
                cursor: pointer;
                transition: width 0.16s ease, background 0.16s ease;

                &.is-active {
                    width: 28px;
                    background: #fff;
                }
            }
        }
    }

    /* 왼쪽 폰 */
    .left-phone {
        top: 9.5%;
        bottom: 9.5%;
        left: calc(50% - 190px);
        transform: translateX(-50%);

        .left-phone-content {
            position: absolute;
            top: -1px;
            left: -1px;
            width: 226px;
            height: 396px;

            img {
                position: absolute;
                left: 0;
                top: 0.18%;
                width: 100%;
                height: 123.62%;
                max-width: none;
                object-fit: cover;
                opacity: 0.3;
            }
        }
    }

    /* 오른쪽 폰 */
    .right-phone {
        top: 9.5%;
        bottom: 9.5%;
        left: calc(50% + 190px);
        transform: translateX(-50%);

        .right-phone-content {
            position: absolute;
            inset: -5px -2px -7px -6px;

            img {
                position: absolute;
                left: 0;
                top: 0.12%;
                width: 100%;
                height: 104.86%;
                max-width: none;
                object-fit: cover;
                opacity: 0.3;

            }
        }
    }
}

@media (max-width: 650px) {
    .loading-screen-wrapper {
        height: 350px;

        .center-phone {
            .rolling-item {
                height: 350px;
            }

            .rolling-dots {
                gap: 6px;

                .rolling-dot {
                    width: 5px;
                    height: 5px;

                    &.is-active {
                        width: 16px;
                    }
                }
            }
        }

        .left-phone {
            left: calc(50% - 120px);
        }

        .right-phone {
            left: calc(50% + 120px);
        }
    }
}



/* ========================================
section-그리드
   ======================================== */

.screenshots-section {
    max-width: 1200px;
    min-height: calc(100vh - 300px);
    margin: 0 auto;
    background-color: #222222;
    padding: clamp(50px, 3.125vw + 40.000px, 100px) 16px;

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

        .screenshot-item {
            border-radius: clamp(1px, 0.438vw + -0.400px, 8px);
            overflow: hidden;
            background-color: #181819;
            border: 1px solid rgb(var(--rgb-white), 10%);
            transition: transform 0.3s ease, box-shadow 0.3s ease;

            &:hover {
                transform: translateY(-8px);
                box-shadow: 0px 0px 16px rgb(var(--rgb-white), 19%);
            }

            .screenshot-image {
                width: 100%;
                height: auto;
                /* 원본 비율 유지 */
                display: block;
            }

            .screenshot-label {
                padding: 12px 0 4px;
                text-align: center;
                font-size: 15px;
                color: var(--white);
                /* background: rgba(0, 0, 0, 0.6); */
            }
        }
    }

    /* 반응형: 미디어쿼리로 열 수만 변경 */
    @media (max-width: 768px) {
        .screenshots-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }
    }
}



/* ========================================
   Animations & Utilities
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

.loading {
    opacity: 0.5;
    pointer-events: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/* ========================================
프로젝트
   ======================================== */

.visualWrap {
    background: #222;

    .subHeading {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding: 0 16px 0;
        height: 350px;


        .subTitle {
            display: flex;
            align-items: center;
            font-size: 50px;
            color: var(--white);
            height: 100%;
        }

        .subImg {
            width: 520px;
        }
    }
}

@media all and (max-width: 768px) {
    .visualWrap {
        .subHeading {
            height: 350px;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            height: 200px;
            gap: 16px;

            .subTitle {
                font-size: 30px;
                height: auto !important;
            }

            .subImg {
                width: 230px;
            }
        }
    }
}





/*****움직이는 앱아이콘*****************************************/
.project-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: clamp(185px, 19.688vw + 122.000px, 500px);

    .mov-appIcon {
        position: absolute;
        border-radius: 20px;
        opacity: 0;
        transform-origin: center center;
        will-change: transform, opacity;
        transition: opacity .25s ease, transform .25s ease;
        pointer-events: auto;

        &>img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: clamp(8px, 0.750vw + 5.600px, 20px);
            pointer-events: none;
            user-select: none;
        }
    }

    .mov-appIcon-0 {
        left: 49%;
        top: 25%;
        width: 14.5%;
        aspect-ratio: 1;
        animation: appIconAnimation 4s ease-in-out 0s infinite;
    }

    .mov-appIcon-1 {
        left: 38.4%;
        top: 55.3%;
        width: 12.2%;
        aspect-ratio: 1;
        animation: appIconAnimation 4s ease-in-out 0.5s infinite;
    }

    .mov-appIcon-2 {
        left: 67.3%;
        top: 58%;
        width: 6.5%;
        aspect-ratio: 1;
        animation: appIconAnimation 4s ease-in-out 1s infinite;
    }

    .mov-appIcon-3 {
        left: 62.5%;
        top: 16.9%;
        width: 10%;
        aspect-ratio: 1;
        animation: appIconAnimation 4s ease-in-out 1.5s infinite;
    }

    .mov-appIcon-4 {
        left: 36.7%;
        top: 14.3%;
        width: 7.8%;
        aspect-ratio: 1;
        animation: appIconAnimation 4s ease-in-out 2s infinite;
    }

    .mov-appIcon-5 {
        left: 82%;
        top: 27.7%;
        width: 5.8%;
        aspect-ratio: 1;
        animation: appIconAnimation 4s ease-in-out 2.5s infinite;
    }

    .mov-appIcon-6 {
        left: 12.8%;
        top: 42.3%;
        width: 7.8%;
        aspect-ratio: 1;
        animation: appIconAnimation 4s ease-in-out 3s infinite;
    }

    .mov-appIcon-7 {
        left: 79.8%;
        top: 50%;
        width: 10.2%;
        aspect-ratio: 1;
        animation: appIconAnimation 4s ease-in-out 3.5s infinite;
    }

    .mov-appIcon-8 {
        left: 5.5%;
        top: 21.4%;
        width: 7.7%;
        aspect-ratio: 1;
        animation: appIconAnimation 4s ease-in-out 4s infinite;
    }
}



/* @media all and (max-width: 768px) {
    .project-wrap {

        .mov-appIcon {
            &>img {
                border-radius: 10px;
            }
        }
    }
} */

/* appIcon animations */
@keyframes appIconAnimation {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    15% {
        transform: scale(1.2);
        opacity: 1;
    }

    25% {
        transform: scale(1);
        opacity: 1;
    }

    35% {
        transform: scale(1.1);
        opacity: 1;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    80% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}



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

.tab-menu-wrap {
    display: flex;
    gap: clamp(16px, 0.875vw + 13.200px, 30px);
    margin-bottom: clamp(16px, 0.563vw + 14.200px, 25px);
    flex-wrap: wrap;

    .tab-button {
        border-radius: 100px;
        font-size: clamp(14px, 0.125vw + 13.600px, 16px);
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        height: clamp(38px, 0.250vw + 37.200px, 42px);

        &.active {
            padding: 0 20px;
            background: #fe6b2d;
            color: var(--white);
            border-color: #fe6b2d;
        }

        &:hover:not(.active) {
            background: var(--gray-150);
        }

    }
}



/* 콘텐츠 그리드 */
.content-grid-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 20px;

    .project-item {
        display: flex;
        flex-direction: column;
        gap: 10px;
        height: clamp(180px, 7.500vw + 156.000px, 300px);
        transition: transform 0.3s ease;

        &:hover {
            transform: translateY(-5px);
        }

        &.hidden {
            display: none;
        }

        .project-image {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            background: var(--black);
            border-radius: 4px;
            overflow: hidden;
            position: relative;

            img {
                width: 100%;
                height: 100%;
                display: block;
                object-fit: cover;
                object-position: 50% 50%;
            }

        }

        .app-ico {
            &>img {
                width: clamp(50px, 5.000vw + 34.000px, 130px);
                height: clamp(50px, 5.000vw + 34.000px, 130px);
                border-radius: clamp(10px, 0.500vw + 8.400px, 18px);
            }
        }

        .project-title {
            font-size: clamp(14px, 0.125vw + 13.600px, 16px);
            letter-spacing: -0.7px;
            text-transform: uppercase;
        }
    }
}

@media (max-width: 768px) {
    .content-grid-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 8px;
    }
}

/*****222**********/
.content-grid-list-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: clamp(4px, 0.750vw + 1.600px, 16px);

    .project-item {
        display: flex;
        align-items: center;
        gap: 10px;
        transition: transform 0.3s ease;
        width: 100%;
        padding: clamp(10px, 0.625vw + 8.000px, 20px);
        border-radius: clamp(10px, 0.500vw + 8.400px, 18px);
        background: var(--gray-100);

        &:hover {
            transform: translateY(-5px);
        }

        .app-info-card {
            display: flex;
            gap: clamp(10px, 0.500vw + 8.400px, 18px);
            width: 100%;
            height: 100%;

            .app-thumb {
                width: clamp(65px, 4.375vw + 51.000px, 135px);
                height: clamp(65px, 4.375vw + 51.000px, 135px);
                border-radius: clamp(6px, 0.625vw + 4.000px, 16px);
                overflow: hidden;
                flex: 0 0 auto;
                display: grid;
                place-items: center;

                &>img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    display: block;
                }
            }

            .app-meta {
                width: 100%;

                .app-title {
                    margin-bottom: 4px;
                    font-size: clamp(17px, 0.313vw + 16.000px, 22px);
                    line-height: 1.2;
                    font-weight: 800;
                    letter-spacing: -0.2px;
                }

                .app-desc {
                    margin-bottom: 12px;
                    font-size: clamp(13px, 0.063vw + 12.800px, 14px);
                    color: var(--gray-700);
                    line-height: 1.2;
                }

                .btn-box-wrap {
                    display: grid;
                    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
                    gap: 2px;

                    .btn-down-store {
                        display: flex;
                        align-items: center;
                        gap: 4px;
                        height: 26px;
                        padding: 0 8px;
                        border-radius: 4px;
                        background: var(--gray-200);
                        font-size: 11px;
                        font-weight: 400;
                        overflow: hidden;
                        text-overflow: ellipsis;

                        &::before {
                            width: 16px;
                            height: 16px;
                            filter: var(--filter-gray-500);

                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .content-grid-list-new {
        grid-template-columns: repeat(1, 1fr);

        .btn-box-wrap {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
            gap: 2px;

            .btn-down-store {
                gap: 2px;
                padding: 0 4px;
                font-size: 11px;

                &::before {
                    width: 14px;
                    height: 14px;

                }
            }
        }
    }
}