:root {
    --color-bk: #25262B;
    --color-gy: #90949B;
    --color-wh: #ffffff;

    --color-bg: #FFF8F0;
    --color-line: #FFE8CC;

    --color-hl: #F79624;
    
    --title-1: 64px;
    --title-2: 48px;

    --font-xl: 30px;
    --font-l: 24px;
    --font-m: 20px;
    --font-s: 18px;
    --font-xs: 16px;

    --header-height: 100px;

    --size-xl: 120px;
    --size-l: 80px;
    --size-m: 60px;
    --size-s: 40px;
    --size-xs: 20px;

    --vh: 100%; /* JS로 갱신될 값 */
}

.montserrat {
    font-family: "Montserrat", sans-serif;
}

/* ---------------- COMMON ---------------- */

::selection {
    background-color: var(--color-bg);
    color: var(--color-hl);
}

* {
    letter-spacing: -0.01em;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 360px;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--color-wh);
}

section{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: var(--size-xl);
    padding-bottom: var(--size-xl);
}

.section-wrapper{
    max-width: 1440px;
    width: 100%;
    padding-left: var(--size-s);
    padding-right: var(--size-s);
}

.section-title{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--title-2);
    font-weight: 700;
    color: var(--color-bk);
    word-break: keep-all;
    line-height: 135%;
}

.section-title > span{
    color: var(--color-hl);
}

.section-tag{
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-l);
    font-weight: 700;
    color: var(--color-hl);
    margin-bottom: 12px;
    word-break: keep-all;
}

.section-desc{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-l);
    font-weight: 400;
    color: var(--color-gy);
    word-break: keep-all;
    line-height: 150%;
}

h3{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--color-bk);
}

p{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-m);
    font-weight: 400;
    color: var(--color-gy);
    line-height: 150%;
    word-break: keep-all;
}

/* ---------------- HEADER ---------------- */

header{
    position: fixed;
    top: 0;
    min-width: 360px;
    width: 100%;
    height: var(--header-height);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    z-index: 5;
}

header.sticky{
    background-color: var(--color-wh);
}

header.sticky nav > ul > li > a{
    font-weight: 500;
    color: var(--color-gy);
}


header.sticky nav > ul > li > a:hover{
    color: var(--color-hl);
}

.header-wrapper{
    max-width: 1520px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--size-s);
}

.logo{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo > img{
    height: 56px;
    object-fit: contain;
}

nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav > ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--size-s);
}

nav > ul > li > a{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-s);
    font-weight: 300;
    color: var(--color-wh);
    transition: 0.2s;
}

nav > ul > li > a:hover{
    color: var(--color-hl);
}

/* ---------------- MAIN ---------------- */

#main{
    padding: 0;
    position: relative;
}

#main > video{
    position: absolute;
    top: 0;
    max-width: 1920px;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100); /* fallback */
    height: 100dvh; /* 최신 브라우저 우선 적용 */
    object-fit: cover;
    z-index: 1;
}

#main > .section-wrapper{
    min-height: calc(var(--vh, 1vh) * 100);
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: var(--size-l);
    padding-bottom: var(--size-xl);
    z-index: 2;
}

h1{
    position: relative;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--title-1);
    font-weight: 600;
    color: var(--color-wh);
    line-height: 140%;
    margin-bottom: var(--size-m);
    z-index: 2;
}

h1 > span{
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 700;
    gap: 12px;
    margin-right: 12px;
    color: var(--color-hl);
}

h1 > span > img{
    width: 56px;
    object-fit: contain;
    animation: floatUp 1s ease-in-out infinite;
}

@keyframes floatUp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); } /* 위로 이동 */
    100% { transform: translateY(0); } /* 다시 제자리 */
}

#main > .section-wrapper > a > img{
    height: 34px;
    object-fit: contain;
}

/* ---------------- INTRO ---------------- */

#intro{
    background-color: var(--color-wh);
}

#intro > .section-wrapper > div{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}


#intro > .section-wrapper > div > img{
    width: 480px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    z-index: 1;
}

.merits{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--size-xs);
    z-index: 2;
}

.merits > div{
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--color-hl);
    background: linear-gradient(180deg, var(--color-bg), var(--color-wh));
}

.merits > div > p{
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-m);
    font-weight: 700;
    color: var(--color-hl);
    word-break: keep-all;
    margin-bottom: 8px;
}

.merits > div > h3{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--color-bk);
    padding-bottom: 8px;
}

#intro > .section-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#intro .section-title{
    text-align: center;
    margin-top: calc(var(--size-xl) + var(--size-s));
}

#intro .section-desc{
    text-align: center;
    margin-top: var(--size-s);
}

/* ---------------- ABOUT ---------------- */

#about{
    background-color: var(--color-bg);
}

#about > .section-wrapper > div{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: var(--size-xs);

    margin-top: calc(0.8 * var(--size-m));
}

.why{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--size-xs);
    border-radius: 12px;
    padding: var(--size-s);
    background-color: var(--color-wh);
    border: 1px solid var(--color-line);
}

.why > img{
    width: 64px;
    object-fit: contain;
}

.why > div{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--size-xs);
}

.why > div > h3{
    font-size: var(--font-xl);
    font-weight: 700;
    color: var(--color-bk);
}

.why > div > p{
    font-size: var(--font-m);
    font-weight: 400;
    color: var(--color-gy);
    line-height: 150%;
}

/* ---------------- SERVICES ---------------- */

#services{
    background-color: var(--color-wh);
}

#services > .section-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#services > .section-wrapper > div{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--size-xs);
    row-gap: var(--size-s);
    margin-top: var(--size-m);
}

.service > img{
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.service-txt > h3{
    padding: var(--size-s) var(--size-xs) var(--size-xs) var(--size-xs);
}

.service-txt > p{
    padding: 0 var(--size-xs);
}

.service-txt > div{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    background-color: var(--color-bg);
    padding: var(--size-xs);
    border-radius: 12px;
    margin-top: var(--size-xs);
}

.service-txt > div > div{
    min-width: 87px;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-xs);
    font-weight: 500;
    color: var(--color-wh);
    background-color: var(--color-hl);
    padding: 6px 16px;
    border-radius: 40px;
}

.service-txt > div > p{
    font-size: var(--font-s);
    color: var(--color-hl);
    font-weight: 500;
    padding-top: 1px;
}

/* ---------------- STRENGTH ---------------- */

#strength{
    background-image: url('../img/bg_strength.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#strength > .section-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--size-s);
    align-items: flex-start;
}

#strength .section-tag{
    font-weight: 600;
}

#strength .section-title{
    font-weight: 600;
    color: var(--color-wh);
}

.strength-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: var(--size-xs);
}

.strength-wrapper > div:not(.strength-main){
    width: 100%;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-l);
    font-weight: 400;
    color: var(--color-wh);
    text-align: center;
    padding: calc(0.8 * var(--size-s));
    border-radius: 12px;
    line-height: 135%;
    background: linear-gradient(180deg, #90949B, #90949B1A);
}

.strength-wrapper > img:not(.strength-arrow){
    width: 16px;
    object-fit: contain;
}

.strength-wrapper > .strength-arrow{
    width: 48px;
    object-fit: contain;
}

.strength-wrapper > .strength-main{
    width: 100%;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-l);
    font-weight: 400;
    color: var(--color-wh);
    padding: calc(0.8 * var(--size-s));
    text-align: center;
    border-radius: 12px;
    line-height: 135%;
    background-image: url('../img/bg_hl.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.strength-wrapper > .strength-main > span{
    font-weight: 700;
}

/* ---------------- PROCESS ---------------- */
#process{
    position: relative;
}

#process > .section-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#process hr{
    position: absolute;
    top: 310px;
    width: 100%;
    border: none;
    background: none;
    border-bottom: 1px dashed var(--color-hl);
}

#process > .section-wrapper:last-of-type{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    column-gap: var(--size-s);
    align-items: flex-start;
    margin-top: var(--size-m);
}

.process{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.process > div{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}

.process > div > div{
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-s);
    font-weight: 600;
    color: var(--color-wh);
    background-color: var(--color-hl);
    padding: 4px 12px;
    border-radius: 32px;
    margin-top: var(--size-s);
}

.process > div > p{
    word-break: keep-all;
}

.dot{
    width: 36px;
    object-fit: contain;
}

.process-img{
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
    margin-top: var(--size-xs);
}

/* ---------------- REVIEW ---------------- */

#reviews{
    background-color: #f8f8f8;
}

.reviewSwiper {
    width: 100%;
    height: 100%;
    margin-top: var(--size-m);
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: contain;
    border-radius: 12px;
}

/* ---------------- CLIENTS ---------------- */

#clients > .section-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.client-img{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: var(--size-m);
    gap: var(--size-s);
}

.client-img > div:nth-of-type(1){
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    column-gap: var(--size-xs);
}

.client-img > div:nth-of-type(1) > img{
    width: 160px;
    object-fit: contain;
}

.client-img > div:nth-of-type(2), .client-img > div:nth-of-type(3){
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--size-l);
}

.client-img > div:nth-of-type(2) > img, .client-img > div:nth-of-type(3) > img{
    height: 64px;
    object-fit: contain;
}

#clients > .section-wrapper > img{
    width: 8px;
    object-fit: contain;
    margin-top: var(--size-s);
    margin-bottom: var(--size-s);
}

#clients > .section-wrapper > h3{
    font-weight: 400;
}

#clients > .section-wrapper > h3 > span{
    font-weight: 700;
}

/* ---------------- CONTACT ---------------- */

#contact{
    background-image: url('../img/bg_contact.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#contact > .section-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--size-s);
}

#contact .section-tag{
    font-weight: 600;
}

#contact .section-title{
    margin-bottom: var(--size-m);
    color: var(--color-wh);
    font-weight: 600;
}

#contact > .section-wrapper > div > a > div{
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(135deg, var(--color-hl), #FF5E00);
    gap: 8px;
    padding: 16px 40px;
    border-radius: 40px;
}

#contact > .section-wrapper > div > a > div > img{
    width: 20px;
    object-fit: contain;
}

#contact > .section-wrapper > div > a > div > span{
    font-family: "Montserrat", sans-serif;
    font-size: var(--font-l);
    font-weight: 500;
    color: var(--color-wh);
}

form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: var(--color-wh);
    padding: var(--size-m) var(--size-s);
    border-radius: 12px;
    gap: var(--size-s);
}

.input-wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}

.input-wrapper > label{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-m);
    font-weight: 600;
    color: var(--color-bk);
}

.input-wrapper > label > span{
    color: var(--color-hl);
}

.input-wrapper > input, .input-wrapper > textarea{
    width: 100%;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-s);
    font-weight: 400;
    color: var(--color-bk);
    background-color: #F5F5F5;
    padding: var(--size-xs) 24px;
    border-radius: 8px;
    outline: none;
    border: 1px solid #F5F5F5;
}

.input-wrapper > input:focus, .input-wrapper > textarea:focus{
    outline: none;
    border: 1px solid var(--color-hl);
}

.checkbox-wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.checkbox-wrapper > input{
    accent-color: var(--color-hl);
}

.checkbox-wrapper > label{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-xs);
    font-weight: 400;
    color: var(--color-gy);
}

.checkbox-wrapper > span{
    font-weight: 700;
    color: var(--color-gy);
    padding-bottom: 1px;
    font-size: var(--font-xs);
    cursor: pointer;
}

form > input{
    width: 100%;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-m);
    font-weight: 600;
    color: var(--color-wh);
    padding: var(--size-xs);
    border-radius: 12px;
    background-color: var(--color-bk);
    border: none;
    transition: 0.2s;
    cursor: pointer;
}

form > input:hover{
    background-color: var(--color-hl);
}

/* ---------------- FOOTER ---------------- */

footer{
    background-color: #000000;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--size-m) 0;
    z-index: 101;
}

.footer-wrapper{
    max-width: 1520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 var(--size-xs);
}

.footer-wrapper > .logo > img{
    opacity: 0.4;
    height: 48px;
}

.footer-wrapper > p{
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-xs);
    font-weight: 400;
    color: var(--color-gy);
    line-height: 150%;
    margin-top: var(--size-xs);
}

.footer-wrapper > p a{
    color: var(--color-gy);
}

.floating{
    display: none;
}

@media screen and (max-width: 1440px) {
    :root {
    --title-1: 56px;
    --title-2: 40px;

    --font-xl: 28px;
    --font-l: 22px;
    --font-m: 19px;
    --font-s: 17px;
    --font-xs: 15px;

    --header-height: 90px;

    --size-xl: 108px;
    --size-l: 72px;
    --size-m: 54px;
    --size-s: 36px;
    --size-xs: 18px;
}

.logo > img{
    height: 52px;
}

h1 > span > img{
    width: 52px;
}

#main > .section-wrapper > a > img{
    height: 32px;
}

.strength-wrapper > div{
    word-break: keep-all;
    line-height: 135%;
}

#strength > .section-wrapper{
    grid-template-columns: 0.9fr 1fr;
    column-gap: 0;
}

#process hr{
    top: 278px;
}


.client-img > div:nth-of-type(1) > img{
    width: 144px;
}

.client-img > div:nth-of-type(2) > img, .client-img > div:nth-of-type(3) > img{
    height: 56px;
}

}

@media screen and (max-width: 1200px) {
    #about > .section-wrapper > div{
        grid-template-columns: 1fr;
        row-gap: var(--size-xs);
    }

    .why{
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: var(--size-s);
    }

#process > .section-wrapper:last-of-type {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: var(--size-s);
    padding-bottom: 12px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    cursor: grab; /* 기본 커서 */
}

#process > .section-wrapper:last-of-type:active {
    cursor: grabbing;
}

#process > .section-wrapper:last-of-type {
    scrollbar-width: none; /* Firefox */
}
#process > .section-wrapper:last-of-type::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.process {
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 240px;
    box-sizing: border-box;
}

}

@media screen and (max-width: 1024px) {
    :root {
    --title-1: 56px;
    --title-2: 40px;

    --font-xl: 28px;
    --font-l: 22px;
    --font-m: 19px;
    --font-s: 17px;
    --font-xs: 15px;

    --header-height: 80px;

    --size-xl: 102px;
    --size-l: 68px;
    --size-m: 51px;
    --size-s: 34px;
    --size-xs: 17px;
    }

    .logo > img{
        height: 48px;
    }

    header nav > ul > li:not(nav > ul > li:last-of-type){
        display: none;
    }

    nav > ul > li:last-of-type > a{
        color: var(--color-wh);
        border: 1px solid var(--color-wh);
        padding: 6px 14px;
        border-radius: 24px;
    }

    header.sticky nav > ul > li:last-of-type > a{
        font-weight: 500;
        color: var(--color-bk);
        border: 1px solid var(--color-bk);
    }

    nav > ul > li:last-of-type > a:hover{
        border: 1px solid var(--color-hl);
        color: var(--color-hl);
    }

    header.sticky nav > ul > li:last-of-type > a:hover{
        border: 1px solid var(--color-hl);
        color: var(--color-hl);
    }

    .merits > div{
        width: 180px;
        height: 180px;
    }

    #intro > .section-wrapper > div > img{
        width: 400px;
    }

    #intro .section-title{
        margin-top: var(--size-xl);
    }

    #intro .section-desc > br{
        display: none;
    }

    #about > .section-wrapper > div{
        row-gap: 12px;
    }

    .why > img{
        width: 60px;
    }

    .service-txt > div > div{
        min-width: initial;
    }

    .service-txt > div{
        flex-direction: column;
        gap: 8px;
    }
    .service-txt > div > p{
        padding: 0 8px;
    }

    .client-img > div:nth-of-type(1) > img{
        width: 120px;
    }

    #strength > .section-wrapper{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        grid-template-columns: initial;
        row-gap: initial;
        column-gap: initial;
    }

    .strength-wrapper{
        width: 100%;
        margin-top: var(--size-m);
    }

    #process hr{
        top: 268px;
    }

    .client-img > div:nth-of-type(2) > img, .client-img > div:nth-of-type(3) > img{
        height: 48px;
    }

    #contact .section-title{
        margin-bottom: var(--size-s);
    }

    #contact > .section-wrapper{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        grid-template-columns: initial;
        row-gap: initial;
        column-gap: initial;
        gap: var(--size-m);
    }
}

@media screen and (max-width: 768px) {
    :root {
    --title-1: 48px;
    --title-2: 32px;

    --font-xl: 25px;
    --font-l: 21px;
    --font-m: 18px;
    --font-s: 16px;
    --font-xs: 14px;

    --header-height: 72px;

    --size-xl: 80px;
    --size-l: 64px;
    --size-m: 48px;
    --size-s: 32px;
    --size-xs: 16px;
    }

    #main > .section-wrapper{
        padding-bottom: 120px;
    }

    h1{
        word-break: keep-all;
    }

    h1 > span > img{
        width: 48px;
    }

    .section-wrapper, .header-wrapper, .footer-wrapper{
        padding: 0 20px;
    }

    #main > .section-wrapper > a > img{
        height: 28px;
    }

    .merits > div{
        width: 144px;
        height: 144px;
    }

    .merits > div > h3{
        font-size: var(--font-l);
    }

    #intro > .section-wrapper > div > img{
        width: 360px;
    }

    #intro .section-desc{
        font-size: var(--font-m);
    }

    #intro .section-title{
        margin-top: 120px;
    }

    #services > .section-wrapper > div{
        grid-template-columns: 1fr;
    }

    .service-txt > h3{
        padding-top: var(--size-xs);
        padding-bottom: 8px;
    }

.strength-wrapper > div:not(.strength-main){
        font-size: var(--font-m);
    }


.strength-wrapper > .strength-main{
        font-size: var(--font-m);
}

.strength-wrapper > .strength-arrow{
    width: 40px;
}

#process hr{
    top: 232px;
}

.swiper-slide img{
    border-radius: 6px;
}

.client-img > div:nth-of-type(1) > img{
    width: 80px;
}

.client-img > div:nth-of-type(2) > img, .client-img > div:nth-of-type(3) > img{
    height: 32px;
}

.client-img > div:nth-of-type(2), .client-img > div:nth-of-type(3){
    gap: var(--size-s);
}

#clients > .section-wrapper > img{
    width: 4px;
}

#clients > .section-wrapper > h3{
    word-break: keep-all;
    text-align: center;
    line-height: 150%;
}
form{
    padding: 40px 25px;
}
.input-wrapper > input, .input-wrapper > textarea{
    padding: var(--size-xs) 20px;
}

.footer-wrapper > .logo > img{
    height: 40px;
}


.floating{
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
    position: fixed;
    bottom: 20px;
    font-family: 'Pretendard Variable', sans-serif;
    font-size: var(--font-m);
    font-weight: 700;
    color: var(--color-wh);
    background: linear-gradient(135deg, var(--color-hl), #FF5E00);
    border-radius: 8px;
    padding: 16px 24px;
    word-break: keep-all;
    box-shadow: 0px 4px 16px #F796241A;
    z-index: 100;
    animation-name: updown;
    animation-duration: 0.8s; /* 조금 더 느리게 */
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out; /* 부드러운 가속/감속 */
}

@keyframes updown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-6px); /* 위로 조금만 이동 */
    }
}

.floating > span{
    font-weight: 400;
}
}

@media screen and (max-width: 576px) {
    :root {
    --title-1: 38px;
    --title-2: 28px;

    --font-xl: 22px;
    --font-l: 20px;
    --font-m: 18px;
    --font-s: 16px;
    --font-xs: 14px;

    --header-height: 64px;

    --size-xl: 64px;
    --size-l: 64px;
    --size-m: 48px;
    --size-s: 32px;
    --size-xs: 16px;
    }

    .logo > img{
        height: 40px;
    }

    h1{
        margin-bottom: var(--size-s);
    }

    h1 > span > img{
        width: 36px;
    }

    .merits{
        column-gap: 12px;
    }

    .merits > div > p{
        font-size: var(--font-xs);
        margin-bottom: 4px;
    }

    .merits > div > h3{
        font-size: var(--font-s);
    }

    .merits > div{
        width: 96px;
        height: 96px;
    }

    #intro > .section-wrapper > div > img{
        width: 280px;
        top: 40%;
    }

    #intro .section-title{
        margin-top: 80px;
    }

    #intro .section-desc{
        margin-top: var(--size-xs);
    }

        #main > .section-wrapper > a > img{
        height: 24px;
    }

    .why{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: var(--size-xs);
        padding: 24px;
    }

    .why > img{
        width: 48px;
    }

        .service-txt > h3{
            padding-left: 12px;
            padding-right: 12px;
        }

    .service-txt > p{
        padding: 0 12px;
        font-size: var(--font-s);
    }

    .service-txt > div > div{
        padding: 5px 12px;
    }

    .strength-wrapper > div:not(.strength-main){
        padding: 20px;
    }

    #process hr{
    top: 190px;
}

.process > div > div{
    margin-top: var(--size-xs);
}

.process > div > p{
    font-size: var(--font-s);
}

#process > .section-wrapper:last-of-type{
    margin-top: 32px;
}

.dot{
    width: 28px;
}

#clients > .section-wrapper > img{
    margin: 24px 0px;
}

.client-img{
    gap: 24px;
    margin-top: 40px;
}

.client-img > div:nth-of-type(1){
    column-gap: 8px;
}
.client-img > div:nth-of-type(1) > img{
    width: 64px;
}

.client-img > div:nth-of-type(2) > img, .client-img > div:nth-of-type(3) > img{
    height: 28px;
}

.client-img > div:nth-of-type(2), .client-img > div:nth-of-type(3){
    column-gap: var(--size-xs);
}

#clients > .section-wrapper > h3{
    font-size: var(--font-l);
}

#clients > .section-wrapper > h3 > br{
    display: block !important;
}
.reviewSwiper{
    margin-top: 32px;
}

#contact > .section-wrapper > div > a > div{
    padding: 12px 24px;
}

#contact > .section-wrapper > div > a > div > img{
    width: 16px;
}

#reviews > .section-wrapper{
    padding: 0;
}

#reviews .section-tag, #reviews .section-title{
    padding-left: 20px;
    padding-right: 20px;
}

.reviewSwiper .swiper-slide {
    opacity: 0.4;
    transition: opacity 0.2s ease;
}

.reviewSwiper .swiper-slide-active {
    opacity: 1;
}

.footer-wrapper > .logo > img{
    height: 32px;
}

}
@media screen and (max-width: 390px) {
    :root {
    --title-1: 34px;
    --title-2: 27px;

    --font-xl: 20px;
    --font-l: 18px;
    --font-m: 16px;
    --font-s: 14px;
    --font-xs: 12px;
    }

    
    h1 > span > img{
        width: 32px;
    }

    
.client-img > div:nth-of-type(1){
    column-gap: 7px;
}
.client-img > div:nth-of-type(1) > img{
    width: 58px;
}

.client-img > div:nth-of-type(2) > img, .client-img > div:nth-of-type(3) > img{
    height: 24px;
}

.client-img > div:nth-of-type(2), .client-img > div:nth-of-type(3){
    column-gap: var(--size-xs);
}

}