/* =========================================
   1. Reset & Global Styles (Base only)
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Pretendard", sans-serif;
    font-size: 20px; /* PC 기본 */
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    word-break: keep-all;
}

/* [모바일] 기본 폰트 사이즈 조정 (16px) */
@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* =========================================
   4. Header & Navigation Styles
========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 90px;
    background-color: transparent;
    transition: background-color 0.3s, box-shadow 0.3s, height 0.4s ease-out;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1024px) {
    .header {
        height: 70px;
    }
}

.header.scrolled,
.header.menu-open {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.header.menu-open {
    height: 420px;
}

.header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    height: 90px;
    margin: 0 auto;
    padding: 0 40px;
}
@media (max-width: 1200px) {
    .header .wrap {
        padding: 0 20px;
    }
}
@media (max-width: 1024px) {
    .header .wrap {
        height: 70px;
    }
}

.header .logo {
    width: 200px;
}
@media (max-width: 1024px) {
    .header .logo {
        width: 150px;
    }
}

.header .logo img {
    width: 100%;
    height: auto;
}

.header .logo-dark {
    display: none;
}
.header .logo-white {
    display: block;
}

.header.scrolled .logo-dark,
.header.menu-open .logo-dark {
    display: block;
}

.header.scrolled .logo-white,
.header.menu-open .logo-white {
    display: none;
}

/* Desktop Nav */
.nav-desktop .gnb {
    display: flex;
}
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
}

.nav-desktop .gnb > li > a {
    display: flex;
    align-items: center;
    position: relative;
    height: 90px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}
@media (max-width: 1200px) {
    .nav-desktop .gnb > li > a {
        padding: 0 15px;
        font-size: 16px;
    }
}

.header.scrolled .nav-desktop .gnb > li > a,
.header.menu-open .nav-desktop .gnb > li > a {
    color: #343a40;
}

.nav-desktop .gnb > li > a:hover {
    color: #00a1e9;
}

.nav-desktop .gnb > li > a::after {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #00a1e9;
    transition: width 0.3s;
    content: "";
    transform: translateX(-50%);
}

.header:not(.scrolled):not(.menu-open) .nav-desktop .gnb > li > a::after {
    background-color: #ffffff;
}

.nav-desktop .gnb > li:hover > a::after {
    width: calc(100% - 40px);
}

/* Header Contact */
.header-contact a {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 8px 20px;
    border-radius: 100px;
    background: #06bfd2;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}
@media (max-width: 1200px) {
    .header-contact {
        display: none;
    }
}

.header.scrolled .header-contact a,
.header:hover .header-contact a,
.header.menu-open .header-contact a {
    color: #ffffff;
}

/* Mega Menu */
.mega-menu-panel {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    visibility: hidden;
    padding: 40px 0;
    background-color: #ffffff;
    transition: all 0.4s ease-out;
    opacity: 0;
    border-top: 1px solid #eeeeee;
    transform: translateY(-10px);
}
@media (max-width: 1024px) {
    .mega-menu-panel {
        display: none;
    }
}

.header.menu-open .mega-menu-panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mega-menu-panel .wrap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

.submenu-column {
    width: 180px;
}

.submenu-column h4 a {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px;
    padding-bottom: 10px;
}

.submenu-column ul li a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    color: #666666;
    transition: 0.3s;
}

.submenu-column ul li a:hover {
    color: #00a1e9;
    transform: translateX(5px);
}

/* Mobile Toggle */
#menu-toggle {
    display: none;
    z-index: 10;
    border: none;
    background: none;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
}
@media (max-width: 1024px) {
    #menu-toggle {
        display: block;
    }
}

.header.scrolled #menu-toggle {
    color: #333333;
}

/* Sidebar & Dimmed */
#layoutDimmed {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#aside {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    z-index: 1001;
    width: 80%;
    max-width: 320px;
    visibility: hidden;
    background: #ffffff;
    transition: all 0.4s;
    overflow-y: auto;
}

body.expand #layoutDimmed {
    display: block;
}
body.expand #aside {
    right: 0;
    visibility: visible;
}

#aside .btnClose {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #333333;
}

#aside .intro {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eeeeee;
}

#aside .intro img {
    width: 140px;

}

/* Accordion Menu */
#lnb {
    flex: 1;
    padding: 0;
}
#lnb > ul > li {
    border-bottom: 1px solid #f0f0f0;
}

#lnb > ul > li > a {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

#lnb > ul > li > a:not(.no-sub)::after {
    font-family: "Material Icons";
    font-size: 20px;
    transition: 0.3s;
    content: "expand_more";
}

#lnb > ul > li.on > a::after {
    transform: rotate(180deg);
}

#lnb ul ul {
    display: none;
    padding: 10px 0;
    background: #f8f9fa;
}

#lnb ul ul li a {
    display: block;
    padding: 10px 30px;
    font-size: 14px;
    color: #555555;
}

/* Sidebar Contact */
#aside .scustom {
    padding: 30px 20px;
    background: #fff;
}

#aside .scustom h2 {
    font-size: 16px;
    color: #333333;
    margin-bottom:0px;
}

#aside .scustom h3 a {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
    color: #00a1e9;
    margin-bottom: 15px;
}

.mobile-tel a {
    font-size: 16px !important;
    color: #555555 !important;
}

#aside .social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

#aside .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: 28px;
    color: #ffffff;
}

.kakao-link {
    background: #fee500;
    color: #191919 !important;

}
.naver-link {
    background: #03c75a;
}


        /* * =========================================
         * 2. Hero Component (.hero-wrap)
         * =========================================
         */
     /* * =========================================
         * 2. Hero Component (.hero-wrap) - UPDATED
         * =========================================
         */
        .hero-wrap {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Slider & Images */
        .hero-wrap .bg-slider {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -2;
        }
        .hero-wrap .bg-slide {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            opacity: 0;
            transition: opacity 1.0s ease-in-out; /* 페이드 전환 속도 */
            display: flex; /* 텍스트 정렬을 위해 flex 사용 */
            align-items: center; /* 수직 중앙 */
        }
        .hero-wrap .bg-slide.active {
            opacity: 1;
            z-index: 1; /* 활성 슬라이드를 위로 */
        }

        /* Image Switching (PC/Mobile) */
        .hero-wrap .img-pc {
            position: absolute; top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            display: block;
            z-index: -1;
        }
        .hero-wrap .img-mo {
            position: absolute; top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            display: none; /* PC에서는 숨김 */
            z-index: -1;
        }

        /* Overlay (Global) */
        .hero-wrap .overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.3) 100%);
            z-index: -1; /* 텍스트 밑, 이미지 위 */
        }

        /* Content Box (Text) */
        .hero-wrap .content-box {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            color: #ffffff;
            z-index: 50;

        }

        /* Text Animations (슬라이드가 active일 때만 실행) */
        .hero-wrap .bg-slide.active .sub-title {
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }
        .hero-wrap .bg-slide.active .main-title {
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
        }
        .hero-wrap .bg-slide.active .desc {
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
        }

        /* 기본 상태는 숨김 (애니메이션을 위해) */
        .hero-wrap .sub-title,
        .hero-wrap .main-title,
        .hero-wrap .desc {
            opacity: 0;
            transform: translateY(40px);
        }

        /* Text Styles */
        .hero-wrap .sub-title {
            font-size: 24px; font-weight: 700; letter-spacing: 2px;
            margin-bottom: 20px; text-transform: uppercase;
        }
        .hero-wrap .main-title {
            font-size: 80px; font-weight: 800; line-height: 1.2;
            margin-bottom: 40px;
        }
        .hero-wrap .desc {
            font-size: 24px; font-weight: 400; line-height: 1.6; opacity: 0.9;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Pagination */
        .hero-wrap .pagination {
            position: absolute; bottom: 50px; left: 40px;
            display: flex; gap: 12px; z-index: 20;
        }
        .hero-wrap .dot {
            width: 12px; height: 12px; border-radius: 50%;
            border: 2px solid #ffffff; background: transparent;
            cursor: pointer; transition: all 0.3s;
        }
        .hero-wrap .dot.active {
            background: #ffffff; width: 30px; border-radius: 10px;
        }

        /* --- Hero Responsive --- */
        @media (max-width: 1024px) {
            .hero-wrap .img-pc { display: none; } /* Tablet/Mobile: PC 이미지 숨김 */
            .hero-wrap .img-mo { display: block; } /* Tablet/Mobile: 모바일 이미지 보임 */

            .hero-wrap .content-box { padding: 0 30px; }
            .hero-wrap .sub-title { font-size: 18px; margin-bottom: 15px; }
            .hero-wrap .main-title { font-size: 50px; margin-bottom: 30px; }
            .hero-wrap .desc { font-size: 18px; }
            .hero-wrap .pagination { left: 30px; bottom: 40px; }
        }

        @media (max-width: 767px) {
            .hero-wrap .content-box { padding: 0 20px; }
            .hero-wrap .sub-title { font-size: 14px; margin-bottom: 10px; }
            .hero-wrap .main-title { font-size: 32px; margin-bottom: 20px; line-height: 1.3; }
            .hero-wrap .desc { font-size: 15px; line-height: 1.5; }
            .hero-wrap .pagination { left: 50%; transform: translateX(-50%); bottom: 30px; }
        }

        /* * =========================================
         * 3. Team Component (.team-wrap)
         * =========================================
         */
        .team-wrap {
            position: relative;
            width: 100%;
            background: #ffffff;
            padding: 120px 0;
            overflow: hidden;
        }
        .team-wrap .inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .team-wrap .title-box {
            text-align: center;
            margin-bottom: 70px;
        }
        .team-wrap .main-title {
            font-size: 48px;
            font-weight: 800;
            color: #111111;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        .team-wrap .main-title span { color: #00a0e9; }
        .team-wrap .desc {
            font-size: 20px;
            color: #555555;
            line-height: 1.6;
            font-weight: 400;
        }
        .team-wrap .member-list {
            display: flex;
            justify-content: space-between;
            gap: 30px;
        }
        .team-wrap .member-item {
            flex: 1;
            background: #ffffff;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        .team-wrap .member-item.reveal { opacity: 1; transform: translateY(0); }
        .team-wrap .member-item:hover { transform: translateY(-10px); }
        .team-wrap .img-box {
            width: 100%;
            height: auto;
            overflow: hidden;
            position: relative;
        }
        .team-wrap .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform 0.5s;
        }
        .team-wrap .member-item:hover .img-box img { transform: scale(1.00); }
        .team-wrap .name {
            font-family: 'Nanum Pen Script', cursive;
            font-size: 40px;
            color: #333333;
            margin-bottom: 10px;
            transform: rotate(-2deg);
            display: inline-block;
        }
        .team-wrap .badge {
            display: inline-block;
            padding: 8px 24px;
            border-radius: 50px;
            color: #ffffff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            margin-top:30px;
        }


        .team-wrap .badge.blue { background: #0056b3; }
        .team-wrap .badge.mint { background: #00b8d4; }
        .team-wrap .badge.sky { background: #00a0e9; }
        .team-wrap .info-desc {
            font-size: 18px;
            color: #111111;
            line-height: 1.5;
            font-weight: 600;
            margin-bottom: 15px;
            word-break: keep-all;
        }
        .team-wrap .tags {
            font-size: 15px;
            color: #00a0e9;
            font-weight: 500;

        }
        .team-wrap .tags span {
            padding:0 10px;
            display:inline;
        }



        @media (max-width: 1024px) {
            .team-wrap { padding: 80px 0; }
            .team-wrap .main-title { font-size: 36px; margin-bottom: 15px; }
            .team-wrap .desc { font-size: 16px; }
            .team-wrap .member-list { gap: 20px; }
            .team-wrap .img-box { height: 300px; border-radius: 20px; }
            .team-wrap .name { font-size: 32px; }
            .team-wrap .badge { font-size: 16px; padding: 6px 18px; }
            .team-wrap .info-desc { font-size: 16px; }
        }
        @media (max-width: 767px) {
            .team-wrap { padding: 60px 0; }
            .team-wrap .main-title { font-size: 28px; }
            .team-wrap .member-list { flex-direction: column; gap: 50px; }
            .team-wrap .img-box { height: 350px; }
            .team-wrap .info-desc { padding: 0 20px; }
        }

        /* * =========================================
         * 4. Features Component (.features-wrap)
         * =========================================
         */
        .features-wrap {
            position: relative;
            width: 100%;
            background: linear-gradient(-45deg, #00b4db, #0083b0, #005c97, #36d1dc);
            background-size: 400% 400%;
            animation: gradientFlow 15s ease infinite;
            padding: 140px 0;
            overflow: hidden;
            color: #ffffff;
        }
        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .features-wrap .inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 10;
        }
        .features-wrap .left-box { width: 45%; position: relative; }
        .features-wrap .main-title {
            font-size: 54px;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 40px;
            text-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .features-wrap .silhouette-box {
            position: relative;
            width: 100%;
            max-width: 400px;
            margin-top: 50px;
        }
        .features-wrap .silhouette-img {
            width: 100%;
            opacity: 0.8;
            filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
            transition: transform 0.1s ease-out;
        }
        .features-wrap .right-box { width: 50%; }
        .features-wrap .feat-list {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        .features-wrap .feat-item {
            display: flex;
            gap: 30px;
            align-items: flex-start;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease-out;
        }
        .features-wrap .feat-item.reveal { opacity: 1; transform: translateX(0); }
        .features-wrap .icon-box {

            display: flex;
            align-items: center;
            justify-content: center;



        }

        .features-wrap .icon-box i {
            border: 1px solid rgba(255,255,255,0.3);
padding:15px;
border-radius: 50%;
            font-size: 80px;
            color: #ffffff;

        }
        .features-wrap .text-group { padding-top: 10px; }
        .features-wrap .feat-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .features-wrap .feat-title span {
            font-size: 16px;
            font-weight: 400;
            opacity: 0.7;
            font-family: 'Roboto', sans-serif;
        }
        .features-wrap .feat-desc {
            font-size: 18px;
            font-weight: 300;
            line-height: 1.6;
            opacity: 0.9;
            word-break: keep-all;
        }
        @media (max-width: 1024px) {
            .features-wrap { padding: 100px 0; }
            .features-wrap .inner { padding: 0 30px; }
            .features-wrap .main-title { font-size: 40px; }
            .features-wrap .feat-item { gap: 20px; }
            .features-wrap .icon-box { width: 60px; height: 60px; font-size: 30px; }
            .features-wrap .feat-title { font-size: 20px; }
            .features-wrap .feat-desc { font-size: 16px; }
        }
        @media (max-width: 767px) {
            .features-wrap { padding: 80px 0; }
            .features-wrap .inner { flex-direction: column; padding: 0 20px; }
            .features-wrap .left-box { width: 100%; text-align: center; margin-bottom: 60px; }
            .features-wrap .main-title { font-size: 32px; margin-bottom: 30px; }
            .features-wrap .silhouette-box { max-width: 200px; margin: 0 auto; opacity: 0.5; }
            .features-wrap .right-box { width: 100%; }
            .features-wrap .feat-list { gap: 40px; }
            .features-wrap .feat-item { flex-direction: column; align-items: center; text-align: center; }
            .features-wrap .feat-item i { font-size: 80px; }
            .features-wrap .text-group { padding-top: 0; }
            .features-wrap .feat-title { justify-content: center; flex-direction: column; gap: 5px; }
        }

        /* * =========================================
         * 4-1. Gallery Component (.gallery-wrap)
         * =========================================
         */
        .gallery-wrap {
            position: relative;
            width: 100%;
            background: #ffffff;
            padding: 120px 0;
        }
        .gallery-wrap .inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .gallery-wrap .title-box {
            text-align: center;
            margin-bottom: 60px;
        }
        .gallery-wrap .sub-title {
            font-size: 16px;
            font-weight: 700;
            color: #00a0e9;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: inline-block;
        }
        .gallery-wrap .main-title {
            font-size: 36px;
            font-weight: 700;
            color: #111111;
            word-break: keep-all;
        }
        .gallery-wrap .main-title span { color: #00a0e9; }
        .gallery-wrap .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .gallery-wrap .gallery-item {
            position: relative;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .gallery-wrap .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-wrap .gallery-item:hover .gallery-img { transform: scale(1.1); }
        .gallery-wrap .text-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px 20px 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
            color: #ffffff;
            font-size: 20px;
            font-weight: 700;
            text-align: center;
            z-index: 2;
        }
        @media (max-width: 1024px) {
            .gallery-wrap { padding: 80px 0; }
            .gallery-wrap .main-title { font-size: 28px; }
            .gallery-wrap .gallery-item { height: 250px; }
            .gallery-wrap .text-overlay { font-size: 18px; }
        }
        @media (max-width: 767px) {
            .gallery-wrap { padding: 60px 0; }
            .gallery-wrap .main-title { font-size: 24px; }
            .gallery-wrap .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
            .gallery-wrap .gallery-item { height: 280px; }
        }

        /* * =========================================
         * 5. Stats Component (.stats-wrap)
         * =========================================
         */
        .stats-wrap {
            position: relative;
            width: 100%;
            background: url('/img/counter_bg.png') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            padding: 140px 0;
            overflow: hidden;
        }
        .stats-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.0);
            z-index: 1;
        }
        .stats-wrap .inner {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        .stats-wrap .title-box { margin-bottom: 70px; color: #000; }
        .stats-wrap .sub-desc {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 15px;
            opacity: 0.9;
        }
        .stats-wrap .main-title {
            font-size: 42px;
            font-weight: 700;
            line-height: 1.3;
        }
        .stats-wrap .stat-list {
            display: flex;
            justify-content: center;
            gap: 40px;
        }
        .stats-wrap .stat-item {
            flex: 1;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            padding: 50px 20px;
            color: #ffffff;
            transition: transform 0.3s ease, background 0.3s;
        }
        .stats-wrap .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
        }
        .stats-wrap .icon-box {
            color: #00caee;
            padding:0;
        }

        .stats-wrap .icon-box i {
            font-size: 80px;
            margin-bottom: 0px;
            color: #00caee;
            padding:0;
        }

        .stats-wrap .label {
            font-size: 34px;
            font-weight: 600;
            margin-bottom: 0px;
            color: #000;
        }
        .stats-wrap .number-box {
            display: flex;
            align-items: center;
            justify-content: center;
            height:auto;
            margin:0 auto;
            font-size: 56px;
            font-weight: 800;
            color: #00caee;
            gap: 2px;
        }
        .stats-wrap .unit {
            font-size: 30px;
            font-weight: 600;
            margin-top: 5px;
            color: #00caee;
        }
        @media (max-width: 1024px) {
            .stats-wrap { padding: 100px 0; }
            .stats-wrap .main-title { font-size: 32px; }
            .stats-wrap .sub-desc { font-size: 20px; margin-bottom:0px;}
            .stats-wrap .stat-list { gap: 20px; }
            .stats-wrap .stat-item { padding: 40px 15px; }
            .stats-wrap .icon-box { font-size: 40px; }
            .stats-wrap .number-box { font-size: 42px; }
            .stats-wrap .unit { font-size: 24px; }
        }
        @media (max-width: 767px) {
            .stats-wrap { padding: 80px 0; }
            .stats-wrap .main-title { font-size: 28px; }
            .stats-wrap .stat-list { flex-direction: column; gap: 30px; }
            .stats-wrap .stat-item { width: 100%; padding: 30px; gap: 20px; }
            .stats-wrap .icon-box { margin-bottom: 0; font-size: 36px; }
            .stats-wrap .label { margin-bottom:0px; font-size: 18px; }
            .stats-wrap .number-box { font-size: 36px;  }
            .stats-wrap .text-group { display: flex; flex-direction: column; }
        }

        /* * =========================================
         * 6. Partner Component (.partner-wrap)
         * =========================================
         */
        .partner-wrap {
            position: relative;
            width: 100%;
            background: #ffffff;
            padding: 120px 0;
        }
        .partner-wrap .inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .partner-wrap .title-box { text-align: center; margin-bottom: 60px; }
        .partner-wrap .sub-title {
            font-size: 16px;
            font-weight: 700;
            color: #00a0e9;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: inline-block;
        }
        .partner-wrap .main-title {
            font-size: 36px;
            font-weight: 700;
            color: #111111;
            word-break: keep-all;
        }
        .partner-wrap .logo-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .partner-wrap .logo-item {
            background: #ffffff;
            border: 1px solid #eeeeee;
            border-radius: 12px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: all 0.3s ease;
            cursor: default;
        }
        .partner-wrap .logo-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            border-color: #00a0e9;
        }
        .partner-wrap .logo-item img {
            max-width: 100%;
            max-height: 100%;
            width:120px;
            height:50px;
            object-fit: contain;


            transition: all 0.3s;
        }
        .partner-wrap .logo-item:hover img { filter: grayscale(0%); opacity: 1; }
        @media (max-width: 1024px) {
            .partner-wrap { padding: 80px 0; }
            .partner-wrap .logo-grid { grid-template-columns: repeat(3, 1fr); }
            .partner-wrap .main-title { font-size: 28px; }
        }
        @media (max-width: 767px) {
            .partner-wrap { padding: 60px 0; }
            .partner-wrap .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .partner-wrap .logo-item { height: 90px; padding: 15px; }
            .partner-wrap .main-title { font-size: 24px; }
        }

        /* * =========================================
         * 7. Video Component (.video-wrap)
         * =========================================
         */
        .video-wrap {
            position: relative;
            width: 100%;
            background-color: #1fa5d8;
            padding: 120px 0;
            color: #ffffff;
            overflow: hidden;
        }
        .video-wrap .inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 60px;
        }
        .video-wrap .text-box { flex: 1.2; max-width: 500px; }
        .video-wrap .main-title {
            font-size: 40px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 30px;
            word-break: keep-all;
        }
        .video-wrap .desc {
            font-size: 18px;
            font-weight: 400;
            line-height: 1.7;
            word-break: keep-all;
        }
        .video-wrap .video-box {
            flex: 1.2;
            position: relative;
            width: 100%;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            background: #000;
            aspect-ratio: 16 / 9;
        }
        .video-wrap .video-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease, opacity 0.4s ease;
            opacity: 0.8;
        }
        .video-wrap .video-box:hover .video-thumb { transform: scale(1.05); opacity: 0.6; }
        .video-wrap .video-info {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 2;
            font-size: 16px;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            pointer-events: none;
        }
        .video-wrap .video-info span { color: #ffffff; }
        .video-wrap .btn-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            backdrop-filter: blur(4px);
        }
        .video-wrap .btn-play i { font-size: 30px; color: #ffffff; margin-left: 4px; }
        .video-wrap .video-box:hover .btn-play { background: #ffffff; transform: translate(-50%, -50%) scale(1.1); }
        .video-wrap .video-box:hover .btn-play i { color: #1fa5d8; }
        @media (max-width: 1024px) {
            .video-wrap { padding: 100px 0; }
            .video-wrap .inner { padding: 0 30px; gap: 40px; }
            .video-wrap .main-title { font-size: 32px; }
            .video-wrap .desc { font-size: 16px; }
            .video-wrap .btn-play { width: 60px; height: 60px; }
            .video-wrap .btn-play i { font-size: 24px; }
        }
        @media (max-width: 767px) {
            .video-wrap { padding: 80px 0; }
            .video-wrap .inner { flex-direction: column; padding: 0 20px; gap: 50px; }
            .video-wrap .text-box { max-width: 100%; text-align: left; }
            .video-wrap .main-title { font-size: 22px; margin-bottom: 20px; }
            .video-wrap .video-box { flex: none; width: 100%; }
        }

        /* * =========================================
         * 8. FAQ Component (.faq-wrap)
         * =========================================
         */
        .faq-wrap {
            position: relative;
            width: 100%;
            background: #ffffff;
            padding: 120px 0;
        }
        .faq-wrap .inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .faq-wrap .title-box { text-align: center; margin-bottom: 60px; }
        .faq-wrap .sub-title {
            font-size: 16px;
            font-weight: 700;
            color: #00a0e9;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: inline-block;
        }
        .faq-wrap .main-title {
            font-size: 36px;
            font-weight: 700;
            color: #111111;
            word-break: keep-all;
        }
        .faq-wrap .faq-list { border-top: 1px solid #eeeeee; }
        .faq-wrap .faq-item { border-bottom: 1px solid #eeeeee; }
        .faq-wrap .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 35px 40px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .faq-wrap .faq-q:hover { background: #f9f9f9; }
        .faq-wrap .q-text {
            font-size: 20px;
            font-weight: 600;
            color: #111111;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .faq-wrap .q-mark { color: #00a0e9; font-weight: 800; }
        .faq-wrap .icon-plus {
            font-size: 24px;
            color: #cccccc;
            transition: transform 0.3s ease, color 0.3s ease;
        }
        .faq-wrap .faq-item.active .icon-plus { transform: rotate(45deg); color: #111111; }
        .faq-wrap .faq-item.active .faq-q { background: #f4faff; }
        .faq-wrap .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            background: #f8f8f8;
        }
        .faq-wrap .a-inner {
            padding: 30px 20px 30px 45px;
            font-size: 17px;
            line-height: 1.6;
            color: #555555;
            border-top: 1px solid #e5e5e5;
        }
        .faq-wrap .a-mark {
            font-weight: 800;
            color: #333333;
            margin-right: 10px;
            font-size: 20px;
            float: left;
        }
        .faq-wrap .a-content { overflow: hidden; display: block; }
        @media (max-width: 1024px) {
            .faq-wrap { padding: 80px 0; }
            .faq-wrap .main-title { font-size: 28px; }
            .faq-wrap .q-text { font-size: 18px; }
            .faq-wrap .faq-q { padding: 20px; }
        }
        @media (max-width: 767px) {
            .faq-wrap { padding: 60px 0; }
            .faq-wrap .main-title { font-size: 24px; }
            .faq-wrap .q-text { font-size: 16px; line-height: 1.4; }
            .faq-wrap .icon-plus { font-size: 20px; }
            .faq-wrap .a-inner { padding: 20px; font-size: 15px; }
            .faq-wrap .a-mark { font-size: 18px; margin-right: 5px; }
        }

        /* * =========================================
         * 9. Contact Component (.contact-wrap)
         * =========================================
         */
        .contact-wrap {
            position: relative;
            width: 100%;
            background: url('/img/online_bg.png') no-repeat center center;
            background-size: cover;
            padding: 120px 0;
            color: #ffffff;
        }
        .contact-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1;
        }
        .contact-wrap .inner {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 60px;
        }
        .contact-wrap .info-box { flex: 1; }
        .contact-wrap .main-title {
            font-size: 38px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 30px;
            word-break: keep-all;
        }
        .contact-wrap .sub-desc {
            font-size: 18px;
            font-weight: 300;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 50px;
        }
        .contact-wrap .tel-box {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            font-size: 40px;
            font-weight: 800;
            color: #00a0e9;
            transition: color 0.3s;
        }
        .contact-wrap .tel-box i { font-size: 36px; color: #ffffff; }
        .contact-wrap .tel-box:hover { color: #ffffff; }
        .contact-wrap .form-box {
            flex: 0 0 500px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        .contact-wrap .form-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.4;
        }
        .contact-wrap .form-title span { color: #00a0e9; }
        .contact-wrap .input-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }
        .contact-wrap input,
        .contact-wrap select,
        .contact-wrap textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            padding: 12px 15px;
            font-size: 15px;
            color: #ffffff;
            font-family: 'Pretendard', sans-serif;
            transition: all 0.3s;
            outline: none;
        }
        .contact-wrap textarea { height: 120px; resize: none; }
        .contact-wrap input:focus,
        .contact-wrap select:focus,
        .contact-wrap textarea:focus {
            border-color: #00a0e9;
            background: rgba(255, 255, 255, 0.15);
        }
        .contact-wrap ::placeholder { color: rgba(255, 255, 255, 0.5); }
        .contact-wrap .full-width { grid-column: 1 / -1; }
        .contact-wrap .agree-box {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #cccccc;
            cursor: pointer;
        }
        .contact-wrap .agree-box input {
            width: 16px;
            height: 16px;
            accent-color: #00a0e9;
            cursor: pointer;
        }
        .contact-wrap .btn-submit {
            width: 100%;
            background: #00a0e9;
            color: #ffffff;
            font-size: 18px;
            font-weight: 700;
            padding: 16px 0;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .contact-wrap .btn-submit:hover { background: #0088c6; }
        @media (max-width: 1024px) {
            .contact-wrap { padding: 80px 0; }
            .contact-wrap .inner { flex-direction: column; align-items: stretch; }
            .contact-wrap .info-box { text-align: center; margin-bottom: 0px; }
            .contact-wrap .main-title { font-size: 36px; }
            .contact-wrap .form-box { flex: none; width: 100%; max-width: 600px; margin: 0 auto; }
        }
        @media (max-width: 767px) {
            .contact-wrap { padding: 60px 0; }
            .contact-wrap .inner { padding: 0 10px; }
            .contact-wrap .main-title { font-size: 22px; }
            .contact-wrap .sub-desc { font-size: 15px; }
            .contact-wrap .tel-box i { font-size: 22px; }
            .contact-wrap .tel-box { font-size:22px; }
            .contact-wrap .form-box { padding: 25px; }
            .contact-wrap .input-grid { grid-template-columns: 1fr; }
        }

        /* * =========================================
         * 10. Footer Component (.footer-wrap)
         * =========================================
         */
        .footer-wrap {
            background: #222222;
            padding: 60px 0;
            color: #999999;
            font-size: 15px;
        }
        .footer-wrap .inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
        .footer-wrap .footer-logo {
            width: 200px;
            margin-bottom: 20px;
        }
        .footer-wrap .info p { margin-bottom: 8px; line-height: 1.5; }
        .footer-wrap .info span { margin-right: 15px; position: relative; }
        .footer-wrap .info span::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 10px;
            background: #444;
        }
        .footer-wrap .info span:last-child::after { display: none; }
        .footer-wrap .copyright { margin-top: 20px; font-size: 13px; opacity: 0.6; }
        .footer-wrap .sns-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: #333333;
            border-radius: 50%;
            color: #ffffff;
            font-size: 18px;
            margin-left: 10px;
            transition: background 0.3s;
        }
        .footer-wrap .sns-links a:hover { background: #00a0e9; }
        @media (max-width: 1024px) {
            .footer-wrap .inner { flex-direction: column; align-items: flex-start; gap: 30px; }
        }
        @media (max-width: 767px) {
            .footer-wrap { padding: 40px 0; font-size: 13px; }
            .footer-wrap .inner { padding: 0 20px; }
            .footer-wrap .info span { display: block; margin: 0 0 5px 0; }
            .footer-wrap .info span::after { display: none; }
        }


/* =========================================
   14. Mobile Bottom Bar
========================================= */
.mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    z-index: 99;
    background: #ffffff;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
    .mobile-bar {
        display: flex;
    }
}

.mobile-bar .bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    gap: 8px;
    font-size: 16px;
}

.mobile-bar .bar-btn.call {
    background: #06bfd2;
}

.mobile-bar .bar-btn.sms {
    background: #1d51f2;
}

.quick-menu-wrap {
    position: fixed;
    top:50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-menu-wrap .pc_br {gap:12px; display:grid;}

.quick-menu-wrap .qm-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid #eeeeee;
    transition: all 0.3s;
    text-align: center;
}

.quick-menu-wrap .qm-btn:hover {
    transform: scale(1.1);
    border-color: #0057a8;
}

.quick-menu-wrap .qm-btn i {
    font-size: 32px;
    color: #555555;
}

.quick-menu-wrap .qm-btn span {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
}

/* QM Colors & Overrides */
.quick-menu-wrap .qm-btn.highlight {
    background-color: #06bfd2;
    border-color: #06bfd2;
}

.quick-menu-wrap .qm-btn.highlight i,
.quick-menu-wrap .qm-btn.highlight span {
    color: #ffffff;
}

.quick-menu-wrap .qm-btn.q_green {
    background-color: #1d51f2;
    border-color: #1d51f2;
}

.quick-menu-wrap .qm-btn.q_green i,
.quick-menu-wrap .qm-btn.q_green span {
    color: #ffffff;
}

.quick-menu-wrap .qm-btn.kakao {
    background-color: #f5de00;
    border-color: #f5de00;
}

.quick-menu-wrap .qm-btn.kakao i,
.quick-menu-wrap .qm-btn.kakao span {
    color: #000000;
}

.quick-menu-wrap .qm-btn.blog {
    background: #03c75a;
    border-color: #03c75a;
}

.quick-menu-wrap .qm-btn.blog i,
.quick-menu-wrap .qm-btn.blog span {
    color: #ffffff;
}

@media (max-width: 767px) {
  .quick-menu-wrap .pc_br {display:none;}
  .quick-menu-wrap {
     right:5px; top:70%; }
  .quick-menu-wrap .qm-btn {width:45px; height:45px; border-radius:10px; }
  .quick-menu-wrap .qm-btn i {font-size:25px; }
  .quick-menu-wrap .qm-btn span {display:none;}
}