@charset "utf-8";

body {

}




:root {
    --primary: #2FB5DA;
    --secondary: #af2246;
    --light-: #C6C8CA;
    --white-: #fff;
    --mark: #FF450D;
    --bmark: #1b6ae7;

    --cover: cover;
    --50: 50%;
    --33: 33.3333333%;
    --25: 25%;
    --20: 20%;
    --sub-page-tit: 56px;


    /*  섹션 공통  */
    --sec-cm-padd: 100px 0;
    --sec-cm-ftsz: 24px;
}

@media (max-width: 1200px) {
    :root {
        --sub-page-tit: 56px;
        --padding: 120px 20px;
    }
}

@media (max-width: 1024px) {
    :root {
        --sub-page-tit: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --sub-page-tit: 36px;
        --padding: 60px 20px;
    }
}

/* 에디터 스니펫 스타일 ***********************************************/
.sun-alert-box {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin: 1rem 0;
}

.sun-two-column {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.sun-two-column > div {
    flex: 1;
    padding: 1rem;
    background: #f7f7f7;
    border-radius: 8px;
    border: 1px solid #eee;
}

.sun-info-list p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.sun-info-list .sun-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #0066cc;
    color: white;
    text-align: center;
    line-height: 24px;
    border-radius: 4px;
    font-weight: bold;
}

/* 헤더 ***********************************************/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 60px;
    height: 70px;
    position: relative;
}

/* ▶ GNB 메뉴 */
.header .gnb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 40px;
}

.header .gnb > li {
    position: relative;
}

.header .gnb > li > a {
    padding: 20px 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 17px;
}

.header .gnb .arrow {
    margin-left: 4px;
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #555;
    border-bottom: 1.5px solid #555;
    transform: translateY(-2px) rotate(45deg);
    margin-top: 2px;
}

/* ▶ 서브 메뉴 */
.header .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: none;
    flex-direction: column;
    padding: 8px 0;
}

.header .gnb li:hover .sub-menu {
    display: flex;
}

.header .sub-menu li a {
    display: block;
    padding: 10px 16px;
    margin: 0 10px;
    font-size: 14px;
    white-space: nowrap;
    color: #333;
}

.header .sub-menu li a:hover {
    background: #f9f9f9;
}

/* ▶ 우측 버튼 */
.header .gnb-right ul {
    display: flex;
    gap: 12px;
}

.header .gnb-right ul li a {
    display: inline-block;
    font-size: 14.5px;
    padding: 8px 14px;
    border-radius: 8px;
}

.header .gnb-right ul li:nth-child(2) a {
    border: 1px solid #c6c6c6;
    color: #505050;
}

.header .gnb-right ul li:nth-child(1) a {
    background: var(--primary);
    color: #fff;
    font-weight: bold;
}

/* ▶ 뱃지 */
.header .badge-new {
    position: relative;
    display: inline-block;
    background: #40a087;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 2px;
    animation: pulseBadge 1.2s infinite;
}

.header .badge-new.badge2 {
    background: #ed996d;
}

/* ▶ 애니메이션 */
@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-6px);
    }

    40% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(-3px);
    }

    80% {
        transform: translateY(0);
    }
}

.header .cta-bounce {
    animation: bounceDown 1.4s ease-in-out infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: translateY(-.5px) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-.5px) scale(1.1);
        opacity: 0.7;
    }
}



/* 마케팅 ***********************************************/





/* 메인 ***********************************************/
.bot_bnn {
    position: fixed;
    right: 100px;
    bottom: 0;
    width: 360px;
    height: 50px;
    background: #ff470d;
    z-index: 10;
}

.bot_bnn a {
    color: #fff;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}

.bot_bnn a span {
    color: #fff;
    padding-left: 8px;
}

.bot_bnn .bnn_con {
    position: relative;
    overflow: hidden;
    background: rgb(0, 0, 0, .2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    height: 320px;
    bottom: 370px;
    display: flex;
    align-items: center;
}

.bot_bnn .slider {
    width: 100%;
    margin: 0 auto;
}

.bot_bnn .slide-box {
    display: flex;
    gap: 10px;
    width: calc(260px * 12);
    animation: slide 30s linear infinite;
}

.bot_bnn .slide-item {
    width: 200px;
    height: 138px;
    background-color: #2d2d2d;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.bot_bnn .slide-item:hover img {
    transform: scale(1.2);
}

.bot_bnn .slide-item img {
    width: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: all .5s;
}

.bot_bnn .slide-item .review-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 4px;
    background: #ffffff99;
    transform: translateY(120px);
    transition: all .5s;
}

@keyframes slide {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(calc(-260px * 6));
    }
}



/* 서브 ***********************************************/

/* 서브공통 **********/
.cm_sub_wrap {
    padding: 0 0 80px;
}

.cm_sub_wrap .sub_title_wrap {
    margin: 70px 0 0;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cm_sub_wrap .tit {
    text-align: center;
}

.cm_sub_wrap .tit h1 {
    font-size: 44px;
    font-weight: 800;
    color: #111;
    margin-bottom: 24px;
    line-height: 1.4;
}

.cm_sub_wrap .tit p.sub-title {
    font-size: 22px;
    color: #111;
    font-weight: 600;
    margin-bottom: 12px;
}

.cm_sub_wrap .tit p.sub-title strong {
    color: #319d6b;
}

.cm_sub_wrap .tit p.desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}


/* 메인 ***********************************************/
.cm-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title .highlight {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #0072c6;
    margin-bottom: 16px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    margin-bottom: 16px;
}

.section-title .desc {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.section-title .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14px 28px;
    background: #0056ff;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 86, 255, 0.2);
}

.section-title .cta-button:hover {
    background: #003ccc;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 86, 255, 0.3);
}

.section-title .cta-button .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.section-title .cta-button:hover .arrow {
    transform: translateX(4px);
}

/* ✅ 처음엔 투명하게 시작 */
.main_visual_sect {
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* ✅ 로딩 완료되면 자연스럽게 표시 */
.main_visual_sect.is-loaded {
    opacity: 1;
}

.main_visual_sect {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
}

/* Swiper 컨테이너 */
.main_visual_sect .swiper {
    height: 100%;
}

/* 개별 슬라이드 */
.main_visual_sect .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    /* ✅ 회색 flash 방지 */
    transform: scale(1);
    /* ✅ scale 기본값 */
    will-change: transform;
}

/* 블랙 오버레이 */
.main_visual_sect .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* 배경 이미지 클래스 */
.main_visual_sect .swiper-slide .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main_visual_sect .swiper-slide .bg.bg1 {
    background-image: url('../images/main-bg01.jpg');
}

/* WebP 지원 시 덮어쓰기 */
.webp .main_visual_sect .swiper-slide .bg.bg1 {
    background-image: url('../images/main-bg01.webp');
}

.main_visual_sect .swiper-slide .bg.bg2 {
    background-image: url('../images/main-bg02.jpg');
}

/* 콘텐츠 wrapper */
.main_visual_sect .inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

/* 콘텐츠 내부 요소 페이드 초기값 */
.main-visual-swiper .label,
.main-visual-swiper .headline,
.main-visual-swiper .blur-box,
.main-visual-swiper .btns {
    opacity: 0;
    visibility: hidden;
}

/* 라벨 스타일 */
.main_visual_sect .label {
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

/* 헤드라인 */
.main_visual_sect .headline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
}

/* 블러 박스 그룹 */
.main_visual_sect .box_group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto 80px;
}

/* ✅ 글래스모피즘 효과 */
.main_visual_sect .blur-box {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    color: white;
    text-align: center;
    isolation: isolate;
    width: 340px;

}

.main_visual_sect .blur-box strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.main_visual_sect .blur-box p {
    line-height: 1.5;
    opacity: 0.8;
}

/* CTA 버튼 그룹 */
.main_visual_sect .btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.main_visual_sect .btn {
    width: 220px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
}

.main_visual_sect .btn.primary {
    background: white;
    color: black;
}

.land_system_sect {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(47, 181, 218, 0.05) 0%, transparent 100%);
    overflow: hidden;
}

.land_system_sect .slide_cont {
    margin-top: 60px;
}

.land_system_sect .swiper-container {}

.land_system_sect .swiper-wrapper {
    align-items: center;
}

.land_system_sect .item {
    width: 240px;
    height: 300px;
    border-radius: 7rem;
    overflow: hidden;
    background-color: transparent;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
    position: relative;
}

.land_system_sect .item .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: inset(0 100% 0 0);
    /* 처음엔 우측 100% 가림 */
    opacity: 0;
    z-index: 1;
}

.land_system_sect .item[data-bg="1"] .bg {
    background-image: url('../images/bg01.jpg');
}

.land_system_sect .item[data-bg="2"] .bg {
    background-image: url('../images/bg01.jpg');
}

.land_system_sect .item[data-bg="3"] .bg {
    background-image: url('../images/bg01.jpg');
}

.land_system_sect .item[data-bg="4"] .bg {
    background-image: url('../images/bg01.jpg');
}

.land_system_sect .item[data-bg="5"] .bg {
    background-image: url('../images/bg01.jpg');
}

.land_system_sect .item[data-bg="6"] .bg {
    background-image: url('../images/bg01.jpg');
}

.land_system_sect .swiper-slide-active .bg,
.land_system_sect .swiper-slide-duplicate-active .bg {
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

.land_system_sect .item .df {
    position: relative;
    z-index: 2;
    width: 100%;
}

.land_system_sect .item .df .con {
    text-align: center;
}

.land_system_sect .item .df .con span {
    display: inline-block;
    padding: 0 20px;
    height: 32px;
    line-height: 32px;
    border-radius: 32px;
    margin-bottom: 16px;
    background: #c3c3c3;
    text-align: center;
    color: #fff;
}

.land_system_sect .item.swiper-slide-active .df .con span {
    background: rgba(0, 0, 0, 0.2);
    /* 반투명한 어두운 배경 */
    color: white;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Safari 대응 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.land_system_sect .item .df .con h2 {
    font-size: 24px;
    opacity: .5;
}

.land_system_sect .item.swiper-slide-active {
    background: #fff;
    transform: translateY(0);
    z-index: 2;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.land_system_sect .item.swiper-slide-active .df .con h2 {
    color: #fff;
    opacity: 1;
}

.land_system_sect .item.swiper-slide[class$="-prev"],
.land_system_sect .item.swiper-slide-active + .item,
.land_system_sect .item.swiper-slide-active + .item + .item + .item {
    transform: translateY(80px);
}

.land_system_sect .swiper-horizontal > .swiper-pagination-progressbar,
.land_system_sect .swiper-pagination-progressbar.swiper-pagination-horizontal {
    max-width: 460px;
    margin: 120px auto 0;
}

.land_system_sect .swp-nav {
    margin: 0 auto;
}

.land_system_sect .swiper-pagination-progressbar {
    height: 3px;
    background: #ddd;
    margin: 80px 20px 0;
    position: inherit !important;
}

.land_system_sect .swiper-pagination-progressbar-fill {
    background: var(--primary) !important;
}



.portfolio-section {
    padding: 150px 0;
}

.portfolio-section .section-title {
    margin-bottom: 60px;
}

.portfolio-section .section-title h2 {
    font-size: 48px;
}

.portfolio-section .section-title .cta-button {
    background: #111;
}

.portfolio-section .section-title .desc {
    font-size: 20px;
}

.marquee {
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.marquee-content {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    align-items: center;
    padding: 33vh 0;
    text-align: center;
}

.marquee-carousel.marquee-carousel-1 {
    margin-right: -300px;
    margin-bottom: 11px;
}

@media (min-width: 768px) {

    .marquee-carousel.marquee-carousel-1 {
        margin-bottom: 16px;
    }
}

@media (min-width: 1600px) {

    .marquee-carousel.marquee-carousel-1 {
        margin-bottom: 23px;
    }
}

.marquee-carousel.marquee-carousel-2 {
    margin-left: -300px;
}

.marquee-items {
    -webkit-transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
    -moz-transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
    -o-transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: -webkit-box;
    position: relative;
    width: 100%;
    height: 150px;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@media (min-width: 768px) {
    .marquee-items {
        height: 250px;
    }
}

@media (min-width: 1600px) {
    .marquee-items {
        height: 268px;
    }
}

.marquee-item {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    flex-shrink: 0;
    overflow: hidden;
    width: 150px;
    height: 100%;
    margin-right: 11px;
    background: #6e4ce1;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .marquee-item {
        -webkit-border-radius: 24px;
        -moz-border-radius: 24px;
        width: 250px;
        margin-right: 16px;
        border-radius: 24px;
    }
}

@media (min-width: 1600px) {
    .marquee-item {
        -webkit-border-radius: 34px;
        -moz-border-radius: 34px;
        width: 480px;
        margin-right: 23px;
        border-radius: 2px;
    }
}


.template-section .template-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
}

.template-section .template-item {
    display: block;
    background: #eee;
    aspect-ratio: 1 / .6;
    width: calc(33.3333% - 27px);
    /* ✅ gap 고려한 적정값 */
    border-radius: 8px;
    transition: box-shadow 0.3s;
    border: 1px solid #eee;
    overflow: hidden;
    height: 196px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.template-section .template-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


/* 반응형 */
@media (max-width: 1024px) {
    .template-section .template-item {
        width: calc(33.333% - 16px);
    }
}

@media (max-width: 768px) {
    .template-section .template-item {
        width: calc(50% - 12px);
    }
}

@media (max-width: 480px) {
    .template-section .template-item {
        width: 100%;
    }
}

.maintenance-wrap {
    padding: 120px 0;
    background: linear-gradient(to bottom, rgba(209, 209, 209, 0.05) 0%, transparent 100%);
}

.maintenance-wrap .dflx {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    gap: 40px;
}

.maintenance-wrap .dflx .stit {
    margin-bottom: 24px;
}

.maintenance-wrap .dflx .stit h2 {
    font-size: 18px;
    line-height: 1;
    color: #555;
}

.maintenance-wrap .dflx .left,
.maintenance-wrap .dflx .right {
    width: 50%;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.maintenance-wrap .dflx .right {
    background: #f1f7fb;
}

.maintenance-wrap .maintenance-status {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.maintenance-wrap .status-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    width: 260px;
    position: relative;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.maintenance-wrap .status-card strong {
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.maintenance-wrap .status-card ul {
    line-height: 1.5;
}

.maintenance-wrap .status-card ul li {
    font-size: 13px;
    color: #888;
}

.maintenance-wrap .status-badge {
    display: inline-block;
    font-size: 12px;
    border-radius: 6px;
    font-weight: 500;
    margin-top: 8px;
}

.maintenance-wrap .status-badge .status {
    display: inline-block;
    padding: 4px 8px;
}

.maintenance-wrap .status.ing {
    background: #e0f0ff;
    color: #0077cc;
}

.maintenance-wrap .status.prog {
    background: #fff4e0;
    color: #ff9800;
}

.maintenance-wrap .status.done {
    background: #e6f7e6;
    color: #2e7d32;
}

.blog-wrap {
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(209, 209, 209, 0.05) 0%, transparent 100%);
}

.blog-wrap .blog-list-wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog-wrap .blog-item {
    width: calc(25% - 18px);
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-wrap .blog-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.blog-wrap .blog-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    max-height: 3em;
    /* 1.5em x 2줄 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-break: keep-all;
}

.blog-wrap .blog-item .blog-category {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 12px;
    margin-bottom: 4px;
}

/*서브*/
.process-section {
    background: #fff;
    color: #222;
}

.process-section .inner {
    max-width: 1280px;
    margin: 0 auto;
}

.process-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.process-section .process-bar-wrap {
    background: #f7f7f7;
    padding: 40px 0;
}

.process-section .process-bar-wrap .process-bar-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    position: relative;
}

.process-section .process-bar-wrap .process-bar-list .step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
}

.process-section .process-bar-wrap .process-bar-list .circle {
    width: 52px;
    height: 52px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background-color: #73878d;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
}

.process-section .process-bar-wrap .process-bar-list .step.active .circle {
    background-color: #2FB5DA;
}

.process-section .process-bar-wrap .process-bar-list .step p {
    color: #bbb;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.process-section .process-bar-wrap .process-bar-list .step.active p {
    color: #444;
}

.process-section .process-bar-wrap .process-bar-list .line {
    position: absolute;
    top: 26px;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #ccc;
    transform-origin: left center;
    z-index: -1;
}

.process-section .process-bar-wrap .process-bar-list .step:last-child .line {
    display: none;
}

.process-section .process-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.process-section .process-item {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.process-section .process-inner {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.process-section .process-left {
    flex-shrink: 0;
}

.process-section .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #eef8fb;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.process-section .process-right {
    flex: 1;
}

.process-section .step-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.process-section .step-summary {
    font-size: 20px;
    font-weight: 500;
    color: #444;
    margin-bottom: 20px;
}

.process-section small {
    display: block;
    margin-top: 4px;
    color: #888;
}

.process-section .desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
}

.process-section .desc li {
    position: relative;
    padding-left: 14px;
}

.process-section .desc li.mark {
    color: var(--primary);
}

.process-section .desc li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    background: #ddd;
}

.process-section .desc li:not(:last-child) {
    margin-bottom: 8px;
}

.process-section .btn-outline {
    margin: 20px 0 8px;
    display: inline-block;
    border: 1px solid #ddd;
    padding: 10px 16px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    border-radius: 6px;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
}

.process-section .btn-outline:hover {
    border-color: #111;
    color: #111;
}

.process-section .btn-outline.mark {
    background: var(--primary);
    color: #fff;
}

/* 서브 제작비용 **********/
.cm_sub_wrap .sub_prc {}

.cm_sub_wrap .sub_prc .inner {
    max-width: 1024px;
    margin: 0 auto;
}

.cm_sub_wrap .sub_prc .inner .dflx {
    display: flex;

}

.cm_sub_wrap .sub_prc .inner .dflx .item {
    width: 50%;

}

.cm_sub_wrap .sub_prc .inner .dflx .item .over {
    padding: 40px;
    background: #fff;
    border: 1px solid #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cm_sub_wrap .sub_prc .inner .dflx .item.prc1 {
    margin-right: 40px;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .type {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .type h2 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 12px;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .type p {
    line-height: 1.4;
    font-weight: 400;
    color: #555;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .type p span {}

.cm_sub_wrap .sub_prc .inner .dflx .item .prc h2 {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 8px;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .prc h2 span {
    font-weight: 300;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .prc p {
    font-size: 13px;
    color: #555;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .prc p span {
    color: #548eb9;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .btn {
    margin: 24px 0;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    color: #fff;
    background: #111;
    border-radius: 4px;
    overflow: hidden;
    font-size: 18px;
}

.cm_sub_wrap .sub_prc .inner .dflx .item.prc2 .btn a {
    background: #fff;
    border: 1px solid #111;
    color: #111;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .opt ul li {
    display: flex;
    align-items: center;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .opt ul li:last-child,
.cm_sub_wrap .sub_prc .inner .dflx .item .opt ul li:last-child span {
    color: #3da550;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .opt ul li:not(:last-child) {
    margin-bottom: 6px;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .opt ul li span {
    padding-right: 4px;
    color: #d0d0d0;
    font-size: 24px;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .noti {
    text-align: center;
    margin-top: 32px;
}

.cm_sub_wrap .sub_prc .inner .dflx .item .noti p {
    font-size: 13px;
    line-height: 1;
    color: #888;
}

.cm_sub_wrap .sub_prc .inner .noti {
    margin-top: 60px;
}

.cm_sub_wrap .sub_prc .inner .noti ul li {
    position: relative;
    padding-left: 10px;
    color: #888;
}

.cm_sub_wrap .sub_prc .inner .noti ul li:not(:last-child) {
    margin-bottom: 10px;
}

.cm_sub_wrap .sub_prc .inner .noti ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background: #ddd;
}

/* 서브 실시간 제작 현황 **********/
.status-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.status-wrap .status-item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    padding: 24px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 20px;
    background: #fff;

    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-wrap .item-left {
    flex: 1;
    border-right: 1px solid #eee;
}

.status-wrap .badge-wrap {
    margin-bottom: 24px;
}

.status-wrap .badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

.status-wrap .badge.ongoing {
    background: #f1f1f1;
    color: #666;
}

.status-wrap .badge.closed {
    background: #e6f4ea;
    color: #119930;
}

.status-wrap .info-wrap {
    margin-bottom: 20px;
}

.status-wrap .title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}

.status-wrap .desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.status-wrap .tags .tag {
    display: inline-block;
    background: #f7f7f7;
    font-size: 13px;
    color: #555;
    border-radius: 6px;
    padding: 4px 10px;
    margin: 0 4px 4px 0;
}

.status-wrap .item-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    min-width: 160px;
}

.status-wrap .date {
    font-weight: 300;
    font-size: 15px;
    color: #aaaaaa;
}

.status-wrap .label {
    font-size: 13px;
    color: #888;
    margin: 4px 0;
}

.status-wrap .count {
    font-size: 16px;
    font-weight: bold;
}

.status-wrap .status-loading {
    text-align: center;
    padding: 30px 0;
    font-size: 14px;
    color: #999;
    transition: opacity 0.3s;
}

.status-wrap .btn-placeholder {}

.status-wrap .view-btn {
    background: #e9f2ec;
    color: #569168;
    border: none;
    display: inline-block;
    /* ✅ 통일 */
    vertical-align: middle;
    padding: 14px 20px;
    font-size: 15px;
    line-height: 1;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    opacity: 1;
    white-space: nowrap;
}

.status-wrap .view-btn:hover {
    background-color: #d0ecd8;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.status-wrap .view-btn.disabled {
    background: #e0e0e0;
    color: #999;
    border: none;
    padding: 14px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: not-allowed;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    opacity: 0.8;
    white-space: nowrap;
}

.status-wrap .view-btn.expired {
    background: #fbeaea;
    color: #d14b4b;
}

/* 서브 유지보수 **********/
.mtn_wrap {}

.mtn_wrap .inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mtn_wrap .inner .step_dflx {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    padding: 40px;
}

.mtn_wrap .inner .step_dflx .arr span {
    color: #d0d0d0;
    font-size: 40px;
}

.mtn_wrap .inner .step_dflx .step {
    width: 33.33333333%;
    text-align: center;
}

.mtn_wrap .inner .step_dflx .step strong {
    font-size: 17px;
    display: block;
    color: var(--secondary);
}

.mtn_wrap .inner .step_dflx .step span {
    display: inline-block;
    text-align: center;
    width: 120px;
    height: 120px;
    line-height: 150px;
    border-radius: 80px;
    background: #f9f9f9;
    margin: 32px 0;
}

.mtn_wrap .inner .step_dflx .step span em {
    font-size: 40px;
    color: #555;
}

.mtn_wrap .inner .step_dflx .step h2 {
    line-height: 1;
    margin-bottom: 12px;
    font-size: 22px;
}

.mtn_wrap .inner .step_dflx .step p {
    font-size: 15px;
    line-height: 1.4;
    color: #555;
}

.mtn_wrap .inner .mtn_free {
    padding: var(--sec-cm-padd);
}

.mtn_wrap .inner .mtn_free .stit {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #111;
}

.mtn_wrap .inner .mtn_free .stit h2 {
    font-size: var(--sec-cm-ftsz);
    line-height: 1;
    margin-bottom: 16px;
}

.mtn_wrap .inner .mtn_free .add_noti {
    padding: 20px;
    background: #f7f7fb;
}

.mtn_wrap .inner .mtn_free .add_noti ul li {
    position: relative;
    padding-left: 10px;
    color: #6c6e75;
}

.mtn_wrap .inner .mtn_free .add_noti ul li:not(:last-child) {
    margin-bottom: 6px;
}

.mtn_wrap .inner .mtn_free .add_noti ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background: #bec9d4;
}

.mtn_wrap .inner .mtn_free .prc_table ul {
    display: flex;

    text-align: center;
}



.mtn_wrap .inner .mtn_free .prc_table ul:not(:last-child) {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.mtn_wrap .inner .mtn_free .prc_table .top {
    margin-bottom: 32px;
}

.mtn_wrap .inner .mtn_free .prc_table .top ul li {
    color: #111;
    font-weight: 500;
}

.mtn_wrap .inner .mtn_free .prc_table .bot ul li {
    color: #555;
}

.mtn_wrap .inner .mtn_free .prc_table ul li:nth-child(1) {
    width: 100px;
}

.mtn_wrap .inner .mtn_free .prc_table ul li:nth-child(2) {
    width: 200px;
}

.mtn_wrap .inner .mtn_free .prc_table ul li:nth-child(3) {
    flex: 1;
}

.mtn_wrap .inner .mtn_free .prc_table ul li:nth-child(4) {
    width: 200px;
}

/*
.mtn_wrap .inner .mtn_free .prc_table .bot ul li:nth-child(4) {
    color: #2575d3;
}
*/

.mtn_wrap .inner .mtn_btn {
    text-align: center;
    margin-top: 80px;
}

.mtn_wrap .inner .mtn_btn a {
    display: inline-block;
    width: 240px;
    height: 55px;
    line-height: 55px;
    border-radius: 55px;
    text-align: center;
    background: var(--secondary);
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}
