@charset "UTF-8";

:root {
}

html, body {
    font-family: "Pretendard GOV Variable", "Pretendard GOV", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
}

/* 노말라이즈 */
html, body, h1, h2, h3, h4, h5, h6, div, p, blockquote, pre, code, address, ul, ol, li, menu, nav, section, article, aside, dl, dt, dd, table, thead, tbody, tfoot, label, caption, th, td, form, fieldset, legend, hr, input, button, textarea, object, figure, figcaption {
    margin: 0;
    padding: 0;
}

main, header, section, nav, footer, aside, article, figure {
    display: block;
}

html {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
    overflow-x: hidden; /* 반응형 */
}

ul, ol, li {
    list-style: none;
}

h1, h2, h3, h4, strong, th {
    font-weight: normal;
    font-family: inherit;
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
}

i, em {
    font-style: normal;
}


/* 풀페이지 로딩 뷰 */
.loading-full {
    z-index: 10000;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.loader {
    width: 96px;
    height: 96px;
    border: 10px solid #28a6d7;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    animation: pulse 1s linear infinite;
    margin: auto;
}

.loader:after {
    content: '';
    position: absolute;
    width: 96px;
    height: 96px;
    border: 10px solid #28a6d7;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: scaleUp 1s linear infinite;
}

@keyframes scaleUp {
    0% {
        transform: translate(-50%, -50%) scale(0)
    }
    60%, 100% {
        transform: translate(-50%, -50%) scale(1)
    }
}

@keyframes pulse {
    0%, 60%, 100% {
        transform: scale(1)
    }
    80% {
        transform: scale(1.2)
    }
}

.loading-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 110px; /* 로딩 아이콘 크기 조정 */
}

.curve {
    animation-timing-function: ease-in-out;
}

.text-vector {
    margin-top: 15px;
    width: 125px;
    position: relative;
    left: -24px;
    top: -54px;

    /* 🎨 페이드인 효과 (고정된 자리에서 등장) */
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#lang-button,
#lang-button-calc {
    display: flex;
    align-items: center;
    gap: 6px;
}

#lang-button .lang-option,
#lang-button-calc .lang-option {
    background: transparent;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    font-weight: 700;
    cursor: pointer;
    opacity: .6;
}

#lang-button .lang-option.active,
#lang-button-calc .lang-option.active {
    opacity: 1;
}

#lang-button .lang-option:focus-visible,
#lang-button-calc .lang-option:focus-visible {
    outline: 1px dotted currentColor;
    outline-offset: 2px;
}

#lang-button .lang-divider,
#lang-button-calc .lang-divider {
    color: inherit;
    font-weight: 700;
}

.header-blur #lang-button,
.header-blur #lang-button-calc {
    color: #fff !important;
    border-color: #fff !important;
}

.header-blur ul li a span {
    color: #fff;
}

.header #lang-button {
    margin-right: 40px;
    border-bottom: 2px solid #2f2f2f;
    transition: all .2s ease-out;
    color: #2f2f2f;
    font-weight: 700;
    font-size: 20px;
}

.header #lang-button-calc {
    border-bottom: 2px solid #2f2f2f;
    transition: all .2s ease-out;
    color: #2f2f2f;
    font-weight: 700;
    font-size: 20px;
}

@media screen and (min-width: 1700px) {
    .finance-title {
        margin-top: 70px;
        width: 100%;
        background-image: url("/assets/img/finance_title.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 160px;
        top: 0;
        position: absolute;
    }

    .finance-title-text {
        width: 40%;
        text-align: start;
        color: #FFFFFF;
        font-weight: 700;
        font-size: 46px;
    }

    .finance-contents {
        margin-top: 160px;
    }

    .finance-icons {
        display: flex;
        margin-top: 10px;
    }

    .finance-icons.mini {
        margin-top: 10px;
        display: none;
    }

    .finance-icon {
        margin: 12px;
        width: 121px;
    }

    .finance-icon img {
        width: 80px;
        width: 121px;
    }

    .finance-board-wrap {
        margin-top: 78px;
    }

    .finance-board {
        /*padding: 35px 90px;*/
        padding: 35px 0;
        width: 40%;
        font-weight: 300;
        font-size: 22px;
        line-height: 36px;
        color: #2A2A2A;
        text-align: center;
        background-color: #FFFFFF;
        box-shadow: 1px 4px 12.1px 0px #D7D7D740;
        border-radius: 30px;
    }

    .finance-board span {
        font-weight: 700;
        font-size: 26px;
        line-height: 36px;
        color: #29588D;
    }

    /* 미니헤더 */
    .header-mini {
        display: none;
    }

    /* 헤더 */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        border-bottom: 1px solid rgba(221, 221, 221, 0.5);
        backdrop-filter: blur(24px);
        z-index: 100;
        color: #333;
        text-align: center;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }

    .header li a span {
        position: relative;
    }

    .header li.over a span::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #005596;
        bottom: 0;
        border-radius: 2px;
        margin-bottom: -20px;
    }

    .header div {
        display: flex;
        align-items: center;
    }

    .header li {
        display: inline;
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 700;
        font-size: 22px;
        margin-left: 35px;
        margin-right: 35px;
        height: 100%;
        display: flex;
        align-items: center;
        max-width: 150px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .header li.active {
        color: #00a8ff !important;
        border-bottom: 4px solid #00a8ff !important;
    }

    .header .logo-wrap .logo {
        width: 70px;
        height: 32px;
        display: block;
        position: relative;
    }

    .header .logo img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 70px;
        /* height: 40px; */
        margin: auto;
    }

    .modal-menu {
        position: absolute;
        display: none;
        justify-content: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 99999;
    }

    .sub-header {
        position: fixed;
        /* display: flex; */
        height: 44px;
        width: 100%;
        background-color: #fff;
        /*border-bottom-left-radius: 10px;*/
        /*border-bottom-right-radius: 10px;*/
        border: 1px solid #DADADA;
        padding: 0;
        overflow: hidden;
        z-index: 10000;
        display: none;
        box-shadow: 2px 4px 9.4px 0px #B8B8B840;
        align-items: center;
    }

    .sub-header .sub-header-menu {
        cursor: pointer;
        font-size: 16px;
        background-color: #FFF;
        color: #2A2A2A;
        font-weight: 500;
        /*font-family: "Pretendard Variable", Pretendard, sans-serif;*/
        /*border-right: 1px solid #DADADA;*/
        padding: 15px 30px 15px 0;
    }
}

@media screen and (max-width: 1699px) and (min-width: 1460px) {
    .finance-title {
        margin-top: 60px;
        width: 100%;
        background-image: url("/assets/img/finance_title.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 160px;
        top: 0;
        position: absolute;
    }

    .finance-title-text {
        width: 700px;
        text-align: start;
        color: #FFFFFF;
        font-weight: 700;
        font-size: 40px;
    }

    .finance-contents {
        margin-top: 160px;
    }

    .finance-icons {
        display: flex;
        margin-top: 10px;
    }

    .finance-icons.mini {
        margin-top: 10px;
        display: none;
    }

    .finance-icon {
        margin: 12px;
        width: 110px;
    }

    .finance-icon img {
        width: 110px;
    }

    .finance-board-wrap {
        margin-top: 78px;
    }

    .finance-board {
        /*padding: 35px 90px;*/
        padding: 35px 0;
        width: 700px;
        font-weight: 300;
        font-size: 20px;
        line-height: 36px;
        color: #2A2A2A;
        text-align: center;
        background-color: #FFFFFF;
        box-shadow: 1px 4px 12.1px 0px #D7D7D740;
        border-radius: 30px;
    }

    .finance-board span {
        font-weight: 700;
        font-size: 24px;
        line-height: 36px;
        color: #29588D;
    }

    .finance-board span.bold-blue {
        font-weight: 700;
        font-size: 24px;
        line-height: 36px;
        color: #29588D;
    }

    /* 미니헤더 */
    .header-mini {
        display: none;
    }

    /* 헤더 */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        border-bottom: 1px solid rgba(221, 221, 221, 0.5);
        backdrop-filter: blur(24px);
        z-index: 100;
        color: #333;
        text-align: center;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header div {
        display: flex;
        align-items: center;
    }

    .header li {
        display: inline;
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 700;
        font-size: 18px;
        margin-left: 35px;
        margin-right: 35px;
        height: 100%;
        display: flex;
        align-items: center;
        max-width: 150px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .header li.active {
        color: #00a8ff !important;
        border-bottom: 4px solid #00a8ff !important;
    }

    .header .logo-wrap .logo {
        width: 66px;
        height: 32px;
        display: block;
        position: relative;
    }

    .header .logo img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 66px;
        /* height: 40px; */
        margin: auto;
    }

    .modal-menu {
        position: absolute;
        display: none;
        justify-content: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 99999;
    }

    .sub-header {
        position: fixed;
        /* display: flex; */
        height: 44px;
        width: 100%;
        background-color: rgba(255, 255, 255, 0);
        backdrop-filter: blur(24px);
        /*border-bottom-left-radius: 10px;*/
        /*border-bottom-right-radius: 10px;*/
        border-radius: 10px;
        border: 1px solid rgba(218, 218, 218, 0.3);
        padding: 0;
        overflow: hidden;
        z-index: 10000;
        display: none;
        box-shadow: 2px 4px 9.4px 0px rgba(184, 184, 184, 0.25);
        align-items: center;
    }

    .sub-header .sub-header-menu {
        cursor: pointer;
        font-size: 16px;
        background-color: #FFF;
        color: #2A2A2A;
        font-weight: 500;
        /*font-family: "Pretendard Variable", Pretendard, sans-serif;*/
        /*border-right: 1px solid #DADADA;*/
        padding: 15px 30px 15px 0;
    }
}

@media screen and (max-width: 1459px) and (min-width: 1200px) {
    .finance-title {
        margin-top: 60px;
        width: 100%;
        background-image: url("/assets/img/finance_title.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 140px;
        top: 0;
        position: absolute;
    }

    .finance-title-text {
        width: 600px;
        text-align: start;
        color: #FFFFFF;
        font-weight: 700;
        font-size: 38px;
    }

    .finance-contents {
        margin-top: 100px;
    }

    .finance-icons {
        display: flex;
        margin-top: 10px;
    }

    .finance-icons.mini {
        margin-top: 10px;
        display: none;
    }

    .finance-icon {
        margin: 12px;
        width: 80px;
    }

    .finance-icon img {
        width: 80px;
    }

    .finance-board-wrap {
        margin-top: 60px;
    }

    .finance-board {
        /*padding: 35px 90px;*/
        padding: 35px 0;
        width: 600px;
        font-weight: 300;
        font-size: 18px;
        line-height: 36px;
        color: #2A2A2A;
        text-align: center;
        background-color: #FFFFFF;
        box-shadow: 1px 4px 12.1px 0px #D7D7D740;
        border-radius: 30px;
    }

    .finance-board span {
        font-weight: 700;
        font-size: 22px;
        line-height: 36px;
        color: #29588D;
    }

    .finance-board span.bold-blue {
        font-weight: 700;
        font-size: 22px;
        line-height: 36px;
        color: #29588D;
    }

    /* 미니헤더 */
    .header-mini {
        display: none;
    }

    /* 헤더 */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        border-bottom: 1px solid rgba(221, 221, 221, 0.5);
        backdrop-filter: blur(24px);
        z-index: 100;
        color: #333;
        text-align: center;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }

    .header div {
        display: flex;
        align-items: center;
    }

    .header li {
        display: inline;
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 700;
        font-size: 16px;
        margin-left: 35px;
        margin-right: 35px;
        height: 100%;
        display: flex;
        align-items: center;
        max-width: 150px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .header li.active {
        color: #00a8ff !important;
        border-bottom: 3px solid #00a8ff !important;
    }

    .header .logo-wrap .logo {
        width: 66px;
        height: 32px;
        display: block;
        position: relative;
    }

    .header .logo img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 66px;
        /* height: 40px; */
        margin: auto;
    }

    .modal-menu {
        position: absolute;
        display: none;
        justify-content: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 99999;
    }

    .sub-header {
        position: fixed;
        /* display: flex; */
        height: 44px;
        width: 100%;
        background-color: #fff;
        /*border-bottom-left-radius: 10px;*/
        /*border-bottom-right-radius: 10px;*/
        border: 1px solid #DADADA;
        padding: 0;
        overflow: hidden;
        z-index: 10000;
        display: none;
        box-shadow: 2px 4px 9.4px 0px #B8B8B840;
        align-items: center;
    }

    .sub-header .sub-header-menu {
        cursor: pointer;
        font-size: 14px;
        background-color: #FFF;
        color: #2A2A2A;
        font-weight: 500;
        /*font-family: "Pretendard Variable", Pretendard, sans-serif;*/
        /*border-right: 1px solid #DADADA;*/
        padding: 15px 30px 15px 0;
    }
}

@media screen and (max-width: 1199px) and (min-width: 1025px) {
    .finance-title {
        margin-top: 60px;
        width: 100%;
        background-image: url("/assets/img/finance_title.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 120px;
        top: 0;
        position: absolute;
    }

    .finance-title-text {
        width: 600px;
        text-align: start;
        color: #FFFFFF;
        font-weight: 700;
        font-size: 34px;
    }

    .finance-contents {
        margin-top: 60px;
    }

    .finance-icons {
        display: flex;
        margin-top: 10px;
    }

    .finance-icons.mini {
        margin-top: 10px;
        display: none;
    }

    .finance-icon {
        margin: 10px;
        width: 80px;
    }

    .finance-icon img {
        width: 80px;
    }

    .finance-board-wrap {
        margin-top: 40px;
    }

    .finance-board {
        /*padding: 35px 90px;*/
        padding: 13px 0;
        width: 600px;
        font-weight: 300;
        font-size: 16px;
        line-height: 36px;
        color: #2A2A2A;
        text-align: center;
        background-color: #FFFFFF;
        box-shadow: 1px 4px 12.1px 0px #D7D7D740;
        border-radius: 30px;
    }

    .finance-board span {
        font-weight: 700;
        font-size: 20px;
        line-height: 36px;
        color: #29588D;
    }

    .finance-board span.bold-blue {
        font-weight: 700;
        font-size: 20px;
        line-height: 36px;
        color: #29588D;
    }

    /* 미니헤더 */
    .header-mini {
        display: none;
    }

    /* 헤더 */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        border-bottom: 1px solid rgba(221, 221, 221, 0.5);
        backdrop-filter: blur(24px);
        z-index: 100;
        color: #333;
        text-align: center;
        justify-content: space-between;
        display: flex;
        align-items: center;
    }

    .header div {
        display: flex;
        align-items: center;
    }

    .header li {
        display: inline;
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 700;
        font-size: 16px;
        margin-left: 35px;
        margin-right: 35px;
        height: 100%;
        display: flex;
        align-items: center;
        max-width: 150px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .header li.active {
        color: #00a8ff !important;
        border-bottom: 3px solid #00a8ff !important;
    }

    .header .logo-wrap .logo {
        width: 66px;
        height: 32px;
        display: block;
        position: relative;
    }

    .header .logo img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 66px;
        /* height: 40px; */
        margin: auto;
    }

    .modal-menu {
        position: absolute;
        display: none;
        justify-content: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 99999;
    }

    .sub-header {
        position: fixed;
        /* display: flex; */
        height: 44px;
        width: 100%;
        background-color: #fff;
        /*border-bottom-left-radius: 10px;*/
        /*border-bottom-right-radius: 10px;*/
        border: 1px solid #DADADA;
        padding: 0;
        overflow: hidden;
        z-index: 10000;
        display: none;
        box-shadow: 2px 4px 9.4px 0px #B8B8B840;
        align-items: center;
    }

    .sub-header .sub-header-menu {
        cursor: pointer;
        font-size: 14px;
        background-color: #FFF;
        color: #2A2A2A;
        font-weight: 500;
        /*font-family: "Pretendard Variable", Pretendard, sans-serif;*/
        /*border-right: 1px solid #DADADA;*/
        padding: 15px 30px 15px 0;
    }
}

@media screen and (max-width: 1024px) {
    .finance-title {
        margin-top: 60px;
        width: 100%;
        background-image: url("/assets/img/finance_title.jpg");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 120px;
        top: 0;
        position: absolute;
    }

    .finance-title-text {
        width: 600px;
        text-align: start;
        color: #FFFFFF;
        font-weight: 700;
        font-size: 34px;
    }

    .finance-contents {
        margin-top: 60px;
    }

    .finance-icons {
        margin-top: 10px;
        display: none;
    }

    .finance-icons.mini {
        margin-top: 10px;
        display: flex;
    }

    .finance-icon {
        margin: 10px;
        width: 80px;
    }

    .finance-icon img {
        width: 80px;
    }

    .finance-board-wrap {
        margin-top: 40px;
    }

    .finance-board {
        /*padding: 35px 90px;*/
        padding: 13px 0;
        width: 600px;
        font-weight: 300;
        font-size: 16px;
        line-height: 36px;
        color: #2A2A2A;
        text-align: center;
        background-color: #FFFFFF;
        box-shadow: 1px 4px 12.1px 0px #D7D7D740;
        border-radius: 30px;
    }

    .finance-board span {
        font-weight: 700;
        font-size: 20px;
        line-height: 36px;
        color: #29588D;
    }

    .finance-board span.bold-blue {
        font-weight: 700;
        font-size: 20px;
        line-height: 36px;
        color: #29588D;
    }

    /* 미니헤더 */
    .header-mini {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: #FFFFFF;
        border-bottom: 1px solid rgba(221, 221, 221, 0.5);
        backdrop-filter: blur(24px);
        z-index: 10;
        color: #2A2A2A;
        display: flex;
        /*padding-left: 35px;*/
        /*padding-right: 21px;*/
        align-items: center;
        justify-content: space-between;
        font-weight: 600;
        font-size: 20px;
    }

    .header-mini .logo-wrap .logo {
        /*width: 66px;*/
        height: 32px;
        display: block;
        position: relative;
        padding-left: 35px;
    }

    .header-mini .logo img {
        /*position: absolute;*/
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 66px;
        /* height: 40px; */
        margin: auto;
    }

    .burger-btn {
        padding: 21px 16px;
        cursor: pointer;
    }

    .burger-btn-active {
        padding: 21px 16px;
        cursor: pointer;
        background-color: #29588D !important;
        color: #FFFFFF !important;
    }

    .modal-menu {
        position: absolute;
        display: none;
        justify-content: center;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 99999;

    }

    .modal-menu.active {
        display: block;
    }

    .modal-menu-btn-wrap {
        width: 100%;
        height: 60px;
        background: none;
    }

    .modal-menu-list-item {
        width: 100%;
        height: 90px;
        cursor: pointer;
        overflow-y: hidden;
        transition-duration: 0.3s;
        transition-property: height;
        flex-direction: column;
        background-color: #FFFFFF;
    }

    .modal-menu-list-item.active {
        height: 300px;
    }

    .modal-menu-list-item.long.active {
        height: 440px;
    }

    .modal-menu-list-item-title {
        width: 100%;
        height: 90px;
        background-color: #FFFFFF;
        color: #2A2A2A;
        font-weight: 600;
        font-size: 20px;
        border-bottom: 1px solid #EDEDED;
        cursor: pointer;
    }

    .modal-menu-list-item-submenu {
        width: 100%;
        height: 70px;
        background-color: #E1ECF9;
        color: #2A2A2A;
        font-weight: 600;
        font-size: 20px;
        border-bottom: 1px solid #EDEDED;
        cursor: pointer;
    }

    /* 헤더 */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        border-bottom: 1px solid rgba(221, 221, 221, 0.5);
        backdrop-filter: blur(24px);
        z-index: 100;
        color: #333;
        text-align: center;
        align-items: center;
        display: none;
    }

    .header li {
        display: inline;
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 700;
        font-size: 16px;
        margin-left: 35px;
        margin-right: 35px;
        height: 100%;
        display: flex;
        align-items: center;
        max-width: 150px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .header li.active {
        color: #00a8ff !important;
        border-bottom: 3px solid #00a8ff !important;
    }

    .header .logo-wrap .logo {
        width: 66px;
        height: 32px;
        display: block;
        position: relative;
    }

    .header .logo img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 66px;
        /* height: 40px; */
        margin: auto;
    }

    .sub-header {
        position: fixed;
        /* display: flex; */
        height: 44px;
        background-color: rgba(255, 255, 255, 0);
        backdrop-filter: blur(24px);
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border: 1px solid rgba(218, 218, 218, 0.3);
        padding: 0;
        overflow: hidden;
        z-index: 10000;
        display: none;
        box-shadow: 2px 4px 9.4px 0px rgba(184, 184, 184, 0.25);
    }

    .sub-header .sub-header-menu {
        cursor: pointer;
        font-size: 14px;
        background-color: #FFF;
        color: #2A2A2A;
        font-weight: 500;
        /*font-family: "Pretendard Variable", Pretendard, sans-serif;*/
        /*border-right: 1px solid #DADADA;*/
        padding: 15px 30px 15px 0;
    }
}

.header .logo-wrap {
    display: flex;
    align-items: center;
    height: 100%;
    /* position: absolute; */
    margin-left: 40px;
}

.header ul {
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.header li.over {
    color: #005596;
}

.header li.over.main-page {
    color: #bef4ff;
}

.header li:first {
    margin-left: 0;
}

.header-white {
    background: #fff;
    color: #2f2f2f;
    border-bottom: 1px solid #EDEDED;
    animation: to-white 1s;
}

.header-blur {
    animation: to-blur 1s;
    animation-fill-mode: forwards;
    background-color: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(24px) !important;
    border-bottom: 1px solid rgba(221, 221, 221, 0.5) !important;
}

.sub-header-container {
    width: 100%;
    margin: 0;
}

/* 서브헤더 전체 너비 강제 적용 */
.sub-header {
    left: 0 !important;
    width: 100% !important;
    right: auto !important;
    background-color: #fff !important;
}

.sub-header .sub-header-menu:last-child {
    border-right: 0;
}

/*.sub-header .sub-header-menu.active {*/
/*  color: #141414;*/
/*  font-weight: 600;*/
/*}*/

.sh-divider {
    /*width: 1px;*/
    width: 44px;
    height: 1px;
    background-color: #BDBDBD;
    /*margin: 14px 0;*/
}

@keyframes to-white {
    0% {
        background-color: rgba(255, 255, 255, 0);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(221, 221, 221, 0.5);
        color: #fff;
    }
    100% {
        background-color: rgba(255, 255, 255, 1);
        backdrop-filter: blur(0);
        border-bottom: 1px solid #EDEDED;
        color: #000;
    }
}

@keyframes to-blur {
    0% {
        background-color: rgba(255, 255, 255, 1);
        backdrop-filter: blur(0);
        border-bottom: 1px solid #EDEDED;
        color: #000;
    }
    100% {
        background-color: rgba(255, 255, 255, 0);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(221, 221, 221, 0.5);
        color: #fff;
    }
}


/* 페이지 */
#section1 {
    background-color: transparent;
}

/* 비디오 기반 메인 섹션은 레터박스 노출을 막기 위해 검은 배경을 사용 */
#section1,
#section3,
#section5,
#section7,
#section9,
#section11 {
    background-color: #000;
}

#section2 {
    background-color: #9cdc73;
}

/* 텍스트와 CTA가 비디오 레이어 위에서 안정적으로 보이도록 기준 레이어를 만든다 */
.section .section-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#section6 .section-inner {
    min-height: 300px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        transform: translateY(80px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeLeft {
    0% {
        transform: translateX(-80px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeRight {
    0% {
        transform: translateX(80px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.title {
    text-align: center;
}

@media screen and (min-width: 1367px) {
    .title h3 {
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-size: 34px;
        color: #FFFFFF;
        text-shadow: 0px 2px 10px rgba(15, 89, 187, 0.4);
        margin-bottom: 16px;
    }

    .title h1 {
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 86px;
        line-height: 1;
        color: #FFFFFF;
        text-shadow: 0px 2px 10px rgba(15, 89, 187, 0.4);
    }
}

@media screen and (max-width: 1366px) and (min-width: 1025px) {
    .title h3 {
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-size: 26px;
        color: #FFFFFF;
        text-shadow: 0px 2px 10px rgba(15, 89, 187, 0.4);
        margin-bottom: 10px;
    }

    .title h1 {
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 62px;
        line-height: 1;
        color: #FFFFFF;
        text-shadow: 0px 2px 10px rgba(15, 89, 187, 0.4);
    }
}

@media screen and (max-width: 1024px) {
    .title h3 {
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-size: 21px;
        color: #FFFFFF;
        text-shadow: 0px 2px 10px rgba(15, 89, 187, 0.4);
        margin-bottom: 8px;
    }

    .title h1 {
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
        font-size: 52px;
        line-height: 1;
        color: #FFFFFF;
        text-shadow: 0px 2px 10px rgba(15, 89, 187, 0.4);
    }
}


/* 기본 배경 비디오는 contain으로 보여주고, JS가 필요할 때만 fluid 모드로 전환한다 */
#videobcg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    z-index: 1;
}

.hero-video,
.pv-video-full,
.pv-video-blur {
    pointer-events: none;
}

/* blur 보조 비디오는 여백을 메우는 백플레이트 역할만 수행한다 */
.hero-video-blur,
.pv-video-blur {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    object-position: center center;
    filter: blur(30px) brightness(0.72) saturate(1.08);
    transform: scale(1.08);
    opacity: 0.78;
}

/* 화면비가 충분히 맞으면 blur 레이어를 숨기고 원본 비디오를 꽉 채운다 */
html.video-fit-fluid .hero-video-blur,
html.video-fit-fluid .pv-video-blur {
    opacity: 0;
}

html.video-fit-fluid #videobcg,
html.video-fit-fluid video.pv-video-full {
    object-fit: cover;
}

@media screen and (max-width: 1199px) {
    .hero-video-blur,
    .pv-video-blur {
        filter: blur(22px) brightness(0.88) saturate(1.1);
        transform: scale(1.04);
        opacity: 0.62;
    }
}

img.scroll-down {
    height: 5rem;
    position: absolute;
    bottom: 2rem;
    animation: boing .75s ease infinite;
}

/* 모바일에서는 스크롤 유도 아이콘이 하단 safe area를 침범하지 않도록 조정한다 */
@media screen and (max-width: 1024px) {
    #section1 img.scroll-down {
        z-index: 3;
        height: 4rem;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 24px);
    }
}

@keyframes boing {
    0%, 100% {
        bottom: 2rem;
    }
    50% {
        bottom: 2.2rem;
    }
}

#section2 .top-text {
    width: auto;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.7rem;
}

.tx-yellow {
    color: #fff946;
}

#section2 .top-text .box {
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: .8rem;
    border: 1px solid #fff;
    display: inline-block;
    margin-left: 8px;
}

#section2 .map-wrap {
    width: 88%;
    height: 100%;
    position: relative;
    margin: auto;
    margin-top: 50px;
    /* border: 1px solid red; */
    margin-left: 2%;
}

#section2 .map-wrap img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#section2 .map-wrap .no-disp {
    display: none;
}

#section2 .map-wrap .anchor {
    cursor: pointer;
    background: #2196F3;
    opacity: 0;
    border: 1px solid #3F51B5;
    position: absolute;
    z-index: 100;
}

#section2 .map-wrap img.ani-up {
    animation: moveUp 0.5s normal ease-out forwards;
}

#section2 .map-wrap img.ani-down {
    animation: moveDown 0.5s normal ease-out forwards;
}

#section2 .map-wrap img.up {
    top: -20px;
}

#section2 .map-wrap .anchor1 {
    width: 26%;
    height: 47%;
    top: 47%;
    left: 63%;
    transform: rotateX(63deg) rotateY(-20deg) rotateZ(61deg);
}

#section2 .map-wrap .anchor2 {
    width: 69%;
    height: 58%;
    top: 30%;
    left: -7%;
    transform: rotateX(62deg) rotateY(-20deg) rotateZ(61deg);
}

#section2 .map-wrap .anchor3 {
    width: 46%;
    height: 52%;
    top: 20%;
    left: 37%;
    transform: rotateX(63deg) rotateY(-20deg) rotateZ(61deg);
}

#section2 .map-wrap .anchor4 {
    width: 25%;
    height: 52%;
    top: -1%;
    left: 31%;
    transform: rotateX(62deg) rotateY(-20deg) rotateZ(61deg);
}

#section2 .map-wrap .anchor5 {
    width: 53%;
    height: 29%;
    top: 10%;
    left: 48%;
    transform: rotateX(62deg) rotateY(-20deg) rotateZ(61deg);
}

@media screen and (min-width: 1366px) {
    #section2 .map-wrap .popup {
        position: absolute;
        left: 0;
        top: 0;

        background-color: #fff;
        border: 2px solid #6C9484;
        border-radius: 20px;
        z-index: 101;
        box-shadow: 0px 5px 6.9px 0px #3A615157;
        overflow: hidden;

        width: 200px;
    }

    #section2 .map-wrap .popup .inner {
        border: 6px solid #EBF7F1;
        padding: 12px;
        border-radius: 20px;
        box-shadow: 0px 3px 6.3px 0px #7F9A934F;
    }

    #section2 .map-wrap .popup .title {
        width: 100%;
        /* padding: .5rem 0; */
        color: #52645F;
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 700;
        font-size: 1.25rem;
        /* margin-bottom: 12px; */
    }

    #section2 .map-wrap .popup .desc {
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: -0.09rem;
        /* margin-bottom: 1.5rem; */
        padding: .75rem;
        border: 1px solid #CEEADE;
        border-radius: 15px;
        background-color: #F6FBF9;
        color: #4C5A56;
        text-align: justify;
        margin: 12px 0;
    }

    #section2 .map-wrap .popup .button {
        cursor: pointer;
        /* border: 1px solid #9CEFD8; */
        border-radius: 12px;
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 600;
        font-size: 16px;
        text-align: left;
        padding: 10px 14px;
        background-image: url('../assets/img/arrow_button.png');
        background-position: right;
        background-repeat: no-repeat;
        background-origin: content-box;
        background-size: 18px;
        margin-top: 0.5rem;
        transition-property: background-color, color;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        /* min-width: 220px; */
        background-color: #57726A;
        color: #FFFFFF;
        box-shadow: 0px 5px 0px 0px #48635B;
    }

    #section2 .map-wrap .popup .title .popup_close_btn {
        width: 15px;
        height: 15px;
        background-image: url('../assets/img/svg/popup_close.svg');
        background-repeat: no-repeat;
        background-size: cover;
        cursor: pointer;
    }
}

@media screen and (max-width: 1366px) {
    #section2 .map-wrap .popup {
        position: absolute;
        left: 0;
        top: 0;

        background-color: #fff;
        border: 2px solid #6C9484;
        border-radius: 20px;
        z-index: 101;
        box-shadow: 0px 5px 6.9px 0px #3A615157;
        overflow: hidden;

        width: 170px;
    }

    #section2 .map-wrap .popup .inner {
        border: 6px solid #EBF7F1;
        padding: 12px 10px;
        border-radius: 20px;
        box-shadow: 0px 3px 6.3px 0px #7F9A934F;
    }

    #section2 .map-wrap .popup .title {
        width: 100%;
        /* padding: .5rem 0; */
        color: #52645F;
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 700;
        font-size: 1rem;
        /* margin-bottom: 10px; */
    }

    #section2 .map-wrap .popup .desc {
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: -0.09rem;
        padding: 10px;
        border: 1px solid #CEEADE;
        border-radius: 15px;
        background-color: #F6FBF9;
        color: #4C5A56;
        text-align: justify;
        margin: 10px 0;
    }

    #section2 .map-wrap .popup .button {
        cursor: pointer;
        /* border: 1px solid #9CEFD8; */
        border-radius: 10px;
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 600;
        font-size: 14px;
        text-align: left;
        padding: 10px 14px;
        background-image: url('../assets/img/arrow_button.png');
        background-position: right;
        background-repeat: no-repeat;
        background-origin: content-box;
        background-size: 18px;
        margin-top: 0.5rem;
        transition-property: background-color, color;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        /* min-width: 220px; */
        background-color: #57726A;
        color: #FFFFFF;
        box-shadow: 0px 5px 0px 0px #48635B;
    }

    #section2 .map-wrap .popup .title .popup_close_btn {
        width: 12px;
        height: 12px;
        background-image: url('../assets/img/svg/popup_close.svg');
        background-repeat: no-repeat;
        background-size: cover;
        cursor: pointer;
    }
}

#section2 .map-wrap .popup .button:hover {
    /* background-color: #CEFBED; */
    /* color: #41b091; */
    /* font-weight: 600; */
}

.green-back {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background-color: #9cdc73;
}

.dummy-island {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 201;
}

@keyframes moveUp {
    from {
        top: 0;
    }
    to {
        top: -20px;
    }
}

@keyframes moveDown {
    from {
        top: -20px;
    }
    to {
        top: 0;
    }
}

@keyframes boing2 {
    0%, 100% {
        top: 2rem;
    }
    50% {
        top: -2.2rem;
    }
}

.detail-section .section-inner {
    color: black;
    padding-bottom: 6%;
}

@media screen and (min-width: 1567px) {

    .detail-section .container {
        width: 70%;
        max-width: 100%;
    }

    .detail-section h1 {
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 700;
        font-size: 60px;
        margin-bottom: 22px;
    }

    .detail-section p {
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 300;
        font-size: 26px;
        line-height: 42px;
    }
}

@media screen and (min-width: 1367px) and (max-width: 1566px) {

    .detail-section .container {
        width: 70%;
        max-width: 100%;
    }

    .detail-section h1 {
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 700;
        font-size: 52px;
        margin-bottom: 20px;
    }

    .detail-section p {
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 300;
        font-size: 24px;
        line-height: 40px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {

    .detail-section .container {
        width: 79%;
        max-width: 100%;
    }

    .detail-section h1 {
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 700;
        font-size: 46px;
        margin-bottom: 18px;
    }

    .detail-section p {
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 300;
        font-size: 20px;
        line-height: 36px;
    }
}

@media screen and (max-width: 1024px) {

    .detail-section .container {
        width: 79%;
        max-width: 100%;
    }

    .detail-section h1 {
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 700;
        font-size: 38px;
        margin-bottom: 16px;
    }

    .detail-section p {
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        font-weight: 300;
        font-size: 16px;
        line-height: 28px;
    }
}

.detail-section .island {
    width: 100%;
}

.detail-section .col.text {
    display: flex;
    align-items: center;
}

.detail-section .long-btn {
    cursor: pointer;
    background-color: #52645f;
    border-radius: 20px;
    color: white;
    height: 4rem;
    width: 90%;
    padding: 5px 16px;
    margin-top: 40px;
}

.detail-section .long-btn:hover {
    /* box-shadow: rgba(206, 251, 237, 1) 0px 2px 8px 0px; */
}

.detail-section .long-btn div:first-child {
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    padding-left: 1rem;
}

.detail-section .long-btn div:last-child {
    display: flex;
    align-items: center;
    padding-right: 1rem;
}

.detail-section .long-btn img {
    height: 1.5rem;
}

.detail-section img.mouse-down {
    height: 5rem;
    position: absolute;
    bottom: 2rem;
    animation: boing .75s ease infinite;
}

.detail-section .bottom-bg {
    position: absolute;
    width: 100%;
    height: 200px;
    background-color: #F3F9F1;
    bottom: 0;
}

.top-bg {
    position: absolute;
    width: 100%;
    height: 140px;
    background: linear-gradient(#F3F9F1, #FFFFFF);
    top: 0;
    z-index: -1;
}

.panel-section .section-inner {
    color: black;
    width: 100%;
    justify-content: start;
    align-items: start;
}

.panel-container {
    width: 100%;
}

.panel-section h1 {
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 3rem;
}

@media screen and (min-width: 1367px) {
    .panel-title {
        font-size: 46px;
        margin-top: 150px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .panel-title {
        font-size: 40px;
        margin-top: 110px;
    }
}

@media screen and (max-width: 1024px) {
    .panel-title {
        font-size: 28px;
        margin-top: 140px;
    }

}

.panel-section .panel-row {
    text-align: center;
    max-width: 70.8%;
    margin: auto;
}

.panel-section .panel-row.panel-row5 {
    text-align: center;
    max-width: 89%;
    margin: auto;
}

.panel-section .panel-row.panel-row3 {
    text-align: center;
    max-width: 52.6%;
    margin: auto;
}

.panel-section .panel-row .col {
    /* margin-right: 1rem; */
}

.panel-section .panel-row .col:last-child {
    margin-right: 0;
}

.panel-section .panel-row .panel {
    width: 20%;
}

.panel-section .panel-row .panel img {
    width: 100%;
}

.pv-watch-btn {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: 12%;
    top: -63.6%;
    left: 5px;
}

.section.active .ani-01 {
    animation: fadeUp 1s 1s both;
}

.section.active .ani-02 {
    animation: fadeUp 1s 1.5s both;
}

.section.active .ani-03 {
    animation: fadeUp 1s 2s both;
}

.section.active .ani-04 {
    animation: fadeUp 1s 2.5s both;
}

.section.active .ani-05 {
    animation: fadeUp 1s 3s both;
}


div#preloaded-images {
    position: absolute;
    overflow: hidden;
    left: -9999px;
    top: -9999px;
    height: 1px;
    width: 1px;
}


.vline {
    position: fixed;
    left: 50%;
    right: 50%;
    top: 0;
    bottom: 0;
    border: 1px solid red;
    opacity: 0.3;
    z-index: 999999;
}

.hline {
    position: fixed;
    top: 50%;
    bottom: 50%;
    left: 0;
    right: 0;
    border: 1px solid red;
    opacity: 0.3;
    z-index: 999999;
}


.fw-800 {
    font-weight: 800;
}

.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

.fw-200 {
    font-weight: 200;
}

.fw-100 {
    font-weight: 100;
}


/* calc */
.calc-section {
    width: 1360px;
    margin: auto;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
}

.calc-title {
    margin-top: 70px;
    width: 100%;
    height: 70px;
    /* background-color: #FAFAFA; */
}

.calc-title-text {
    display: inline;
}

.calc-title-btn {
    margin-right: 45px;
    margin-left: -45px;
}


.calc-title-p3 {
    width: fit-content;
    margin: auto;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
}

.calc-body {
    margin-top: 0px;
}

.calc-nav {
    /* border-radius: 10px;
  border: 3px solid #A7A7A7; */
    height: 785px;
}

.calc-nav ul li {
    height: 100px;
    border: 1px solid #EDEDED;
    border-top: 0;
    padding: 15px;
}

.calc-nav-top-item {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-top: 1px solid #EDEDED !important;
}

.calc-nav-bottom-item {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom: 1px solid #EDEDED !important;
}

.selected-menu {
    border: 3px solid #A7A7A7 !important;
}

.calc-nav-menu-title {
    font-size: 16px;
}

.calc-nav-menu-cost-label {
    color: #848484;
    font-size: 12px;
    letter-spacing: -0.03em;
}

.calc-nav-menu-cost {
    color: #444444;
    font-size: 18px;
}

.calc-nav-menu-btn-pre {
    width: 66px;
    height: 30px;
    background-color: #F3F3F3;
    border: 0;
    border-radius: 6px;
    color: #B3B3B3;
    font-size: 13px;
    line-height: 18px;
}

.calc-nav-menu-btn-in {
    width: 66px;
    height: 30px;
    background-color: #52645F;
    /* border: 1px solid #ADADAD; */
    border: 0;
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 18px;
}

.calc-nav-menu-btn-epl {
    width: 66px;
    height: 30px;
    background-color: #FFFFFF;
    border: 1px solid #EDEDED;
    border-radius: 6px;
    color: #454545;
    font-size: 13px;
    line-height: 18px;
}

.calc-nav-menu-content {
    margin-top: 15px;
}

.calc-final-cost-board {
    margin-top: 10px;
    width: 100%;
    height: 69px;
    padding: 20px;
    border: 1px solid #7BBF50;
    border-radius: 16px;
    background-color: #F7FBF2;
}

.calc-final-cost-label {
    font-family: Pretendard;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0;
}

.calc-final-cost-unit {
    font-family: Pretendard;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;

}

.calc-final-cost {
    font-family: Pretendard;
    font-weight: 800;
    font-size: 24px;
    line-height: 100%;
}

.calc-result-board {
    border-radius: 16px;
    border: 1px solid #4DA1E7;
}

.calc-result-title {
    font-size: 20px;
}

.calc-result-info {
    margin-left: 10px;
    border: 0.79px solid #E7E7E7;
    border-radius: 18px;
    color: #383838;
    background-color: #FBC776;
    font-size: 12px;
    line-height: 19px;
    padding: 0 10px;
}

.calc-result-reset {
    margin-left: 10px;
    border: 0.79px solid #E7E7E7;
    border-radius: 18px;
    color: #383838;
    background-color: #FBC776;
    font-size: 12px;
    line-height: 19px;
    padding: 0 10px;
    cursor: pointer;
}

.calc-result-content {
    background-color: #F8F8F8;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}

.calc-result-content-p1 {
    font-size: 16px;
    color: #52645F;
}

.calc-result-content-span {
    font-size: 13px;
}

.calc-result-content-p2 {
    font-size: 14px;
    color: #2B2B2B;
    margin-top: 20px;
}

.calc-result-content-p3 {
    font-size: 24px;
    color: #141414;
    margin-top: 15px;
}

.calc-result-content-select {
    width: 94px;
    height: 36px;
    justify-content: space-between;
    border-width: 1px;
    border-radius: 10px;
    padding: 0px 5px;
    border: 1px solid #D9D9D9;
    font-weight: 600;
    font-size: 14px;
    color: #3A3A3A;
}

.calc-result-content-btn {
    width: 80px;
    height: 36px;
    gap: 10px;
    border-radius: 10px;
    font-size: 14px;
    color: #FBFBFB;
    background-color: #52645F;
    line-height: 24px;
    border: 0;
    margin-left: 10px;
}

.calc-question {
    width: 100%;
}

.calc-question > table {
    width: 100%;
    margin-top: 20px;
}

.calc-question > table > thead {
    height: 40px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #5E5E5E;
}

.calc-question > table > tbody > tr {
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #5E5E5E;
}

.calc-question > table > tbody > tr > th {
    height: 40px;
    font-weight: 700;
    font-size: 14px;
    color: #494949;
    background-color: #F7FBF2;
}

.calc-question > table > tbody > tr > th:first-of-type {
    padding-left: 15px;
}

.question-type-header {
    border-top: 2px solid #C3E3AE;
}

.calc-question > table > tbody > tr > td {
    height: 47px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    color: #5E5E5E;
    border-bottom: 1px dashed #EAEAEA;
}

.calc-question > table > tbody > tr > td:nth-child(1) {
    padding-left: 15px;
}

.q-sub-contents {
    font-size: 12px;
}

.disabled {
    background-color: #F1F1F1;
    border: 1px solid #D9D9D9;
    color: #797979;
}


.calc-complete-btn {
    width: 230px;
    height: 56px;
    gap: 10px;
    border-radius: 20px;
    padding-top: 16px;
    padding-right: 40px;
    padding-bottom: 16px;
    padding-left: 40px;
    background-color: #4E4E4E;
    color: #FCFCFC;
    border: 0;
    margin-right: 0.5rem;
    margin-left: auto;
}

.calc-next-btn {
    width: 230px;
    height: 56px;
    gap: 10px;
    border-radius: 20px;
    padding-top: 16px;
    padding-right: 40px;
    padding-bottom: 16px;
    padding-left: 40px;
    background-color: #E9E9E9;
    color: #383838;
    border: 0;
}

.calc-footer {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Calc Footer Buttons - Figma Design */
.calc-footer-buttons {
    padding-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.calc-prev-btn {
    width: 230px;
    padding: 16px 40px;
    background: #E4F3FF;
    border-radius: 20px;
    border: none;
    color: #29588D;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-prev-btn:hover {
    background: #D0E8FF;
    transform: translateY(-2px);
}

.calc-prev-btn:active {
    transform: translateY(0);
}

.calc-complete-btn {
    width: 230px;
    padding: 16px 40px;
    background: #29588D;
    border-radius: 20px;
    border: none;
    color: #FCFCFC;
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-complete-btn:hover {
    background: #1F4468;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(41, 88, 141, 0.3);
}

.calc-complete-btn:active {
    transform: translateY(0);
}

.calc-next-btn {
    width: 230px;
    padding: 16px 40px;
    background: #E4F3FF;
    border-radius: 20px;
    border: none;
    color: #29588D;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-next-btn:hover {
    background: #D0E8FF;
    transform: translateY(-2px);
}

.calc-next-btn:active {
    transform: translateY(0);
}

.modal {
    position: absolute;
    display: none;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99999;
}

.modal_body {
    position: fixed;
    top: 50%;
    width: 760px;
    padding: 20px;
    text-align: center;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    transform: translateY(-50%);
    overflow-y: hidden;
}

.modal_table {
    overflow-y: scroll;
    padding: 20px 0;
}

.modal table {
    width: 100%;
    font-family: 'Pretendard';
    line-height: 1.2rem;
}

.modal table thead {
    border: 1px solid #DFDFDF;
    border-right: 0;
    border-left: 0;
}

.modal table thead tr th {
    background-color: #F8F8F8;
    padding: 10px 20px;
    font-size: 12px;
    min-width: 5rem;
    font-weight: 700;
}

.modal table tbody tr th {
    font-size: 13px;
    border-bottom: 1px solid #DFDFDF;
}

.modal table tbody tr td {
    text-align: start;
    font-size: 12px;
    padding: 20px;
    border-bottom: 1px solid #DFDFDF;
}

.modal table tbody tr td p {
    color: #818181;
}

.modal_score {
    font-size: 12px;
    font-weight: 400;
}

.modal_level {
    font-size: 14px;
}

.modal_def_title {
    margin-bottom: 2px;
}

.modal_fac_title {
    font-weight: 500;
    color: #636363;
    background-color: #F8F8F8;
    border: 1px solid #E2E2E2;
    border-bottom: 0;
    border-top-right-radius: 0.5rem;
    border-top-left-radius: 0.5rem;
    padding-left: 8px;
    padding-right: 10px;
    width: fit-content;
}

.modal_fac_title img {
    margin-right: 3px;
}

.modal_fac_con {
    font-weight: 500;
    color: #494949;
    width: 100%;
    border: 1px solid #E2E2E2;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    padding: 6px 12px;
}

.modal_close_btn {
    display: inline;
    width: 18px;
    height: 18px;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
}

.modal_title {
    /* margin-bottom: 20px; */
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

#modal_menu_title {
    width: fit-content;
    font-size: 18px;
}


.calc-result {
    width: 100%;
    max-width: 1350px;
    margin: auto;
}


.calc-result table {
    width: 100%;
    margin-top: 20px;
    border-collapse: separate;
    border-spacing: 0;
}

.calc-result table thead {
    height: 40px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #5E5E5E;
}

.calc-result table thead tr {
    height: 40px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #5E5E5E;
}

.calc-result table thead tr.bg th {
    height: 40px;
    font-weight: 700;
    font-size: 14px;
    color: #2b2b2b;
    background-color: #E4F3FF;
    border-top: 1px solid #95C9F5;
}

.calc-result table thead tr th {
    height: 45px;
    font-weight: 600;
    font-size: 14px;
    color: #52645F;
    background: none;
    border: none;
    padding: 0 26px;
}

.calc-result table th.border-left {
    border-left: 1px solid #e8f7de;
}

.calc-result table tbody tr {
    text-align: left;
    font-weight: 400;
    font-size: 14px;
    color: #494949;
    height: 40px;
}

.calc-result table tbody tr td {
    height: 40px;
    padding: 0 26px;
}

/* .calc-result table tbody tr.disabled {
  color: #CACACA;
  background: none;
  border: none;
} */

.calc-result-category-title {
    background-color: #fff;
    border: 2px solid #FFDBB2;
    height: 40px;
    text-align: center;
    border-radius: 12px;
    margin-top: 12px;
    margin-bottom: 12px;
    color: #F58300;
    width: 180px;
}

.calc-result table tbody tr.category-header td.ender-first {
    width: 290px;
}

.calc-result table tbody tr.category-header {
    height: 50px;
    font-weight: 600;
    font-size: 16px;
}

.calc-result table tbody tr.category-header td {
    background-color: #FFF5E5;
    border-top: 1px solid #ffcb7a;
    /* border-bottom: 1px solid #ffcb7a; */
}

.calc-result table tbody tr.category-header td:first-child {
    border-top-left-radius: 16px;
    /* border-bottom-left-radius: 25px; */
    border-left: 1px solid #ffcb7a;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.calc-result table tbody tr.category-header td:last-child {
    border-top-right-radius: 16px;
    /* border-bottom-right-radius: 25px; */
    border-right: 1px solid #ffcb7a;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
}

.calc-result table tbody tr.category-header td.bg-bold {
    background-color: #ffcb7a;
}

.calc-result table tbody tr.category-header td.ender-first {
    /* border-top-left-radius: 25px; */
    /* border-bottom-left-radius: 25px; */
    border-top-right-radius: 0;
    border-bottom-left-radius: 16px;
    border-bottom: 1px solid #ffcb7a;
}

.calc-result table tbody tr.category-header td.ender-last {
    /* border-top-right-radius: 25px; */
    /* border-bottom-right-radius: 25px; */
    border-top-left-radius: 0;
    border-bottom-right-radius: 16px;
    border-bottom: 1px solid #ffcb7a;
}

.calc-result table tbody tr.category-header td.ender {
    /* border-top-right-radius: 25px; */
    /* border-bottom-right-radius: 25px; */
    border-bottom: 1px solid #ffcb7a;
}

.calc-result table tbody tr.td-essential td {
    background-color: #FFF5E5;
    /* border-top: 1px solid #ffcb7a; */
    /* border-bottom: 1px solid #ffcb7a; */
}

.calc-result table tbody tr.td-essential td:first-child {
    /* border-top-left-radius: 25px; */
    /* border-bottom-left-radius: 25px; */
    border-left: 1px solid #ffcb7a;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
}

.calc-result table tbody tr.td-essential td:last-child {
    /* border-top-right-radius: 25px; */
    /* border-bottom-right-radius: 25px; */
    border-right: 1px solid #ffcb7a;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: none;
}

.calc-result table tbody tr.td-essential td.ender-first {
    /* border-top-left-radius: 25px; */
    /* border-bottom-left-radius: 25px; */
    border-top-right-radius: 0;
    border-bottom-left-radius: 16px;
    border-bottom: 1px solid #ffcb7a;
}

.calc-result table tbody tr.td-essential td.ender-last {
    /* border-top-right-radius: 25px; */
    /* border-bottom-right-radius: 25px; */
    border-top-left-radius: 0;
    border-bottom-right-radius: 16px;
    border-bottom: 1px solid #ffcb7a;
}

.calc-result table tbody tr.td-essential td.ender {
    /* border-top-right-radius: 25px; */
    /* border-bottom-right-radius: 25px; */
    border-bottom: 1px solid #ffcb7a;
}

.calc-result table tbody tr.even td {
    background-color: #FFFFFF !important;
    /*border-top: 1px solid #ffcb7a;*/
    /* border-bottom: 1px solid #ffcb7a; */
}

/* 섹션 제목 래퍼 */
.section-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

/* 섹션 제목 텍스트 */
.section-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.19em;
    color: #161616;
}

/* 섹션 구분선 */
.section-divider {
    width: 100%;
    height: 2px;
    background-color: #959595;
}

/* 카테고리 배지 스타일 (주황색 테두리 박스) */
.calc-result-category-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 14px;
    background: #FFFFFF;
    border: 2px solid #FFDBB2;
    border-radius: 12px;
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.19em;
    color: #F58300;
}

/* 서브 정보 텍스트 (교육일수/교육인원) */
.calc-result-sub-info {
    font-size: 14px;
    color: #666666;
    margin-top: 4px;
}

/* 비활성화된 행 */
.calc-result table tbody tr.disabled td {
    /*color: #999999;*/
}

/* 운영지원/사전진단 섹션 - 세 번째 컬럼 배경 없음 */
#operation-support-tbody td:nth-child(3),
#prediagnosis-tbody td:nth-child(3) {
    /*background-color: transparent !important;*/
}

.to-home-btn {
    width: 230px;
    height: 56px;
    gap: 10px;
    border-radius: 20px;
    padding-top: 16px;
    padding-right: 40px;
    padding-bottom: 16px;
    padding-left: 40px;
    background-color: #E4F3FF;
    color: #29588D;
    border: 0;
    margin-right: 0.5rem;
    /* margin-left: auto; */
    font-size: 20px;
    font-weight: 700;
}

.save-btn {
    width: 230px;
    height: 56px;
    gap: 10px;
    border-radius: 20px;
    padding-top: 16px;
    padding-right: 40px;
    padding-bottom: 16px;
    padding-left: 40px;
    background-color: #29588D;
    color: #FCFCFC;
    border: 0;
    margin-right: 0.5rem;
    /* margin-left: auto; */
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}


@media screen and (min-width: 1700px) {
    .calc-intro-box-img {
        width: 100px;
    }

    .calc-title-p1 {
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        width: fit-content;
        margin: auto;
        font-size: 28px;
        line-height: 100%;
    }

    .calc-title-p2 {
        width: fit-content;
        margin: auto;
        font-size: 22px;
        line-height: 32px;
    }

    .calc-intro-form-label {
        width: 100%;
        color: #52645F;
        font-size: 20px;
        font-weight: 600;
    }

    .calc-intro-form::placeholder {
        font-weight: 700;
        font-size: 22px;
        color: #E0E0E0;
        text-align: center;
    }

    .calc-intro-form-btn {
        width: calc(100% - 12px);
        height: 56px;
        border-radius: 20px;
        margin: 5px;
        border: 0;
        font-size: 20px;
        font-weight: 700;
    }
}

@media screen and (max-width: 1699px) and (min-width: 1200px) {
    .calc-intro-box-img {
        width: 90px;
    }

    .calc-title-p1 {
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        width: fit-content;
        margin: auto;
        font-size: 26px;
        line-height: 100%;
    }

    .calc-title-p2 {
        width: fit-content;
        margin: auto;
        font-size: 20px;
        line-height: 32px;
    }

    .calc-intro-form-label {
        width: 100%;
        color: #52645F;
        font-size: 18px;
        font-weight: 600;
    }

    .calc-intro-form::placeholder {
        font-weight: 700;
        font-size: 20px;
        color: #E0E0E0;
        text-align: center;
    }

    .calc-intro-form-btn {
        width: calc(100% - 12px);
        height: 56px;
        border-radius: 20px;
        margin: 5px;
        border: 0;
        font-size: 18px;
        font-weight: 700;
    }
}

@media screen and (max-width: 1199px) {
    .calc-intro-box-img {
        width: 70px;
    }

    .calc-title-p1 {
        font-family: "Pretendard Variable", Pretendard, sans-serif;
        width: fit-content;
        margin: auto;
        font-size: 24px;
        line-height: 100%;
    }

    .calc-title-p2 {
        width: fit-content;
        margin: auto;
        font-size: 20px;
        line-height: 32px;
    }

    .calc-intro-form-label {
        width: 100%;
        color: #52645F;
        font-size: 16px;
        font-weight: 600;
    }

    .calc-intro-form::placeholder {
        font-weight: 700;
        font-size: 18px;
        color: #E0E0E0;
        text-align: center;
    }

    .calc-intro-form-btn {
        width: calc(100% - 12px);
        height: 56px;
        border-radius: 20px;
        margin: 5px;
        border: 0;
        font-size: 18px;
        font-weight: 700;
    }
}

.calc-intro-box {
    border: 1px solid #7BBF50;
    border-radius: 20px;
    padding: 24px;
    margin: 15px;
}

.calc-intro-img {
    height: 175px;
    width: auto;
    margin-bottom: 40px;
}

.calc-intro-btn {
    width: 383px;
    padding: 14px 0;
    cursor: pointer;
    background-color: #52645F;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    border-radius: 14px;
}

.calc-intro-footer {
    margin-top: 62px;
}

.calc-intro-footer-img {
    width: 1086px;
    height: 202px;
}

@media screen and (min-width: 1200px) {
    .calc-intro-form-container {
        width: 888px;
        background-color: #FAFDFF;
        border: 6px solid #EEF7FF;
        border-radius: 20px;
        padding-top: 46px;
        padding-right: 253px;
        padding-bottom: 50px;
        padding-left: 253px;
    }
}

@media screen and (max-width: 1199px) {
    .calc-intro-form-container {
        width: 600px;
        background-color: #FAFDFF;
        border: 6px solid #EEF7FF;
        border-radius: 20px;
        padding-top: 40px;
        padding-right: 107px;
        padding-bottom: 44px;
        padding-left: 107px;
    }
}


.calc-intro-form {
    width: 100%;
    border: 1px solid #4DA1E7;
    border-radius: 14px;
    height: 57px;
    margin-top: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 22px;
}

.calc-intro-form:focus {
    outline: none;
}

.calc-intro-form-btn-container {
    width: 100%;
    margin-top: 10px;
}

@media screen and (min-width: 1367px) {

    .start-demo-btn {
        background-color: #DCE7E4;
        /* padding: 20px 113px; */
        color: #52645F;
        font-weight: 700;
        font-size: 26px;
        border: 0;
        border-radius: 20px;
        margin-right: 15px;
        width: 485px;
        height: 70px;
    }

    .start-calc-btn {
        background-color: #52645F;
        /* padding: 20px 113px; */
        color: #FCFCFC;
        font-weight: 700;
        font-size: 26px;
        border: 0;
        border-radius: 20px;
        margin-left: 15px;
        width: 485px;
        height: 70px;
    }

    .start-demo-btn img {
        width: 28px;
        height: 28px;
        margin-right: 10px;
    }

    .start-calc-btn img {
        width: 28px;
        height: 28px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 1366px) {

    .start-demo-btn {
        background-color: #DCE7E4;
        color: #52645F;
        font-weight: 700;
        font-size: 19px;
        border: 0;
        border-radius: 20px;
        margin-right: 15px;
        width: 357px;
        height: 52px;
    }

    .start-calc-btn {
        background-color: #52645F;
        /* padding: 20px 113px; */
        width: 332px;
        color: #FCFCFC;
        font-weight: 700;
        font-size: 19px;
        border: 0;
        border-radius: 20px;
        margin-left: 15px;
        width: 357px;
        height: 52px;
    }

    .start-demo-btn img {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }

    .start-calc-btn img {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }
}

@media screen and (min-width: 1367px) {
    .pv-title {
        font-weight: 700;
        font-size: 46px;
        line-height: 100%;
        margin-bottom: 60px;
    }

    .pv-video {
        width: 1096px;
        height: 628px;
        border-radius: 20px;
        overflow: hidden;
        border: none;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .pv-title {
        font-weight: 700;
        font-size: 32px;
        line-height: 100%;
        margin-bottom: 40px;
    }

    .pv-video {
        width: 800px;
        height: 447px;
        border-radius: 20px;
        overflow: hidden;
        border: none;
    }
}

@media screen and (max-width: 1024px) {
    .pv-title {
        font-weight: 700;
        font-size: 28px;
        line-height: 100%;
        margin-bottom: 40px;
    }

    .pv-video {
        width: 800px;
        height: 447px;
        border-radius: 20px;
        overflow: hidden;
        border: none;
    }
}

.tech-desc {
    width: 100%;
}

/*
@media screen and (min-width: 1337px) {

  .tech-desc-title {
    font-size: 60px !important;
    text-align: start;
  }

  .tech-desc-contents {
    font-size: 26px !important;
    text-align: start;
    line-height: 42px !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1336px) {

  .tech-desc-title {
    font-size: 46px !important;
    text-align: start;
  }

  .tech-desc-contents {
    font-size: 20px !important;
    text-align: start;
    line-height: 36px !important;
  }
}

@media screen and (max-width: 1024px) {

  .tech-desc-title {
    font-size: 38px !important;
    text-align: start;
  }

  .tech-desc-contents {
    font-size: 16px !important;
    text-align: start;
    line-height: 27px!important;
  }
} */


/* 해상도 구간별로 원본 비디오는 contain, 백플레이트 이미지는 cover를 유지한다 */
@media screen and (min-width: 1700px) {
    video.pv-video-full {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 1;
        object-fit: contain;
        object-position: center center;
    }

    img.pv-video-full {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 0;
        object-fit: cover;
        object-position: center center;
    }
}

@media screen and (max-width: 1699px) and (min-width: 1460px) {
    video.pv-video-full {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 1;
        object-fit: contain;
        object-position: center center;
    }

    img.pv-video-full {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 0;
        object-fit: cover;
        object-position: center center;
    }
}

@media screen and (max-width: 1459px) and (min-width: 1200px) {
    video.pv-video-full {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 1;
        object-fit: contain;
        object-position: center center;
    }

    img.pv-video-full {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 0;
        object-fit: cover;
        object-position: center center;
    }
}

@media screen and (max-width: 1199px) and (min-width: 1025px) {
    video.pv-video-full {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 1;
        object-fit: contain;
        object-position: center center;
    }

    img.pv-video-full {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 0;
        object-fit: cover;
        object-position: center center;
    }
}

@media screen and (max-width: 1024px) {
    video.pv-video-full {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 1;
        object-fit: contain;
        object-position: center center;
    }

    img.pv-video-full {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 0;
        object-fit: cover;
        object-position: center center;
    }
}

/* 상세 이동 CTA는 비디오 위에 고정 배치한다 */
.button-container {
    position: absolute;
    z-index: 3;
    right: clamp(12px, 1.6vw, 32px);
    bottom: clamp(12px, 1.6vw, 32px);
    display: flex;
    gap: 12px;
}

@media screen and (max-width: 1199px) {
    .button-container {
        left: 50%;
        right: auto;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 18px);
        transform: translateX(-50%);
        justify-content: center;
    }
}

.action-button {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 6px;
    height: clamp(36px, 2vw, 44px);
    padding-left: clamp(10px, 1.2vw, 16px); /* 좁게 */
    padding-right: clamp(14px, 2vw, 24px); /* 넓게 */
    background-color: #29588D;
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: clamp(12px, 0.9vw, 14px);
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background-color 0.2s ease;
}

.icon {
    font-size: clamp(18px, 1.4vw, 22px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tech-desc {
    margin: auto;
}

@media screen and (min-width: 1460px) {
    .pv-modal-bg {
        position: absolute;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 99999;
        padding: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 1459px) and (min-width: 1200px) {
    .pv-modal-bg {
        position: absolute;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 99999;
        padding: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 1199px) and (min-width: 1025px) {
    .pv-modal-bg {
        position: absolute;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 99999;
        padding: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 1024px) {
    .pv-modal-bg {
        position: absolute;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 99999;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.pv-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

/* 모달 내용 스타일 */
/*.pv-modal-contents {*/
/*  background-color: #fefefe; !* 흰색 배경 *!*/
/*  margin: 6% auto; !* 위/아래 5%, 좌우 자동 마진 (가운데 정렬) *!*/
/*  padding: 20px;*/
/*  border: 1px solid #888;*/
/*  width: 80%; !* 너비 *!*/
/*  max-width: 1080px; !* 최대 너비 *!*/
/*  position: relative; !* 닫기 버튼 위치 기준 *!*/
/*  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);*/
/*  animation-name: animatetop;*/
/*  animation-duration: 0.4s;*/
/*  border-radius: 16px;*/
/*}*/
/* 모달 내용 스타일 */
.pv-modal-contents {
    margin: 0 auto; /* 위/아래 5%, 좌우 자동 마진 (가운데 정렬) */
    padding: 20px;
    background: #fff;
    border: 1px solid #888;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    width: 100%;
    max-width: 1200px;
    max-height: 100%;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
}

/* 모달 열릴 때 애니메이션 */
@keyframes animatetop {
    from {
        opacity: 0.3
    }
    to {
        opacity: 1
    }
}

/* 닫기 버튼 스타일 */
/*.close-btn {*/
/*    color: #aaa;*/
/*    position: absolute; !* 모달 내용 기준으로 위치 지정 *!*/
/*    top: 25px;*/
/*    right: 30px;*/
/*    height: 18px;*/
/*    width: 18px;*/
/*    line-height: 1; !* 라인 높이 조정 *!*/
/*    background-image: url("../assets/img/svg/pv-close.svg");*/
/*    background-size: cover;*/
/*}*/
.pv-modal-header .close-btn {
    height: 18px;
    width: 18px;
    line-height: 1; /* 라인 높이 조정 */
    background-image: url("../assets/img/svg/pv-close.svg");
    background-size: cover;
    background-color: #fff;
    border: none;
    /*font-size: 1.5rem;*/
    cursor: pointer;
    user-select: none;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.pv-modal-contents p {
    font-weight: 600;
    font-size: 1.25rem;
    color: #2B2B2B;
    /* margin-top: 20px; */
}

.pv-modal-header .title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #2B2B2B;
    /* margin-top: 20px; */
}

.pv-modal-video-wrapper {
    /*height: calc(90vh - 50px);*/
    /* margin-top: 20px; */
    /* margin-bottom: 30px; */
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* 비디오 스타일 */
/*#modalVideo {*/
/*    display: block; !* 너비 100% 적용 위해 *!*/
/*    margin-top: 15px;*/
/*}*/
/* 비디오 스타일 */
#modalVideo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

/* 버튼 기본 스타일 */
#openModalBtn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.no-disp {
    display: none;
}


/* 핵심 기술 소개 패널 */
.v-card-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 3rem !important;
}

.v-card {
    width: 310px;
    border-radius: 20px;
    height: 498px;
    -webkit-box-shadow: 0px 4px 10px 0px #0000001A;
    -moz-box-shadow: 0px 4px 10px 0px #0000001A;
    box-shadow: 0px 4px 10px 0px #0000001A;
}

.v-card .video {
    width: 310px;
    position: relative;
    padding: 0;
    height: 240px;
}

.v-card .video video {
    width: 100%;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    object-fit: cover;
    height: 100%;
}

.v-card .video .play-overlay {
    position: absolute;
    background: #1E568E63;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.v-card .text {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    padding-top: 38px;
}

.v-card .text h1 {
    margin: 0 auto;
    font-weight: 600;
    font-size: 28px;
}

.v-card .text h3 {
    margin: 0 auto;
    font-weight: 400;
    font-size: 24px;
    margin-top: 28px;
}

.v-card .text img {
    margin-top: 40px;
}


/* before/after 비교 슬라이더는 두 이미지를 같은 좌표계에 겹쳐 둔다 */
.comparisonSection {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%; /* to maintain aspect ratio (responsive!) */
}

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

.comparisonSection .afterImage {
    position: absolute;
    overflow: hidden;
    inset: 0;
    transform: translate(100%, 0px);
}

.comparisonSection .afterImage img {
    transform: translate(-100%, 0px);
}

.comparisonImage img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}


.fp-tableCell {
    position: relative
}

.slide .slide-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.slide .slide-full.slider .afterImage {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    transform: translate(100%, 0px);
}

.slide .slide-full.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}

.slide-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 1700px) {
    .slide-content .row {
        /* border: 1px solid red;
    background-color: rgba(255,255,255,0.9); */
        max-width: 1440px;
        /*height: 460px;*/
        /*margin-top: -55px;*/
        align-items: center !important;
    }

    .slide-content .left {
        min-width: 540px;
        height: 460px;
        width: 540px;
        max-width: 540px;
        position: relative;
        padding: 0;
    }

    .slide-content .right {
        /*padding: 25px;*/
        margin-left: 100px;
        padding: 0;
        min-width: 800px;
    }

    .slide-content h5 {
        color: #999;
        font-family: Pretendard;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0;
    }

    .slide-content h2 {
        color: #29588d;
        font-weight: 700;
        font-size: 50px;
        line-height: 1.193359375em;
        letter-spacing: -0.02em;
        margin: 0;
    }

    html:lang(en) .slide-content h2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    html:lang(ko) .slide-content h2 {
        position: relative;
        white-space: nowrap;
    }

    .slide-content h2 span {
        color: #2E3D4E;
        background-color: #D2E5FA;
        padding: 10px 16px;
        font-size: 18px;
        font-weight: 500;
        border-radius: 21px;
        display: inline-block;
        margin-top: 15px;
        line-height: 1.2;
        height: auto;
    }

    html:lang(en) .slide-content h2 span {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    html:lang(ko) .slide-content h2 span {
        display: inline-block;
        margin-left: 18px;
        margin-top: 0;
        white-space: nowrap;
        flex-shrink: 0;
        vertical-align: middle;
        line-height: 1.2;
        height: auto;
    }

    .slide-content hr {
        border-color: #A5C4E6;
        border-width: 4px;
        width: 50px;
        margin: 0;
    }

    .slide-content h4 {
        color: #2a2a2a;
        font-weight: 300;
        font-size: 22px;
        line-height: 1.636em;
        max-width: 566px;
        margin: 0;
    }

    .slide-content h4 p {
        font-size: 15px;
        margin-top: 16px;
    }

    .slide-content h4 p .blue {
        color: #29588D;
        font-weight: 600;
        margin-right: 10px;
    }


    .slide-content .slide-content-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .slide-content .slide-content-top {
        display: flex;
        flex-direction: column;
        gap: 26px;
    }

    .slide-content .slide-tag-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6.19px;
    }

    .slide-content .slide-title-section {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .slide-content .slide-cta-section {
        display: flex;
    }

    .slide-content .btn-watch-video {
        cursor: pointer;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .slide-content .btn-watch-video-text {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 0;
        text-decoration: none;
    }

    .slide-content .btn-watch-video-text span {
        color: #29588D;
        font-family: Pretendard, sans-serif;
        font-weight: 400;
        font-size: 22px;
        line-height: 1.193359375em;
        letter-spacing: -0.02em;
    }

    .slide-content .btn-watch-video-text .btn-arrow {
        width: auto;
        height: auto;
        max-width: 192.2px;
        min-width: 0;
        margin-top: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .slide-content .btn-watch-video-text:hover span {
        opacity: 0.8;
    }

    .slide-content .right video {
        width: 100%;
        height: 100%;
        min-width: 800px;
        object-fit: cover;
        border-radius: 18px;
        -moz-box-shadow: 6px 6px 15.8px 0px #3350764D;
        -webkit-box-shadow: 6px 6px 15.8px 0 #3350764D;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }

    .slide-content .right img {
        width: 100%;
        height: 100%;
        min-width: 800px;
        /* min-width: 800px; */
        /* height: 410px; */
        object-fit: cover;
        border-radius: 18px;
        -moz-box-shadow: 6px 6px 15.8px 0px #3350764D;
        -webkit-box-shadow: 6px 6px 15.8px 0px #3350764D;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }
}

@media screen and (max-width: 1699px) and (min-width: 1460px) {
    .slide-content .row {
        /* border: 1px solid red;
    background-color: rgba(255,255,255,0.9); */
        max-width: 1250px;
        /*height: 460px;*/
        /*margin-top: -55px;*/
        align-items: center !important;
    }

    .slide-content .left {
        min-width: 500px;
        height: 450px;
        width: 500px;
        max-width: 500px;
        position: relative;
        padding: 0;
    }

    .slide-content .right {
        /*padding: 25px;*/
        margin-left: 50px;
        padding: 0;
    }

    .slide-content h5 {
        color: #999999;
        font-weight: 400;
        font-size: 18px;
    }

    .slide-content h2 {
        color: #29588d;
        font-weight: 700;
        font-size: 42px;
        margin-top: 18px;
        margin-bottom: 18px;
    }

    html:lang(en) .slide-content h2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    html:lang(ko) .slide-content h2 {
        position: relative;
        white-space: nowrap;
    }

    .slide-content h2 span {
        color: #2E3D4E;
        background-color: #D2E5FA;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 21px;
        display: inline-block;
        margin-top: 15px;
        line-height: 1.2;
        height: auto;
    }

    html:lang(en) .slide-content h2 span {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    html:lang(ko) .slide-content h2 span {
        display: inline-block;
        margin-left: 18px;
        margin-top: 0;
        white-space: nowrap;
        flex-shrink: 0;
        vertical-align: middle;
        line-height: 1.2;
        height: auto;
    }

    .slide-content hr {
        border-color: #A5C4E6;
        border-width: 4px;
        width: 50px;
        margin-bottom: 18px;
    }

    .slide-content h4 {
        color: #2a2a2a;
        font-weight: 300;
        font-size: 18px;
        line-height: 30px;
        max-width: 566px;
    }

    .slide-content h4 p {
        font-size: 14px;
        margin-top: 16px;
        line-height: 22px;
    }

    .slide-content h4 p .blue {
        color: #29588D;
        font-weight: 600;
        margin-right: 10px;
    }

    .slide-content .slide-content-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .slide-content .slide-content-top {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .slide-content .slide-tag-section {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6.19px;
    }

    .slide-content .slide-title-section {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .slide-content .slide-cta-section {
        display: flex;
    }

    .slide-content .btn-watch-video {
        cursor: pointer;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 170px;
    }

    .slide-content .btn-watch-video-text {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 0;
        text-decoration: none;
    }

    .slide-content .btn-watch-video-text span {
        color: #29588D;
        font-family: Pretendard, sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 1.193359375em;
        letter-spacing: -0.02em;
    }

    .slide-content .btn-watch-video-text .btn-arrow {
        width: auto;
        height: auto;
        max-width: 192.2px;
        min-width: 0;
        margin-top: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .slide-content .btn-watch-video-text:hover span {
        opacity: 0.8;
    }

    .slide-content .right video {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 18px;
        -moz-box-shadow: 6px 6px 15.8px 0px #3350764D;
        -webkit-box-shadow: 6px 6px 15.8px 0 #3350764D;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }

    .slide-content .right img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 18px;
        -moz-box-shadow: 6px 6px 15.8px 0px #3350764D;
        -webkit-box-shadow: 6px 6px 15.8px 0px #3350764D;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }
}

@media screen and (max-width: 1459px) and (min-width: 1200px) {
    .slide-content .row {
        /* border: 1px solid red;
    background-color: rgba(255,255,255,0.9); */
        max-width: 1050px;
        /*height: 460px;*/
        /*margin-top: -55px;*/
        align-items: center !important;
    }

    .slide-content .left {
        min-width: 400px;
        height: 400px;
        width: 400px;
        max-width: 400px;
        position: relative;
        padding: 0;
    }

    .slide-content .right {
        /*padding: 25px;*/
        margin-left: 50px;
        padding: 0;
    }

    .slide-content h5 {
        color: #999999;
        font-weight: 400;
        font-size: 16px;
    }

    .slide-content h2 {
        color: #29588d;
        font-weight: 700;
        font-size: 36px;
        margin-top: 18px;
        margin-bottom: 18px;
    }

    html:lang(en) .slide-content h2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    html:lang(ko) .slide-content h2 {
        position: relative;
        white-space: nowrap;
    }

    .slide-content h2 span {
        color: #2E3D4E;
        background-color: #D2E5FA;
        padding: 8px 14px;
        font-size: 12px;
        font-weight: 500;
        border-radius: 21px;
        display: inline-block;
        margin-top: 15px;
        line-height: 1.2;
        height: auto;
    }

    html:lang(en) .slide-content h2 span {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    html:lang(ko) .slide-content h2 span {
        display: inline-block;
        margin-left: 18px;
        margin-top: 0;
        white-space: nowrap;
        flex-shrink: 0;
        vertical-align: middle;
        line-height: 1.2;
        height: auto;
    }

    .slide-content hr {
        border-color: #A5C4E6;
        border-width: 4px;
        width: 50px;
        margin-bottom: 18px;
    }

    .slide-content h4 {
        color: #2a2a2a;
        font-weight: 300;
        font-size: 16px;
        line-height: 30px;
        max-width: 566px;
    }

    .slide-content h4 p {
        font-size: 14px;
        margin-top: 16px;
        line-height: 22px;
    }

    .slide-content h4 p .blue {
        color: #29588D;
        font-weight: 600;
        margin-right: 10px;
    }


    .slide-content .btn-watch-video {
        cursor: pointer;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 150px;
    }

    .slide-content .right video {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 18px;
        -moz-box-shadow: 6px 6px 15.8px 0px #3350764D;
        -webkit-box-shadow: 6px 6px 15.8px 0 #3350764D;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }

    .slide-content .right img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 18px;
        -moz-box-shadow: 6px 6px 15.8px 0px #3350764D;
        -webkit-box-shadow: 6px 6px 15.8px 0px #3350764D;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }
}

@media screen and (max-width: 1199px) and (min-width: 1025px) {
    .slide-content .row {
        /* border: 1px solid red;
    background-color: rgba(255,255,255,0.9); */
        max-width: 900px;
        /*height: 460px;*/
        /*margin-top: -55px;*/
        align-items: center !important;
    }

    .slide-content .left {
        min-width: 360px;
        height: 360px;
        width: 360px;
        max-width: 360px;
        position: relative;
        padding: 0;
    }

    .slide-content .right {
        /*padding: 25px;*/
        margin-left: 40px;
        padding: 0;
    }

    .slide-content h5 {
        color: #999999;
        font-weight: 400;
        font-size: 14px;
    }

    .slide-content h2 {
        color: #29588d;
        font-weight: 700;
        font-size: 34px;
        margin-top: 18px;
        margin-bottom: 18px;
    }

    html:lang(en) .slide-content h2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    html:lang(ko) .slide-content h2 {
        position: relative;
        white-space: nowrap;
    }

    .slide-content h2 span {
        color: #2E3D4E;
        background-color: #D2E5FA;
        padding: 8px 14px;
        font-size: 12px;
        font-weight: 500;
        border-radius: 21px;
        display: inline-block;
        margin-top: 15px;
        line-height: 1.2;
        height: auto;
    }

    html:lang(en) .slide-content h2 span {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    html:lang(ko) .slide-content h2 span {
        display: inline-block;
        margin-left: 18px;
        margin-top: 0;
        white-space: nowrap;
        flex-shrink: 0;
        vertical-align: middle;
        line-height: 1.2;
        height: auto;
    }

    .slide-content hr {
        border-color: #A5C4E6;
        border-width: 4px;
        width: 50px;
        margin-bottom: 18px;
    }

    .slide-content h4 {
        color: #2a2a2a;
        font-weight: 300;
        font-size: 16px;
        line-height: 30px;
        max-width: 566px;
    }

    .slide-content h4 p {
        font-size: 14px;
        margin-top: 16px;
        line-height: 22px;
    }

    .slide-content h4 p .blue {
        color: #29588D;
        font-weight: 600;
        margin-right: 10px;
    }


    .slide-content .btn-watch-video {
        cursor: pointer;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 150px;
    }

    .slide-content .right video {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 18px;
        -moz-box-shadow: 6px 6px 15.8px 0px #3350764D;
        -webkit-box-shadow: 6px 6px 15.8px 0 #3350764D;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }

    .slide-content .right img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 18px;
        -moz-box-shadow: 6px 6px 15.8px 0px #3350764D;
        -webkit-box-shadow: 6px 6px 15.8px 0px #3350764D;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }
}

@media screen and (max-width: 1024px) {
    .slide-content .row {
        /* border: 1px solid red;
    background-color: rgba(255,255,255,0.9); */
        max-width: 900px;
        /*height: 460px;*/
        /*margin-top: -55px;*/
        align-items: center !important;
        flex-direction: column-reverse;
    }

    .slide-content .left {
        min-width: 500px;
        min-height: 360px;
        height: 360px;
        width: 500px;
        max-width: 360px;
        position: relative;
        padding: 0;
        margin-top: 25px;
    }

    .slide-content .right {
        /*padding: 25px;*/
        /*margin-left: 40px;*/
        padding: 0;
        width: 100%;
    }

    .slide-content h5 {
        color: #999999;
        font-weight: 400;
        font-size: 14px;
    }

    .slide-content h2 {
        color: #29588d;
        font-weight: 700;
        font-size: 34px;
        margin-top: 18px;
        margin-bottom: 18px;
    }

    html:lang(en) .slide-content h2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    html:lang(ko) .slide-content h2 {
        position: relative;
        white-space: nowrap;
    }

    .slide-content h2 span {
        color: #2E3D4E;
        background-color: #D2E5FA;
        padding: 8px 14px;
        font-size: 12px;
        font-weight: 500;
        border-radius: 21px;
        display: inline-block;
        margin-top: 15px;
        line-height: 1.2;
        height: auto;
    }

    html:lang(en) .slide-content h2 span {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    html:lang(ko) .slide-content h2 span {
        display: inline-block;
        margin-left: 18px;
        margin-top: 0;
        white-space: nowrap;
        flex-shrink: 0;
        vertical-align: middle;
        line-height: 1.2;
        height: auto;
    }

    .slide-content hr {
        border-color: #A5C4E6;
        border-width: 4px;
        width: 50px;
        margin-bottom: 18px;
    }

    .slide-content h4 {
        color: #2a2a2a;
        font-weight: 300;
        font-size: 16px;
        line-height: 30px;
        max-width: 566px;
    }

    .slide-content h4 p {
        font-size: 14px;
        margin-top: 16px;
        line-height: 22px;
    }

    .slide-content h4 p .blue {
        color: #29588D;
        font-weight: 600;
        margin-right: 10px;
    }


    .slide-content .btn-watch-video {
        cursor: pointer;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 150px;
    }

    .slide-content .right video {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 18px;
        -moz-box-shadow: 6px 6px 15.8px 0px #3350764D;
        -webkit-box-shadow: 6px 6px 15.8px 0 #3350764D;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }

    .slide-content .right img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 18px;
        -moz-box-shadow: 6px 6px 15.8px 0px #3350764D;
        -webkit-box-shadow: 6px 6px 15.8px 0px #3350764D;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }
}

@media screen and (min-width: 1700px) {
    .section .bottom-bar {
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: #29588D;
        height: 80px;
        width: 100%;
        margin: 0;
        padding: 0;
        z-index: 10;
        display: flex;
        align-items: center;
        padding-left: 30px;
        margin-top: 8px;
    }

    .section .bottom-bar .btn-scroll-down {
        /* height: 50px; */
    }

    .section .bottom-bar .buttons {
        position: absolute;
        right: 30px;
    }

    .section .bottom-bar .buttons .gap-line {
        margin: 0 20px;
    }

    .fp-controlArrow.fp-prev {
        /* border-color: transparent rgba(0, 0, 0, 0.3) transparent transparent; */
        border-color: transparent transparent transparent transparent;
    }

    .fp-controlArrow.fp-next {
        /* border-color: transparent transparent transparent rgba(0, 0, 0, 0.3); */
        border-color: transparent transparent transparent transparent;
    }

    .handle-left {
        display: none;
    }

    .handle-right {
        display: none;
    }
}

@media screen and (max-width: 1699px) and (min-width: 1460px) {
    .section .bottom-bar {
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: #29588D;
        height: 70px;
        width: 100%;
        margin: 0;
        padding: 0;
        z-index: 10;
        display: flex;
        align-items: center;
        padding-left: 30px;
        margin-top: 8px;
    }

    .section .bottom-bar .btn-scroll-down {
        /* height: 50px; */
        width: 180px;
    }

    .section .bottom-bar .buttons {
        position: absolute;
        right: 30px;
    }

    .section .bottom-bar .buttons .gap-line {
        margin: 0 20px;
    }

    .fp-controlArrow.fp-prev {
        /* border-color: transparent rgba(0, 0, 0, 0.3) transparent transparent; */
        border-color: transparent transparent transparent transparent;
    }

    .fp-controlArrow.fp-next {
        /* border-color: transparent transparent transparent rgba(0, 0, 0, 0.3); */
        border-color: transparent transparent transparent transparent;
    }

    .handle-left {
        display: none;
    }

    .handle-right {
        display: none;
    }
}

@media screen and (max-width: 1459px) and (min-width: 1200px) {
    .section .bottom-bar {
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: #29588D;
        height: 70px;
        width: 100%;
        margin: 0;
        padding: 0;
        z-index: 10;
        display: flex;
        align-items: center;
        padding-left: 30px;
        margin-top: 8px;
    }

    .section .bottom-bar .btn-scroll-down {
        /* height: 50px; */
        width: 180px;
    }

    .section .bottom-bar .buttons {
        position: absolute;
        right: 30px;
    }

    .section .bottom-bar .buttons .gap-line {
        margin: 0 20px;
    }

    .fp-controlArrow.fp-prev {
        /* border-color: transparent rgba(0, 0, 0, 0.3) transparent transparent; */
        border-color: transparent transparent transparent transparent;
    }

    .fp-controlArrow.fp-next {
        /* border-color: transparent transparent transparent rgba(0, 0, 0, 0.3); */
        border-color: transparent transparent transparent transparent;
    }

    .handle-left {
        display: none;
    }

    .handle-right {
        display: none;
    }
}

@media screen and (max-width: 1199px) and (min-width: 1025px) {
    .section .bottom-bar {
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: #29588D;
        height: 60px;
        width: 100%;
        margin: 0;
        padding: 0;
        z-index: 10;
        display: flex;
        align-items: center;
        padding-left: 30px;
        margin-top: 8px;
    }

    .section .bottom-bar .btn-scroll-down {
        /* height: 50px; */
        display: none;
    }

    .section .bottom-bar .buttons {
        position: absolute;
        right: 0;
        left: 0;
        text-align: center;
        padding: 0 6px;
        box-sizing: border-box;
    }

    .section .bottom-bar .buttons .gap-line {
        margin: 0 20px;
    }

    .fp-controlArrow.fp-prev {
        /* border-color: transparent rgba(0, 0, 0, 0.3) transparent transparent; */
        border-color: transparent transparent transparent transparent;
        left: 0;
        width: 40px;
        height: 40px;
    }

    .fp-controlArrow.fp-next {
        /* border-color: transparent transparent transparent rgba(0, 0, 0, 0.3); */
        border-color: transparent transparent transparent transparent;
        right: 0;
        width: 40px;
        height: 40px;
    }

    .handle-left {
        display: flex;
        position: absolute;
        left: 0;
        width: 40px;
        height: 40px;
        background-color: #303B48;
        top: 50%;
        z-index: 1;
    }

    .handle-right {
        display: flex;
        position: absolute;
        right: 0;
        width: 40px;
        height: 40px;
        background-color: #303B48;
        top: 50%;
        z-index: 1;
    }
}

@media screen and (max-width: 1199px) {
    .section .bottom-bar {
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: #29588D;
        height: 60px;
        width: 100%;
        margin: 0;
        padding: 0;
        z-index: 10;
        display: flex;
        align-items: center;
        padding-left: 30px;
        margin-top: 8px;
    }

    .section .bottom-bar .btn-scroll-down {
        /* height: 50px; */
        display: none;
    }

    .section .bottom-bar .buttons {
        position: absolute;
        right: 0;
        left: 0;
        text-align: center;
        padding: 0 6px;
        box-sizing: border-box;
    }

    .section .bottom-bar .buttons .gap-line {
        margin: 0 20px;
    }

    .fp-controlArrow.fp-prev {
        /* border-color: transparent rgba(0, 0, 0, 0.3) transparent transparent; */
        border-color: transparent transparent transparent transparent;
        left: 0;
        width: 40px;
        height: 40px;
    }

    .fp-controlArrow.fp-next {
        /* border-color: transparent transparent transparent rgba(0, 0, 0, 0.3); */
        border-color: transparent transparent transparent transparent;
        right: 0;
        width: 40px;
        height: 40px;
    }

    .handle-left {
        display: flex;
        position: absolute;
        left: 0;
        width: 40px;
        height: 40px;
        background-color: #303B48;
        top: 50%;
        z-index: 1;
    }

    .handle-right {
        display: flex;
        position: absolute;
        right: 0;
        width: 40px;
        height: 40px;
        background-color: #303B48;
        top: 50%;
        z-index: 1;
    }
}

/* bottom-bar 버튼 3개 모바일 깨짐 방지 - 단계별 이미지 조정 */
@media screen and (max-width: 700px) {
    .section .bottom-bar .buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .section .bottom-bar .buttons a img {
        height: 26px;
        width: auto;
        vertical-align: middle;
    }

    .section .bottom-bar .buttons .gap-line {
        margin: 0 12px;
        height: 15px;
        vertical-align: middle;
    }

    .section .bottom-bar .buttons {
        gap: var(--bottom-bar-gap, 0px);
        padding: 0 var(--bottom-bar-padding, 6px);
        box-sizing: border-box;
    }

    .section .bottom-bar .buttons a img {
        height: var(--bottom-bar-button-height, 26px);
    }

    .section .bottom-bar .buttons .gap-line {
        margin: 0 var(--bottom-bar-gap-line-margin, 12px);
        height: var(--bottom-bar-gap-line-height, 15px);
        display: var(--bottom-bar-gap-line-display, inline-block);
    }
}

.tutorial-skip {
    position: absolute;
    right: 483px;
    bottom: 70px;
    background-color: #00A8FF;
    color: #fff;
    border-radius: 10px;
    width: 186px;
    height: 49px;
    font-weight: 700;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
}

.tutorial-prev {
    position: absolute;
    right: 384px;
    bottom: 70px;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    border-radius: 10px;
    width: 79px;
    height: 49px;
    border: 2px solid #FFFFFF;
    background-color: #00000000;
    cursor: pointer;
    z-index: 10;
}

.tutorial-next {
    position: absolute;
    right: 285px;
    bottom: 70px;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    border-radius: 10px;
    width: 79px;
    height: 49px;
    border: 2px solid #FFFFFF;
    background-color: #00000000;
    cursor: pointer;
    z-index: 10;
}

.tutorial-disabled {
    border: 2px solid #919191 !important;
    color: #919191 !important;
}

.result-content {
    width: 100%;
    border-radius: 15px;
    border: 1px solid #e2e2e2;
    padding: 12px;
}

.result-box {
    border-radius: 15px;
    border: 1px solid #e2e2e2;
    padding: 16px;
    flex: 1;
}

.result-box .result-box-title {
    background-color: #29588D;
    border-radius: 25px;
    padding: 8px 16px;
    color: #fff;
    font-weight: 800;
    width: auto;
    text-align: center;
}

.result-box .result-box-title .yellow {
    color: #ffcb7a;
    font-weight: 800;
}

.result-box .result-box-level {
    border: 1px solid #dddddd;
    background-color: #fafafa;
    border-radius: 15px;
}

.result-box .result-box-level.highlight {
    border-color: #4DA1E7;
    background-color: #EFFAFF;
}

.result-box .result-box-level span.label {
    font-size: 14px;
    font-weight: 400;
    color: #29588d;
}

.result-box .result-box-level span.value {
    font-size: 20px;
    font-weight: 700;
}

.result-box .list-label {
    border-radius: 15px;
    padding: 0 16px;
    line-height: 55px;
    font-weight: 400;
    font-size: 14px;
    border: 1px solid #dddddd;
    text-align: center;
    max-height: 60px;
}

.result-box .list {
    padding: 10px 0;
}

.result-box .list li:not(:first-child) {
    margin-top: 5.5px;
}

.result-box .list span.plain-text {
    color: #2b2b2b;
    font-weight: 400;
    font-size: 14px;
}

.result-box .list span.text-blue {
    color: #29588d;
    font-weight: 600;
}

.result-box .result-box-divider {
    width: 100%;
    height: 1px;
    background-color: #e3e3e3;
}

.header.header-blur.header-gnb-hov {
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(24px);
}

.header.header-white.header-gnb-hov {
    background-color: #fff;
}

.header.header-blur.header-gnb-hov li span {
    color: #fff !important;
}

.header.header-white.header-gnb-hov li span {
    color: #2f2f2f !important;
}

.header.header-white.header-gnb-hov #logo img {
    content: url("/assets/img/logo_blue.webp") !important;
}

.header.header-white:not(.header-gnb-hov) #logo img {
    content: initial;
}

.header.header-blur.header-gnb-hov #logo img {
    content: url("/assets/img/logo_white.webp") !important;
}

.header.header-blur:not(.header-gnb-hov) #logo img {
    content: initial;
}

/* 메인 페이지에서 서브 헤더 블러 처리 */
.sub-header.sub-header-blur {
    background-color: rgba(255, 255, 255, 0) !important;
    backdrop-filter: blur(24px) !important;
    border: none !important;
    box-shadow: none !important;
}

.sub-header.sub-header-blur .sub-header-menu {
    background-color: transparent !important;
    color: #fff !important;
    border-right: none !important;
    border-left: none !important;
}

/* 로그인/로그아웃 버튼 스타일 */
.auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-right: 15px;
}

.btn-auth {
    background-color: #C8ECFF;
    color: #00A8FF;
    font-family: 'Pretendard', sans-serif;
    font-weight: 800;
    font-size: 14px;
    height: 36px;
    padding: 12px 26px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-auth:hover {
    background-color: #B0E0FF;
    transform: translateY(-1px);
}

.btn-auth:active {
    transform: translateY(0);
}

/*
subpage_{n}_view 모바일 환경에서 깨져보이는 문제 해결
*/

.subpage1-mobile-heading-row {
    display: none;
}

/* subpage_1 모바일 세로 레이아웃 */
@media screen and (max-width: 1024px) {
    #section4 .slide {
        overflow: hidden;
    }

    #section4 .slide-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 80px 16px 92px;
    }

    #section4 .slide-content .row {
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 10px;
        flex-direction: column-reverse;
        align-items: stretch !important;
        justify-content: flex-start;
        min-height: auto;
    }

    #section4 .slide-content .left,
    #section4 .slide-content .right {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        height: auto;
        margin: 0;
        padding: 0;
    }

    #section4 .slide-content .right {
        height: 200px;
        margin-top: clamp(20px, 5vh, 44px);
    }

    #section4 .slide-content .right video,
    #section4 .slide-content .right img {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: 200px;
        min-height: 200px;
        max-height: 200px;
        object-fit: cover;
        display: block;
    }

    #section4 .slide-content h2,
    html:lang(ko) #section4 .slide-content h2,
    html:lang(en) #section4 .slide-content h2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: clamp(30px, 8vw, 36px) !important;
        line-height: 1.15;
        white-space: normal;
        margin: 14px 0 16px;
    }

    #section4 .slide-content h2 span,
    html:lang(ko) #section4 .slide-content h2 span,
    html:lang(en) #section4 .slide-content h2 span {
        margin: 0;
        white-space: normal;
    }

    #section4 .slide-content h4 {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.6;
        word-break: keep-all;
        margin: 0 !important;
    }

    #section4 .slide-content h4 p {
        font-size: 14px;
        line-height: 1.6;
    }

    #section4 .slide-content .btn-watch-video {
        position: static;
        width: 150px;
        margin-top: 18px;
    }

    #section4 .slide[data-no="1"] .subpage1-mobile-heading-row {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }

    #section4 .slide[data-no="1"] .subpage1-mobile-heading-row h5 {
        margin: 0;
        flex-shrink: 0;
    }

    #section4 .slide[data-no="1"] .subpage1-mobile-subtitle {
        color: #2E3D4E;
        background-color: #D2E5FA;
        padding: 8px 12px;
        font-size: 12px;
        font-weight: 500;
        border-radius: 21px;
        line-height: 1.2;
        white-space: nowrap;
    }

    #section4 .slide[data-no="1"] .subpage1-desktop-tag,
    #section4 .slide[data-no="1"] .subpage1-desktop-subtitle {
        display: none;
    }

    #section4 .slide[data-no="1"] h2 {
        margin-top: 0;
    }

    #section4 .handle-left,
    #section4 .handle-right {
        top: 52%;
    }
}

/* subpage_1 낮은 화면 높이 보정 */
@media screen and (max-width: 1024px) and (max-height: 700px) {
    #section4 .slide-content {
        padding-top: 64px;
    }

    #section4 .slide-content .right {
        margin-top: 12px;
    }
}

/* 비교 미리보기는 모바일에서만 노출하고 데스크톱에서는 기존 비교 배경만 사용 */
#section6 .slide.comparison-slide .slide-content .right .comparison-slide-preview {
    display: none;
}

@media screen and (max-width: 1024px) {
    #section6 .slide.comparison-slide .slide-content .right .comparison-desktop-img {
        display: none;
    }
}

/* subpage_2 모바일 세로 레이아웃 */
@media screen and (max-width: 1024px) {
    #section6 .slide {
        overflow: hidden;
    }

    #section6 .slide-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 80px 16px 92px;
    }

    #section6 .slide-content .row {
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 10px;
        flex-direction: column-reverse;
        align-items: stretch !important;
        justify-content: flex-start;
        min-height: auto;
    }

    #section6 .slide-content .left,
    #section6 .slide-content .right {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        height: auto;
        margin: 0;
        padding: 0;
    }

    #section6 .slide-content .right {
        height: 200px;
        margin-top: clamp(20px, 5vh, 44px);
    }

    #section6 .slide-content .right > video,
    #section6 .slide-content .right > img {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: 200px;
        min-height: 200px;
        max-height: 200px;
        object-fit: cover;
        display: block;
    }

    #section6 .slide-content h2,
    html:lang(ko) #section6 .slide-content h2,
    html:lang(en) #section6 .slide-content h2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: clamp(30px, 8vw, 36px) !important;
        line-height: 1.15;
        white-space: normal;
        margin: 14px 0 16px;
    }

    #section6 .slide-content h2 span,
    html:lang(ko) #section6 .slide-content h2 span,
    html:lang(en) #section6 .slide-content h2 span {
        margin: 0;
        white-space: normal;
    }

    #section6 .slide-content h4 {
        max-width: 100%;
        font-size: 16px !important;
        line-height: 1.6 !important;
        word-break: keep-all;
        margin: 0 !important;
    }

    #section6 .slide-content h4 br {
        display: none;
    }

    #section6 .slide-content .btn-watch-video {
        position: static;
        width: 150px;
        margin-top: 18px;
    }

    #section6 .slide.comparison-slide .slide-content .right .comparison-slide-preview {
        display: block;
        position: relative;
        width: 100%;
        height: 200px;
        padding-bottom: 0;
        overflow: hidden;
        border-radius: 18px;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }

    #section6 .slide.comparison-slide .slide-content .right .comparison-slide-preview .comparisonImage,
    #section6 .slide.comparison-slide .slide-content .right .comparison-slide-preview .afterImage {
        position: absolute;
        width: 100%;
        height: 100%;
        inset: 0;
    }

    #section6 .slide.comparison-slide .slide-content .right .comparison-slide-preview img {
        left: 0;
        width: 100%;
        height: 100%;
        min-width: 0;
        max-width: none;
        object-fit: cover;
        border-radius: 0;
        box-shadow: none;
    }

    #section6 .handle-left,
    #section6 .handle-right {
        top: 52%;
    }
}

/* subpage_2 낮은 화면 높이 보정 */
@media screen and (max-width: 1024px) and (max-height: 700px) {
    #section6 .slide-content {
        padding-top: 64px;
    }

    #section6 .slide-content .right {
        margin-top: 12px;
    }
}

/* subpage_3 모바일 세로 레이아웃 */
@media screen and (max-width: 1024px) {
    #section8 .slide {
        overflow: hidden;
    }

    #section8 .slide-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 80px 16px 92px;
    }

    #section8 .slide-content .row {
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 10px;
        flex-direction: column-reverse;
        align-items: stretch !important;
        justify-content: flex-start;
        min-height: auto;
    }

    #section8 .slide-content .left,
    #section8 .slide-content .right {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        height: auto;
        margin: 0;
        padding: 0;
    }

    #section8 .slide-content .right {
        height: 200px;
        margin-top: clamp(20px, 5vh, 44px);
    }

    #section8 .slide-content .right video,
    #section8 .slide-content .right img {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: 200px;
        min-height: 200px;
        max-height: 200px;
        object-fit: cover;
        display: block;
        border-radius: 18px;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }

    #section8 .slide-content h2,
    html:lang(ko) #section8 .slide-content h2,
    html:lang(en) #section8 .slide-content h2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: clamp(30px, 8vw, 36px) !important;
        line-height: 1.15;
        white-space: normal;
        margin: 14px 0 16px;
    }

    #section8 .slide-content h4 {
        max-width: 100%;
        font-size: 16px !important;
        line-height: 1.6 !important;
        word-break: keep-all;
        margin: 0 !important;
    }

    #section8 .slide-content .btn-watch-video {
        position: static;
        width: 150px;
        margin-top: 18px;
    }

    #section8 .handle-left,
    #section8 .handle-right {
        top: 52%;
    }
}

/* subpage_3 낮은 화면 높이 보정 */
@media screen and (max-width: 1024px) and (max-height: 700px) {
    #section8 .slide-content {
        padding-top: 64px;
    }

    #section8 .slide-content .right {
        margin-top: 12px;
    }
}

/* subpage_4 모바일 세로 레이아웃 */
@media screen and (max-width: 1024px) {
    #section10 .slide {
        overflow: hidden;
    }

    #section10 .slide-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 80px 16px 92px;
    }

    #section10 .slide-content .row {
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 10px;
        flex-direction: column-reverse;
        align-items: stretch !important;
        justify-content: flex-start;
        min-height: auto;
    }

    #section10 .slide-content .left,
    #section10 .slide-content .right {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        height: auto;
        margin: 0;
        padding: 0;
    }

    #section10 .slide-content .right {
        height: 200px;
        margin-top: clamp(20px, 5vh, 44px);
    }

    #section10 .slide-content .right video,
    #section10 .slide-content .right img {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: 200px;
        min-height: 200px;
        max-height: 200px;
        object-fit: cover;
        display: block;
        border-radius: 18px;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }

    #section10 .slide-content h2,
    html:lang(ko) #section10 .slide-content h2,
    html:lang(en) #section10 .slide-content h2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: clamp(30px, 8vw, 36px) !important;
        line-height: 1.15;
        white-space: normal;
        margin: 14px 0 16px;
    }

    #section10 .slide-content h4 {
        max-width: 100%;
        font-size: 16px !important;
        line-height: 1.6 !important;
        word-break: keep-all;
        margin: 0 !important;
    }

    #section10 .slide-content .btn-watch-video {
        position: static;
        width: 150px;
        margin-top: 18px;
    }

    #section10 .handle-left,
    #section10 .handle-right {
        top: 52%;
    }
}

/* subpage_4 낮은 화면 높이 보정 */
@media screen and (max-width: 1024px) and (max-height: 700px) {
    #section10 .slide-content {
        padding-top: 64px;
    }

    #section10 .slide-content .right {
        margin-top: 12px;
    }
}

/* subpage_5 모바일 세로 레이아웃 */
@media screen and (max-width: 1024px) {
    #section12 .slide {
        overflow: hidden;
    }

    #section12 .slide-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 80px 16px 92px;
    }

    #section12 .slide-content .row {
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 10px;
        flex-direction: column-reverse;
        align-items: stretch !important;
        justify-content: flex-start;
        min-height: auto;
    }

    #section12 .slide-content .left,
    #section12 .slide-content .right {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 0;
        height: auto;
        margin: 0;
        padding: 0;
    }

    #section12 .slide-content .right {
        height: 200px;
        margin-top: clamp(20px, 5vh, 44px);
    }

    #section12 .slide-content .right video,
    #section12 .slide-content .right img {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: 200px;
        min-height: 200px;
        max-height: 200px;
        object-fit: cover;
        display: block;
        border-radius: 18px;
        box-shadow: 6px 6px 15.8px 0px #3350764D;
    }

    #section12 .slide-content h2,
    html:lang(ko) #section12 .slide-content h2,
    html:lang(en) #section12 .slide-content h2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: clamp(30px, 8vw, 36px) !important;
        line-height: 1.15;
        white-space: normal;
        margin: 14px 0 16px;
    }

    #section12 .slide-content h4 {
        max-width: 100%;
        font-size: 16px !important;
        line-height: 1.6 !important;
        word-break: keep-all;
        margin: 0 !important;
    }

    #section12 .slide-content br {
        display: none;
    }

    #section12 .slide-content h5 {
        font-size: 14px;
        line-height: 1.6;
        word-break: keep-all;
    }

    #section12 .slide-content .btn-watch-video {
        position: static;
        width: 150px;
        margin-top: 18px;
    }

    #section12 .handle-left,
    #section12 .handle-right {
        top: 52%;
    }
}

/* subpage_5 낮은 화면 높이 보정 */
@media screen and (max-width: 1024px) and (max-height: 700px) {
    #section12 .slide-content {
        padding-top: 64px;
    }

    #section12 .slide-content .right {
        margin-top: 12px;
    }
}




/* =====================================================
   태블릿 (768px~1024px): 이미지/동영상 컨테이너 크기 제한 해제
   스마트폰(≤767px) 전용 height: 200px 규칙을 태블릿에서만 오버라이드
   ===================================================== */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .slide-content .right {
        width: 100%;
        height: auto;
        min-height: unset;
    }

    .slide-content .right video,
    .slide-content .right img {
        height: auto;
        min-height: unset;
        max-height: none;
    }

    #section4  .slide-content .right,
    #section6  .slide-content .right,
    #section8  .slide-content .right,
    #section10 .slide-content .right,
    #section12 .slide-content .right {
        height: auto;
    }

    #section4  .slide-content .right video,
    #section4  .slide-content .right img,
    #section6  .slide-content .right > video,
    #section6  .slide-content .right > img,
    #section8  .slide-content .right video,
    #section8  .slide-content .right img,
    #section10 .slide-content .right video,
    #section10 .slide-content .right img,
    #section12 .slide-content .right video,
    #section12 .slide-content .right img {
        height: auto;
        min-height: unset;
        max-height: none;
    }
}

/* =====================================================
   모바일: 시연 영상 버튼 bottom-bar 위 고정
   .col.left(텍스트)만 스크롤, .col.right(이미지)는 그대로
   .btn-watch-video = .slide-content 기준 absolute
   ===================================================== */
@media screen and (max-width: 1024px) {
    /* .left의 position:relative 해제 → 버튼이 .slide-content 기준으로 위치 */
    #section4  .slide-content .left,
    #section6  .slide-content .left,
    #section8  .slide-content .left,
    #section10 .slide-content .left,
    #section12 .slide-content .left {
        position: static !important;
    }

    /* h4 안의 p 태그 브라우저 기본 margin 제거 */
    #section4  .slide-content h4 p,
    #section6  .slide-content h4 p,
    #section8  .slide-content h4 p,
    #section10 .slide-content h4 p,
    #section12 .slide-content h4 p {
        margin-bottom: 0 !important;
    }

    /* slide-content: 스크롤 제거 */
    #section4  .slide-content,
    #section6  .slide-content,
    #section8  .slide-content,
    #section10 .slide-content,
    #section12 .slide-content {
        overflow: hidden !important;
    }

    /* .col.left 텍스트 영역만 스크롤, 이미지(.right)는 영향 없음 */
    #section4  .slide-content .col.left,
    #section6  .slide-content .col.left,
    #section8  .slide-content .col.left,
    #section10 .slide-content .col.left,
    #section12 .slide-content .col.left {
        overflow-y: auto !important;
        /* max() 로 최솟값 120px 보장: 가로모드 등 낮은 화면에서 0에 수렴하는 문제 방지 */
        max-height: max(120px, calc(100vh - 410px)); /* .right(200+margin) + button(68+30) + header(80) + gaps */
        -webkit-overflow-scrolling: touch;
    }

    /* 버튼: slide-content 기준 absolute, 최상위 z-index */
    #section4  .slide-content .btn-watch-video,
    #section6  .slide-content .btn-watch-video,
    #section8  .slide-content .btn-watch-video,
    #section10 .slide-content .btn-watch-video,
    #section12 .slide-content .btn-watch-video {
        position: absolute !important;
        bottom: 68px; /* bottom-bar(60px) + 간격(8px) */
        left: 16px;
        margin-top: 0 !important;
        z-index: 100;
        width: 150px !important;
    }

    /* subpage_1 전용: desktop-cta 숨기고 mobile-cta absolute 처리 */
    /* (subpage1-desktop-cta / subpage1-mobile-cta 클래스 제거됨 - btn-watch-video 단일 구조로 통합) */
}

/* =====================================================
   모바일 가로모드(landscape): 세로 스택 → 좌(텍스트) / 우(이미지) 수평 2열로 전환
   세로모드에서는 image(200px) + padding(80+92px) = ~372px 고정값이
   가로모드 뷰포트 높이(375~430px)를 초과해 콘텐츠가 겹치고 잘리는 문제 해결
   ===================================================== */
@media screen and (max-width: 1024px) and (orientation: landscape) {
    /* slide-content: 전체 컨테이너를 세로 스크롤로 전환 */
    #section4  .slide-content,
    #section6  .slide-content,
    #section8  .slide-content,
    #section10 .slide-content,
    #section12 .slide-content {
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding: 60px 16px 72px; /* 가로모드 축소 헤더 + bottom-bar */
        height: 100%; /* 스크롤 컨테이너로서 부모 높이 채움 */
    }

    /* .row: column-reverse → row (텍스트 좌 / 이미지 우) */
    #section4  .slide-content .row,
    #section6  .slide-content .row,
    #section8  .slide-content .row,
    #section10 .slide-content .row,
    #section12 .slide-content .row {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }

    /* 텍스트 컬럼: 55% 너비, 세로 스크롤 해제 (slide-content가 스크롤) */
    #section4  .slide-content .col.left,
    #section6  .slide-content .col.left,
    #section8  .slide-content .col.left,
    #section10 .slide-content .col.left,
    #section12 .slide-content .col.left {
        width: 55% !important;
        flex: 0 0 55% !important;
        max-height: none !important;
        overflow-y: visible !important;
    }

    /* 이미지 컬럼: 42% 너비, 화면 높이 기반 높이 */
    #section4  .slide-content .col.right,
    #section6  .slide-content .col.right,
    #section8  .slide-content .col.right,
    #section10 .slide-content .col.right,
    #section12 .slide-content .col.right {
        width: 42% !important;
        flex: 0 0 42% !important;
        height: calc(100vh - 140px) !important;
        margin-top: 0 !important;
    }

    /* 이미지·비디오: 부모 높이에 맞춰 채움 */
    #section4  .slide-content .right img,
    #section6  .slide-content .right img,
    #section8  .slide-content .right img,
    #section10 .slide-content .right img,
    #section12 .slide-content .right img,
    #section4  .slide-content .right video,
    #section6  .slide-content .right video,
    #section8  .slide-content .right video,
    #section10 .slide-content .right video,
    #section12 .slide-content .right video {
        height: 100% !important;
        min-height: unset !important;
        max-height: none !important;
        object-fit: cover;
    }

    /* 버튼: absolute 고정 해제 → 텍스트 흐름 안으로 */
    #section4  .slide-content .btn-watch-video,
    #section6  .slide-content .btn-watch-video,
    #section8  .slide-content .btn-watch-video,
    #section10 .slide-content .btn-watch-video,
    #section12 .slide-content .btn-watch-video {
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        margin-top: 12px !important;
    }

    /* section4 전용: mobile-cta 규칙 제거됨 (HTML에서 통합) */
}
