@charset "utf-8";

/* 색 설정 */
:root {
    --main-color: #E6B046;
    --black-color : #222;
    --white-color : #fff;
    --font-38px: 38px;
    --font-28px: 28px;
    --font-24px: 24px;
    --font-18px: 18px;
    --font-16px: 16px;
}

/* size */
@media screen and (max-width: 1250px) { 
    :root {
        --font-38px: 32px;
        --font-28px: 26px;
        --font-24px: 22px;
    }
} /* tablet */
@media screen and (max-width: 960px) { 
    :root {
        --font-38px: 28px;
        --font-28px: 24px;
        --font-24px: 20px;
        --font-18px: 17px;
        --font-16px: 15px;
    }
} 
@media screen and (max-width: 650px) { 
    :root {
        --font-38px: 24px;
        --font-28px: 20px;
        --font-24px: 18px;
        --font-18px: 16px;
        --font-16px: 14px;
    }
} /* mobile */

/* 스크롤 커스텀 */
html::-webkit-scrollbar {width: 8px;}
html::-webkit-scrollbar-thumb {background-color: var(--main-color); border-radius: 10px;}

/* 드래그 블록 커스텀 */
::selection { background-color:var(--main-color); color:#fff; }


/* default */
*{
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    color : #fff;
    box-sizing: border-box;
    letter-spacing: inherit;
    line-height: 140%;
    word-break: keep-all;
}
html.menu-open, body.menu-open{ overflow: hidden; }
html{scroll-behavior: smooth; overflow-x: hidden;}
body{ font-family: 'Pretendard', sans-serif; font-weight:400; font-size: 16px; letter-spacing: 0em; width: 100vw;}
section{ display:block; overflow-x: hidden;}
a{ color:inherit; }
a:hover{ text-decoration: none; color: inherit;  }

.inner{ width:1200px; margin:0 auto;  }

.paging_box{ margin-top: 20px; padding:10px 0; display:flex; align-items: center; justify-content: center; }
.paging_box .pg_page{ background-color:#FFF; border:1px solid #e6e6e6; }
.paging_box .pg_current{ background-color: #0F1C2E; color:#fff; border:1px solid #0F1C2E; }

select{
    -webkit-appearance: none; -moz-appearance: none;  appearance: none;
    background: url('../img/common/select-icon.png') no-repeat 98% 50% #fff; 
}
select::-ms-expand{ display:none; }
p{ word-break: keep-all; }

@media screen and (max-width: 1250px) { 
    .inner{ width:100%; padding:0 20px; }
} /* tablet */
@media screen and (max-width: 650px) { 
    .paging_box{ font-size: 13px; }
} /* mobile */
body{background: #141414;}
/* common */
.title-box h1{font-size: var(--font-38px); font-weight: 600; line-height: 1.3;}
.title-box h1 b{color: var(--main-color);}
.title-box h1 strong{font-weight: 700;}
.title-box p{font-size: var(--font-24px); color: #D2D2D2; margin-top: 20px; line-height: normal;}
.title-box.center{text-align: center;}
.title-box.left{text-align: left;}
@media screen and (max-width: 650px) {
    .title-box p{margin-top: 10px;}
    .title-box h1 br{display: none;}
}
/* header */
header{ position: fixed; left: 0; top: 0; width: 100%; z-index: 9999; height: 80px; display: flex; justify-content: space-between; align-items: center; padding: 0 30px; transition: background-color 0.3s ease, backdrop-filter 0.3s ease;}
header.scroll-on{ background-color: #000;}
header .logo{ width: 200px; height: 70px; flex-shrink: 0; }
header .logo img{ width: 100%; height: 100%; object-fit: contain; }
header .menu-btn{ display: none; position: relative; width: 28px; height: 22px; padding: 0; border: none; background: none; cursor: pointer; z-index: 10001; }
header .menu-btn span{ position: absolute; left: 0; width: 100%; height: 2px; background-color: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease; }
header .menu-btn span:nth-child(1){ top: 0; }
header .menu-btn span:nth-child(2){ top: 10px; }
header .menu-btn span:nth-child(3){ top: 20px; }
header.menu-open .menu-btn span:nth-child(1){ top: 10px; transform: rotate(45deg); }
header.menu-open .menu-btn span:nth-child(2){ opacity: 0; }
header.menu-open .menu-btn span:nth-child(3){ top: 10px; transform: rotate(-45deg); }
header .nav-wrap{ display: flex; align-items: center; }
header .menu{ display: flex; align-items: center; gap: 40px; }
header .menu > li{ font-size: var(--font-18px); font-weight: 500; }
header .menu > li .contact{ line-height: normal; display: inline-block; padding: 10px 30px; border-radius: 30px; background: linear-gradient(90deg, #F3B744 0%, #8D6A27 100%); }
body.menu-open{ overflow: hidden; }

@media screen and (max-width: 1250px) {
    header{ padding: 0 20px; }
    header .logo{ width: 160px; height: 56px; }
    header .menu{ gap: 24px; }
}
@media screen and (max-width: 960px) {
    header .menu-btn{ display: block; }
    header .nav-wrap{ position: fixed; top: 0; right: 0; z-index: 10000; width: 100%; height: 100vh; padding: 100px 30px 40px; background-color: rgba(0, 0, 0, 0.9); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, visibility 0.3s ease; }
    header.menu-open .nav-wrap{ opacity: 1; visibility: visible; pointer-events: auto; }
    header .menu{ flex-direction: column; align-items: flex-start; gap: 0; width: 100%; height: 100%;}
    header .menu > li{ width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    header .menu > li > a{ display: block; padding: 18px 0; font-size: 20px; }
    header .menu > li .contact{ width: 100%; margin-top: 20px; text-align: center; padding: 14px 30px; }
}
@media screen and (max-width: 650px) {
    header{ height: 64px; padding: 0 16px; }
    header .logo{ width: 130px; height: 46px; }
    header .nav-wrap{ padding: 84px 20px 30px; }
    header .menu > li > a{ font-size: 18px; padding: 16px 0; }
}
.floating-kakao{z-index: 9999; display: flex; justify-content: center; align-items: center; position: fixed; text-align: center; bottom: 30px; right: 30px;  width: 80px; height: 80px; border-radius: 40px; background: linear-gradient(133deg, #F3B744 15.97%, #8D6A27 86.68%);}
.floating-kakao img{width: 30px; height: 30px; object-fit: contain;}
.floating-kakao span{display: block; margin-top: 2px;  color: #FFF; text-align: center; font-size: 13px; font-weight: 600; line-height: normal;}
@media screen and (max-width: 960px) {
    .floating-kakao{width: 70px; height: 70px;}
    .floating-kakao img{width: 28px; height: 28px;}
    .floating-kakao span{font-size: 12px;}
}
@media screen and (max-width: 650px) {
    .floating-kakao{bottom: 20px; right: 20px; width: 60px; height: 60px;}
    .floating-kakao img{width: 24px; height: 24px;}
    .floating-kakao span{font-size: 10px;}
}
/* sec1 */
.sec1{height: 100vh; width: 100%; position: relative; display: flex; align-items: center; background: url('../img/main/main-sec1-bg.jpg') no-repeat center center / cover;}
.sec1 .inner{margin-top: -150px;}
.sec1 .inner h1{font-size: 60px; font-weight: 700;}
.sec1 .inner h1 b{display: block; background: linear-gradient(90deg, #FFEEC3 0%, #E8C878 27.7%, #F3B744 58.77%, #FFEEC3 87.5%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
.sec1 .inner p{margin: 20px 0 50px 0; font-size: var(--font-24px);}
.sec1 .inner p b{color: var(--main-color);}
.sec1 .inner .btn_box{ display: flex; align-items: center; gap: 20px;}
.sec1 .inner .btn_box a{line-height: normal; display: inline-block; padding: 8px 16px; border-radius: 30px; background: rgba(255, 255, 255, 0.20); }
.sec1 .img_box{ position: absolute; right: 30px; bottom: 30px; width: 55%;}
.sec1 .img_box img{ width: 100%; height: 100%; object-fit: contain; }
@media screen and (max-width: 1250px) {
    .sec1 .inner{margin-top: -100px;}
    .sec1 .inner h1{font-size: 48px;}
    .sec1 .img_box{width: 60%;}
}
@media screen and (max-width: 960px) {
    .sec1 .inner h1{font-size: 36px;}
    .sec1 .img_box{width: 80%; right: 0; bottom: 0;}
}
@media screen and (max-width: 650px) {
    .sec1 .inner h1{font-size: 24px;}
    .sec1 .inner p{margin: 20px 0 30px 0;}
    .sec1 .img_box{width: 90%;}
}

/* sec2 */
.sec2{padding: 150px 0; background: #21292D;}
.sec2 .content{display: flex; justify-content: space-between; gap: 24px; margin-top: 80px;}
.sec2 .content .card{border-radius: 10px; background: #141414; flex: 1; padding: 20px; text-align: center;}
.sec2 .content .card img{width: 320px; height: 220px; object-fit: contain; }
.sec2 .content .card .text{margin-top: 30px;}
.sec2 .content .card .text h3{font-size: var(--font-24px); font-weight: 600; color: var(--main-color); margin-bottom: 10px;}
.sec2 .content .card .text p{font-size: var(--font-18px);}
@media screen and (max-width: 1250px) {
    .sec2{padding: 110px 0;}
    .sec2 .content{margin-top: 50px;}
    .sec2 .content .card img{width: 280px; height: 200px;}
}
@media screen and (max-width: 960px) {
    .sec2 .content .card img{width: 80%; height: 180px;}
}
@media screen and (max-width: 650px) {
    .sec2{padding: 70px 0;}
    .sec2 .content{flex-direction: column; gap: 16px;}
    .sec2 .content .card img{width: 80%; height: 160px;}
    .sec2 .content .card .text p br{display: none;}
}

/* sec3 - 구조 스텝 */
.sec3{position: relative; padding: 150px 0; overflow: hidden; background: #050505;}
.sec3 .sec3-bg{position: absolute; inset: 0; background: url('../img/main/sec3-bg.jpg') no-repeat center center / cover; opacity: .5;}
.sec3 .sec3-bg::after{content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,0,0,.55) 0%, rgba(0,0,0,.92) 70%);}
.sec3 .inner{position: relative; z-index: 1;}
.sec3 .step-list{margin-top: 70px; display: flex; flex-direction: column; gap: 25px; max-width: 900px; margin-left: auto; margin-right: auto;}
.sec3 .step-list li{position: relative; display: flex; align-items: center; min-height: 120px; background: #282828; border-radius: 80px;}
.sec3 .badge{width: 120px; height: 120px; flex-shrink: 0; border-radius: 50%; background: #000; border: 1px solid var(--main-color); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2;}
.sec3 .badge span{color: var(--main-color); font-size: var(--font-16px); text-align: center; line-height: 1.2;}
.sec3 .step-list li:not(:last-child) .badge::after{content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 1px; height: 25px; background: var(--main-color);}
.sec3 .step-title{font-size: var(--font-28px, 28px); font-weight: 600; margin-left: 36px; white-space: nowrap;}
.sec3 .step-desc{position: absolute; right: 0; top: 0; width: 384px; height: 100%; background: #494949; border-radius: 80px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 30px; font-size: var(--font-18px); line-height: 1.4;}
@media screen and (max-width: 1250px) {
    .sec3{padding: 100px 0;}
}
@media screen and (max-width: 960px) {
    .sec3{padding: 80px 0;}
    .sec3 .step-list li{flex-wrap: wrap; padding: 20px; border-radius: 24px;}
    .sec3 .step-title{margin-left: 24px;}
    .sec3 .step-desc{position: static; width: 100%; height: auto; margin-top: 18px; padding: 18px 24px; border-radius: 18px;}
    .sec3 .badge{width: 96px; height: 96px;}
    .sec3 .badge span{font-size: 14px;}
    .sec3 .step-list li:not(:last-child) .badge::after{display: none;}
}
@media screen and (max-width: 650px) {
    .sec3{padding: 50px 0;}
    .sec3 .step-list{margin-top: 40px;}
    .sec3 .step-list li{align-items: center; flex-direction: column;}
    .sec3 .step-list li .badge{border: none; height: auto; width: auto; background: transparent;}
    .sec3 .step-list li .badge br{display: none;}
    .sec3 .step-title{font-size: 20px; margin-left: 0; margin-top: 10px;}
}

/* sec4 - 서비스 카드 */
.sec4{padding: 150px 0; background: #21292D;}
.sec4 .service-cards{margin-top: 80px; display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;}
.sec4 .card{position: relative; width: 384px; min-height: 237px; background: #141414; border-radius: 30px; padding: 72px 30px 30px;}
.sec4 .card .tag{position: absolute; top: 0; left: 30px; background: #cab483; color: #222; font-size: 16px; font-weight: 600; padding: 5px 16px; border-radius: 0 0 10px 10px; text-transform: capitalize;}
.sec4 .card .ic{position: absolute; top: 20px; right: 20px; width: 50px; height: 50px; color: var(--main-color);}
.sec4 .card .ic img{width: 100%; height: 100%; object-fit: contain;}
.sec4 .card h3{font-size: var(--font-24px); font-weight: 600; color: #cab483;}
.sec4 .card .line{display: block; width: 100%; height: 1px; background: rgba(255,255,255,.15); margin: 20px 0;}
.sec4 .card p{font-size: var(--font-18px); line-height: 1.4; color: #eee;}
@media screen and (max-width: 1250px) {
    .sec4{padding: 100px 0;}
}
@media screen and (max-width: 960px) {
    .sec4{padding: 80px 0;}
    .sec4 .card{width: calc(50% - 12px);}
}
@media screen and (max-width: 650px) {
    .sec4{padding: 50px 0;}
    .sec4 .service-cards{margin-top: 40px; gap: 16px;}
    .sec4 .card{width: 100%; padding: 50px 20px 20px 20px; min-height: auto;}
}
/* sec5 - 비교 */
.sec5{padding: 150px 0; background: #141414;}
.sec5 .compare{margin-top: 60px; display: flex; align-items: stretch; justify-content: center; gap: 30px;}
.sec5 .col{flex: 1; max-width: 540px; display: flex; flex-direction: column;}
.sec5 .col-head{padding: 18px; border-radius: 14px; background: #333; text-align: center; font-size: var(--font-24px); font-weight: 600;}
.sec5 .col.gold .col-head{background: #2e2716; border: 1px solid var(--main-color); color: var(--main-color);}
.sec5 .col .col-body{border-radius: 10px; background: #494949; padding: 20px; margin-top: 20px;}
.sec5 .col.gold .col-body{ border: 1px solid rgba(230, 176, 70, 0.50); box-shadow: 0 0 10px 0 rgba(230, 176, 70, 0.50), 0 0 10px 0 rgba(255, 255, 255, 0.25);}

.sec5 .col-img{position: relative; aspect-ratio: 289 / 540; border-radius: 14px; background: #e2e2e2; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain;}
.sec5 .col-img img{display: block; width: 100%;}
.sec5 .col-img .col-thumb{position: sticky; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; will-change: opacity;}
.sec5 .col-img .col-long{position: relative; z-index: 1; height: auto;}
.sec5 .col-img::-webkit-scrollbar{width: 6px;}
.sec5 .col-img::-webkit-scrollbar-thumb{background: rgba(0,0,0,.35); border-radius: 10px;}
.sec5 .col-list{margin-top: 20px; flex: 1; border-radius: 14px; background: #2b2b2b; padding: 36px 20px; display: flex; flex-direction: column; gap: 24px; justify-content: center;}
.sec5 .col.gold .col-list{background: #1b211f;}
.sec5 .col-list li{text-align: center; font-size: var(--font-18px); color: #cfcfcf;}
.sec5 .col.gold .col-list li{color: var(--main-color); font-weight: 500;}
.sec5 .compare-arrow{align-self: center; color: var(--main-color); font-size: 40px; line-height: 1; flex-shrink: 0;}
@media screen and (max-width: 1250px) {
    .sec5{padding: 100px 0;}
}
@media screen and (max-width: 960px) {
    .sec5{padding: 80px 0;}
    .sec5 .compare{gap: 16px;}
}
@media screen and (max-width: 650px) {
    .sec5{padding: 50px 0;}
    .sec5 .compare{flex-direction: column;}
    .sec5 .col{max-width: 100%;}
    .sec5 .compare-arrow{transform: rotate(90deg);}
}



/* sec6 - 운영 플로우 */
.sec6{padding: 150px 0; background: #141414;}
.sec6 .flow{margin-top: 70px; display: flex; gap: 20px; position: relative;}
.sec6 .flow::before{content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 100vw; top: 96px; height: 2px; background: linear-gradient(90deg, rgba(230,176,70,.15), rgba(230,176,70,.6), rgba(230,176,70,.15));}
.sec6 .flow-step{flex: 1; position: relative;}
.sec6 .flow-step .ic{display: block; width: 36px; height: 36px; color: var(--main-color);}
.sec6 .flow-step .ic svg{width: 100%; height: 100%;}
.sec6 .flow-step h4{margin-top: 20px; font-size: var(--font-18px); font-weight: 600;}
.sec6 .flow-step h4 em{font-style: normal; font-size: 13px; color: var(--main-color);}
.sec6 .flow-step::after{content: ''; position: absolute; left: 0; top: 88px; width: 16px; height: 16px; border-radius: 50%; background: var(--main-color); box-shadow: 0 0 0 4px rgba(230,176,70,.2);}
.sec6 .flow-step p{margin-top: 36px; font-size: 14px; line-height: 1.5; color: #b9b9b9;}
@media screen and (max-width: 1250px) {
    .sec6{padding: 100px 0;}
    .sec6 .flow-step h4{min-height: calc(2 * 1.4em);}
    .sec6 .flow::before{top: 128px;}
    .sec6 .flow-step::after{top: 120px;}
}
@media screen and (max-width: 960px) {
    .sec6{padding: 80px 0;}
    .sec6 .flow{flex-wrap: wrap; gap: 30px 20px;}
    .sec6 .flow::before{display: none;}
    .sec6 .flow-step{flex: 0 0 calc(33.333% - 14px);}
    .sec6 .flow-step::after{display: none;}
    .sec6 .flow-step p{margin-top: 14px;}
}
@media screen and (max-width: 650px) {
    .sec6{padding: 50px 0;}
    .sec6 .flow-step{flex: 0 0 calc(50% - 10px);}
}

/* sec7 - 데이터/사례 */
.sec7{padding: 150px 0; background: #161b1e;}
.sec7 .proof{margin-top: 70px; display: flex; flex-direction: column; gap: 50px;}
.sec7 .proof-row{display: flex; gap: 120px; align-items: flex-start;}
.sec7 .proof-img{width: 46%; flex-shrink: 0; aspect-ratio: 198 / 121; border-radius: 20px; background: #0d0d0d; display: flex; align-items: center; justify-content: center; text-align: center; color: #888; font-size: var(--font-18px); line-height: 1.5;}
.sec7 .proof-img img{width: 100%; height: 100%; object-fit: cover;}
.sec7 .proof-body{flex: 1; text-align: left;}
.sec7 .proof-body .num{display: inline-block; color: var(--main-color); font-size: var(--font-18px); font-weight: 500; position: relative;}
.sec7 .proof-body .num::before{content: ''; position: absolute; right: calc(100% + 22px); top: 50%; transform: translateY(-50%); width: 77px; height: 8px; opacity: .5; background: radial-gradient(circle 3.8px at 4px 50%, var(--main-color) 99%, transparent 100%) no-repeat, radial-gradient(circle 3.8px at calc(100% - 4px) 50%, var(--main-color) 99%, transparent 100%) no-repeat, linear-gradient(var(--main-color) 0 0) no-repeat; background-size: 100% 100%, 100% 100%, 100% 1px; background-position: 0 0, 0 0, 0 50%;}
.sec7 .proof-body > p{margin: 18px 0 24px; font-size: var(--font-24px); line-height: 1.5; color: #e6e6e6;}
.sec7 .proof-body ul{display: flex; flex-direction: column; gap: 10px;}
.sec7 .proof-body ul li{background: #0e1316; border: 1px solid rgba(255,255,255,.06); border-radius: 8px; padding: 12px 18px; font-size: var(--font-18px); color: #cfcfcf;}
.sec7 .proof-img.proof-slider{display: block; position: relative; overflow: hidden;}
.sec7 .proof-slider .proof-slide{position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease;}
.sec7 .proof-slider .proof-slide.is-active{opacity: 1;}
@media screen and (max-width: 1250px) {
    .sec7{padding: 100px 0;}
    .sec7 .proof-row{gap: 80px;}
    .sec7 .proof-body .num::before{width: 56px; right: calc(100% + 14px);}
}
@media screen and (max-width: 960px) {
    .sec7{padding: 80px 0;}
    .sec7 .proof-row{gap: 30px;}
    .sec7 .proof-body .num::before{display: none;}
}
@media screen and (max-width: 800px) {
    .sec7 .proof-row{flex-direction: column; gap: 20px;}
    .sec7 .proof-img{width: 100%;}
}
@media screen and (max-width: 650px) {
    .sec7{padding: 50px 0;}
    .sec7 .proof{margin-top: 40px; gap: 36px;}
    .sec7 .proof-body .num::before{display: none;}
}

/* sec8 - 반응하는 구조 */
.sec8{padding: 150px 0; background: #141414;}
.sec8 .sec8-wrap{display: flex; gap: 80px; align-items: flex-start;}
.sec8 .sec8-wrap .title-box{flex: 1;}
.sec8 .feature-list{width: 600px; flex-shrink: 0; display: flex; flex-direction: column; gap: 16px;}
.sec8 .feature-list li{background: #1c1c1c; border-radius: 12px; padding: 24px 28px;}
.sec8 .feature-list h4{font-size: var(--font-24px); font-weight: 600; color: var(--main-color); margin-bottom: 10px;}
.sec8 .feature-list p{font-size: var(--font-18px); line-height: 1.4; color: #cfcfcf;}
@media screen and (max-width: 1250px) {
    .sec8{padding: 100px 0;}
    .sec8 .sec8-wrap{gap: 40px;}
    .sec8 .feature-list{width: 50%;}
}
@media screen and (max-width: 960px) {
    .sec8{padding: 80px 0;}
    .sec8 .sec8-wrap{flex-direction: column; gap: 36px;}
    .sec8 .sec8-wrap .title-box{position: static; flex: none;}
    .sec8 .feature-list{width: 100%;}
}
@media screen and (max-width: 650px) {
    .sec8{padding: 50px 0;}
}

/* sec9 - 가격 */
.sec9{padding: 50px 0; width: calc(100% - 200px); margin: 0 auto;  border-radius: 30px; background: radial-gradient(ellipse at top, rgba(230,176,70,.28) 0%, rgba(230,176,70,.08) 70%); }
.sec9 .price-box{padding: 30px 0; display: flex; justify-content: center; gap: 36px;}
.sec9 .plan{width: 447px; max-width: 100%; background: #141414; border-radius: 12px; overflow: hidden; box-shadow: 5px 11px 22px rgba(0,0,0,.3); display: flex; flex-direction: column;}
.sec9 .plan-head{background: #000; text-align: center; padding: 16px; color: var(--main-color); font-size: var(--font-18px); font-weight: 500;}
.sec9 .plan-visual{position: relative; height: 250px; background: #141414; overflow: hidden;}
.sec9 .plan-visual .calendar{z-index: 2;}
.sec9 .plan-visual .ptc{position: absolute; height: auto; z-index: 1;}
/* plan1 - 지폐/동전 (figma 배치) */
.sec9 .pv1 .b1{left: 81.9%; top: 53.9%; width: 28%; transform: translate(-50%,-50%) rotate(-65deg); opacity: .8;}
.sec9 .pv1 .b2{left: 14.6%; top: 58.5%; width: 31.6%; transform: translate(-50%,-50%) rotate(15deg); opacity: .4;}
.sec9 .pv1 .c1{left: 98.4%; top: 45.1%; width: 11.8%; transform: translate(-50%,-50%) rotate(82deg);}
.sec9 .pv1 .c2{left: 22.1%; top: 83%; width: 10.3%; transform: translate(-50%,-50%) rotate(30deg);}
/* plan2 - 지폐/동전 (figma 배치) */
.sec9 .pv2 .b1{left: 10.1%; top: 35.7%; width: 28%; transform: translate(-50%,-50%) rotate(10.5deg); opacity: .8;}
.sec9 .pv2 .b2{left: 56.5%; top: 26.7%; width: 28%; transform: translate(-50%,-50%) rotate(-45deg); opacity: .8;}
.sec9 .pv2 .b3{left: 86.7%; top: 90.8%; width: 31.6%; transform: translate(-50%,-50%) rotate(15deg); opacity: .4;}
.sec9 .pv2 .c1{left: 104.5%; top: 17.7%; width: 11.8%; transform: translate(-50%,-50%) rotate(36deg);}
.sec9 .pv2 .c2{left: 22.1%; top: 58%; width: 10.3%; transform: translate(-50%,-50%) rotate(49deg);}
.sec9 .calendar{position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 110px; height: 120px; background: #fff; border-radius: 12px; box-shadow: 5px 11px 16px rgba(0,0,0,.3); display: flex; align-items: center; justify-content: center;}
.sec9 .calendar .cal-rings{position: absolute; top: -8px; left: 0; right: 0; display: flex; justify-content: space-around; padding: 0 22px;}
.sec9 .calendar .cal-rings::before, .sec9 .calendar .cal-rings::after{content: ''; width: 8px; height: 16px; background: #ddd; border-radius: 4px;}
.sec9 .calendar .cal-day{color: #222; font-size: 34px; font-weight: 700; margin-top: 24px;}
.sec9 .plan-price{background: #2a2a2a; padding: 10px 0; text-align: center; flex: 1; display: flex; flex-direction: column; justify-content: center;}
.sec9 .plan-price .plan-name{display: block; color: var(--main-color); font-size: var(--font-28px, 28px); font-weight: 700;}
.sec9 .plan-price .amount{margin-top: 6px; font-weight: 900; background: linear-gradient(180deg, #fff 28%, #999 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-size: 40px;}
.sec9 .plan-price .amount b{font-size: 70px; font-weight: 900;}
.sec9 .plan-price .amount-note{display: block; margin-top: 8px; color: #fff; font-size: var(--font-18px); font-weight: 700; -webkit-text-fill-color: #fff;}
.sec9 .plan-btn{display: block; margin: 20px auto; width: 200px; max-width: calc(100% - 40px); text-align: center; padding: 12px; border-radius: 6px; background: #000; border: .5px solid var(--main-color); color: var(--main-color); font-size: 16px;}
.sec9 .plan-btn span{margin-left: 8px;}
.sec9 .price-note{text-align: center; font-size: var(--font-24px); line-height: 1.4; color: #fff;}
@media screen and (max-width: 1250px) {
    .sec9{padding: 100px 0;}
    .sec9 .price-box{padding: 50px 30px; gap: 24px;}
}
@media screen and (max-width: 960px) {
    .sec9{padding: 80px 0;}
    .sec9{width: calc(100% - 100px);}
    .sec9 .price-box{padding: 40px 0;}
    .sec9 .plan-price .amount b{font-size: 48px;}
}
@media screen and (max-width: 650px) {
    .sec9{padding: 50px 0;}
    .sec9{width: calc(100% - 40px);}
    .sec9 .price-box{flex-direction: column; align-items: center; padding: 30px 0;}
    .sec9 .plan{width: 100%; max-width: 420px;}
    .sec9 .plan-price .amount b{font-size: 32px;}
    .sec9 .price-note br{display: none;}
}

/* CTA */
.sec-cta{margin-top: 100px; position: relative; padding: 100px 0; background: url('../img/main/cta-bg.png') no-repeat center center / cover;}
.sec-cta::before{content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.4);}
.sec-cta .inner{position: relative; z-index: 1;}
.sec-cta .cta-title{font-size: var(--font-38px); font-weight: 600; line-height: 1.4;}
.sec-cta .cta-btns{margin-top: 40px; display: flex; gap: 24px;}
.sec-cta .cta-btns > *{width: 384px; max-width: 100%; text-align: center; padding: 18px; font-size: var(--font-24px); background: rgba(0,0,0,.2); border-top: 1px solid #ac9d7b; border-bottom: 1px solid #ac9d7b; backdrop-filter: blur(2px); transition: background .25s ease;}
.sec-cta .cta-btns > *:hover{background: rgba(0,0,0,.45);}
.sec-cta .cta-btns > * span{margin-left: 10px;}
@media screen and (max-width: 960px) {
    .sec-cta .cta-btns{gap: 16px;}
    .sec-cta .cta-btns > *{padding: 16px 0;}
}
@media screen and (max-width: 650px) {
    .sec-cta{padding: 70px 0;}
    .sec-cta .cta-btns{flex-direction: column; gap: 14px;}
    .sec-cta .cta-btns > *{width: 100%;}
}

/* footer */
.footer{background: #282828; padding: 50px 0;}
.footer .footer-top{display: flex; align-items: flex-start; gap: 40px;}
.footer .footer-logo{width: 147px; flex-shrink: 0;}
.footer .footer-logo img{width: auto; height: 80px; object-fit: contain;}
.footer .footer-info{flex: 1; padding-top: 4px;}
.footer .footer-info p{font-size: 16px; line-height: 1.6; color: #fff;}
.footer .footer-nav{display: flex; gap: 24px; flex-wrap: wrap; padding-top: 4px;}
.footer .footer-nav li{font-size: var(--font-18px); font-weight: 500;}
.footer .footer-bottom{margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;}
.footer .footer-bottom span{font-size: 16px; color: #adadad;}
@media screen and (max-width: 960px) {
    .footer .footer-logo img{height: 60px;}
    .footer .footer-nav{gap: 16px;}
}
@media screen and (max-width: 650px) {
    .footer .footer-logo img{height: 50px;}
    .footer .footer-top{flex-direction: column; gap: 12px;}
    .footer .footer-bottom{flex-direction: column; gap: 8px;}
    .footer .footer-nav{gap: 12px;}
}
/* ===== 제휴 파트너 신청 (contact) ===== */
.contact-main{ position: relative; width: 100%; min-height: 100vh; padding: 160px 20px 80px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #141414; background: url('../img/main/main-sec1-bg.jpg') no-repeat center center / cover;}
.contact-card{ position: relative; z-index: 1; width: 484px; max-width: 100%; background: #4d5155; border-radius: 10px; box-shadow: 7px 14px 14px rgba(0,0,0,.25); padding: 56px 42px 40px; }
.contact-card .ct-title{ text-align: center; font-size: 52px; font-weight: 700; line-height: 1.2; text-shadow: 0 4px 12px rgba(0,0,0,.15); background: linear-gradient(90deg, #FFEEC3 0%, #E8C878 27.7%, #F3B744 58.77%, #FFEEC3 87.5%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.contact-card .ct-sub{ margin-top: 16px; text-align: center; font-size: 16px; font-weight: 600; line-height: 1.3; color: #fff; }

.contact-card .ct-form{ margin-top: 32px; }
.contact-card .field{ margin-bottom: 18px; }
.contact-card .field label{ display: block; margin-bottom: 8px; font-size: 17px; color: #fff; letter-spacing: -0.02em; }
.contact-card .field label span{ color: #eb5757; }
.contact-card .field input{ width: 100%; height: 43px; padding: 0 13px; background: #4d5155; border: 0.864px solid #e1e1e1; border-radius: 4px; font-size: 14px; color: #fff; letter-spacing: -0.02em; }
.contact-card .field input::placeholder{ color: rgba(255,255,255,.35); }
.contact-card .field input:focus{ outline: none; border-color: var(--main-color); }

.contact-card .ct-submit{ display: block; width: 100%; height: 60px; margin-top: 8px; background: #282828; border: none; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,.25); color: #f3b744; font-size: 18px; font-weight: 700; cursor: pointer; transition: background .25s ease; }
.contact-card .ct-submit:hover{ background: #1c1c1c; }

.contact-card .ct-info{ margin-top: 20px; padding: 14px 16px 16px; background: #5e6266; border-radius: 10px; }
.contact-card .ct-info h2{ text-align: center; font-size: 16px; font-weight: 600; color: #fff; }
.contact-card .ct-info ul{ margin-top: 10px; }
.contact-card .ct-info li{ position: relative; padding-left: 12px; font-size: 14px; font-weight: 500; line-height: 20px; color: #fff; }
.contact-card .ct-info li + li{ margin-top: 2px; }
.contact-card .ct-info li::before{ content: '-'; position: absolute; left: 0; }

@media screen and (max-width: 650px) {
    .contact-main{ padding: 120px 16px 60px; }
    .contact-card{ padding: 40px 24px 28px; border-radius: 12px; }
    .contact-card .ct-title{ font-size: 36px; }
    .contact-card .ct-sub{ font-size: 15px; }
    .contact-card .ct-form{ margin-top: 26px; }
    .contact-card .field label{ font-size: 16px; }
    .contact-card .ct-info li{ font-size: 13px; }
}

/* ===== 결제 팝업 (pay-popup) ===== */
.plan-btn{ cursor: pointer; }
.pay-popup{ position: fixed; inset: 0; z-index: 11000; display: none; align-items: center; justify-content: center; padding: 12px; }
.pay-popup.is-open{ display: flex; }
.pay-popup .pay-dim{ position: absolute; inset: 0; background: rgba(0,0,0,.8); }
.pay-popup .pay-card{ position: relative; z-index: 1; width: 100%; max-width: 620px; background: #4d5155; border-radius: 10px; box-shadow: 7px 14px 14px rgba(0,0,0,.25); padding: 52px 48px 40px; }
.pay-popup .pay-close{ position: absolute; top: -36px; right: 0; width: 24px; height: 24px; padding: 0; border: none; background: none; cursor: pointer; }
.pay-popup .pay-close svg{ width: 100%; height: 100%; display: block; }
.pay-popup .pay-plan-label{ display: block; text-align: center; font-size: 16px; font-weight: 600; color: #fff; }
.pay-popup .pay-title{ margin-top: 8px; text-align: center; font-size: 52px; font-weight: 700; line-height: 1.2; text-shadow: 0 4px 12px rgba(0,0,0,.15); background: linear-gradient(90deg, #FFEEC3 0%, #E8C878 27.7%, #F3B744 58.77%, #FFEEC3 87.5%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.pay-popup .pay-form{ margin-top: 30px; }
.pay-popup .field{ margin-bottom: 18px; }
.pay-popup .field label{ display: block; margin-bottom: 8px; font-size: 17px; color: #fff; letter-spacing: -0.02em; }
.pay-popup .field label span{ color: #eb5757; }
.pay-popup .field input{ width: 100%; height: 43px; padding: 0 13px; background: #4d5155; border: 0.864px solid #e1e1e1; border-radius: 4px; font-size: 14px; color: #fff; letter-spacing: -0.02em; }
.pay-popup .field input::placeholder{ color: rgba(255,255,255,.35); }
.pay-popup .field input:focus{ outline: none; border-color: var(--main-color); }
.pay-popup .pay-submit{ display: block; width: 100%; height: 60px; margin-top: 8px; background: #282828; border: none; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,.25); color: #f3b744; font-size: 18px; font-weight: 700; cursor: pointer; transition: background .25s ease; }
.pay-popup .pay-submit:hover{ background: #1c1c1c; }
/* 결제 완료 팝업 */
.pay-popup.complete .pay-card{ padding: 36px 42px 40px; text-align: center; }
.pay-popup.complete .pay-logo{ width: 160px; margin: 0 auto; }
.pay-popup.complete .pay-logo img{ width: 100%; height: auto; object-fit: contain; }
.pay-popup.complete .pay-title{ margin-top: 14px; font-size: 42px; }
.pay-popup.complete .pay-desc{ margin-top: 20px; font-size: 16px; font-weight: 600; line-height: 20px; color: #fff; }
.pay-popup.complete .pay-submit{ margin-top: 30px; display: flex; align-items: center; justify-content: center; text-decoration: none; }
@media screen and (max-width: 650px) {
    .pay-popup{ padding: 8px 10px; }
    .pay-popup .pay-card{ width: 100%; max-width: none; padding: 36px 20px 28px; border-radius: 12px; }
    .pay-popup .pay-title{ font-size: 36px; }
    .pay-popup .pay-form{ margin-top: 24px; }
    .pay-popup .field label{ font-size: 16px; }
    .pay-popup .field input{ height: 48px; font-size: 15px; }
    .pay-popup .pay-submit{ height: 56px; }
    .pay-popup .pay-close{ top: -32px; width: 22px; height: 22px; }
    .pay-popup.complete .pay-card{ padding: 32px 20px 28px; }
    .pay-popup.complete .pay-logo{ width: 130px; }
    .pay-popup.complete .pay-title{ font-size: 28px; }
    .pay-popup.complete .pay-desc{ font-size: 14px; line-height: 1.5; }
    .pay-popup.complete .pay-desc br{display: none;}
}

#payModal{  position: fixed; left: 0; top: 0; z-index: 99999; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; }
#payModal .modal-inner{ width: 700px; max-width: 100%; display: flex; align-items: flex-end; justify-content: center; flex-direction: column; }
#payModal iframe{ width: 700px; max-width: 100%; height: 634px; }
#payModal #closeModal{ width: 30px; height: 30px; background-color:#222; border-radius: 50%; border: none; }

@media screen and (max-width: 650px) {
    #payModal iframe{ height: 600px; }
}

.pay-note{ margin:0 0 16px; padding:12px; border:1px solid rgba(232,193,95,0.3); background:rgba(232,193,95,0.08); border-radius:8px; font-size:14px; line-height:1.6; color:#E8C15F; text-align:center; }