﻿}


/* ── 체크리스트 팝업 오버레이 ── */
#checklist-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#checklist-popup.open {
    display: flex;
}

/* ── 팝업 카드: 좌우 분할 레이아웃 ── */
.cl-popup-card {
    background: #fff;
    border-radius: 6px;
    width: 100%;
    max-width: 520px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    display: flex;
    flex-direction: row;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

#checklist-popup.open .cl-popup-card {
    animation: clSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes clSlideUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── 닫기 버튼 ── */
.cl-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #888;
    transition: background 0.2s, color 0.2s;
    z-index: 10;
}

.cl-close-btn:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #111;
}

/* ── 좌: 이미지 ── */
.cl-image-area {
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.cl-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cl-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.04) 100%);
}

/* ── 우: 텍스트 ── */
.cl-body {
    flex: 1;
    padding: 32px 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cl-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #aaa;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.cl-title {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: -0.03em;
    color: #111;
    margin: 0 0 16px 0;
}

.cl-divider {
    width: 32px;
    height: 1px;
    background: #ddd;
    margin-bottom: 20px;
}

.cl-desc {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
    color: #888;
    margin: 0 0 24px 0;
    word-break: keep-all;
}

/* ── 버튼 ── */
.cl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cl-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

.cl-btn svg {
    transition: transform 0.2s ease;
}

.cl-btn:hover svg {
    transform: translateY(2px);
}

@media (max-width: 600px) {

    /* 좌우 레이아웃 유지, 전체 크기만 축소 */
    #checklist-popup {
        align-items: center;
        padding: 16px;
    }

    .cl-popup-card {
        max-width: calc(100vw - 32px);
        flex-direction: row;
        border-radius: 8px;
    }

    .cl-image-area {
        flex: 0 0 38%;
        min-height: 0;
    }

    .cl-body {
        padding: 20px 16px 20px;
    }

    .cl-label {
        font-size: 9px;
        margin: 0 0 10px 0;
    }

    .cl-title {
        font-size: 14px;
        margin: 0 0 10px 0;
    }

    .cl-divider {
        margin-bottom: 10px;
    }

    .cl-desc {
        font-size: 10px;
        line-height: 1.6;
        margin: 0 0 14px 0;
    }

    .cl-btn {
        padding: 11px 20px;
        font-size: 11px;
    }
}


/* ── 팝업 오버레이 ── */
#coming-soon-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#coming-soon-popup.open {
    display: flex;
}

#coming-soon-popup.open .cs-popup-card {
    animation: csSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── 카드 ── */
.cs-popup-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px 32px;
    max-width: 320px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px);
}

/* ── 텍스트 ── */
.cs-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

.cs-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 28px;
    word-break: keep-all;
}

/* ── 버튼 ── */
.cs-confirm-btn {
    width: 100%;
    padding: 14px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.cs-confirm-btn:hover {
    background: #333;
}

@keyframes csSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.site-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(5px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s
}

.site-modal-overlay.show {
    opacity: 1;
    visibility: visible
}

.site-modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) scale(.95);
    width: 85%;
    max-width: 360px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .8);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: .5s cubic-bezier(.16, 1, .3, 1)
}

.site-modal-container.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible
}

.site-modal-video {
    position: relative;
    width: 100%;
    height: 320px;
    background: #000
}

.site-modal-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.site-modal-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .65);
    z-index: 1
}

.site-modal-text-over {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px
}

.modal-text-list {
    display: flex;
    flex-direction: column;
    width: 100%
}

.modal-text-hl {
    color: #63b3ed;
    /* 하늘색 하이라이팅 */
    font-weight: 800;
    /* 하이라이팅된 단어를 살짝 더 두껍게 강조 */
}

.modal-text-item {
    position: relative;
    font-family: Pretendard, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, .95);
    padding: 16px 0;
    letter-spacing: -.03em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, .9);
    text-align: center
}

.modal-text-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4) 50%, transparent)
}

.modal-text-item:last-child::after {
    display: none
}

.site-modal-footer {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.site-modal-btn {
    flex: 1;
    background: #111;
    color: rgba(255, 255, 255, .8);
    border: none;
    padding: 18px 0;
    font-family: Pretendard, sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s
}

.site-modal-btn.close-btn {
    font-weight: 800;
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, .1)
}

@media(max-width:480px) {
    .site-modal-video {
        height: 260px
    }

    .modal-text-item {
        font-size: 18px
    }
}

/* Complaints Hero Card (Refined Image Background) */
.oc-complaints-hero {
    flex: 0 0 720px;
    max-width: calc(100vw - 80px);
    height: 520px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    max-width: calc(100vw - 40px);
}

.comp-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: brightness(0.6) blur(2px) sepia(0.2) hue-rotate(180deg) saturate(0.5);
    /* dark cool tone */
    transition: transform 3s ease;
}

.oc-complaints-hero:hover .comp-bg {
    transform: scale(1.05);
}

.comp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(30, 42, 56, 0.6) 0%, rgba(15, 20, 25, 0.9) 100%);
    z-index: 1;
}
