@charset "utf-8";
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css'); 
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&display=swap');


:root{
    --dark-bg: #000000;
    --navy-bg: #1a1d2e;
    --text-white: #ffffff;
    --text-gray: #999999;
    --highlight-color: #37FF8B; 

    /* --color-white: #fff;
    --color-black-txt: #131313;
    --color-main-bg: #4C2B29;
    --color-gradient: #2D1817;
    --color-gradient-rgb: 45, 24, 23; */
    --main_color: #604899; 
    --sub_color: #351e72;
    --sub_color2: #a58eea; 
    --sub_color3:#5934bd;
    --light_gray: #f9f9f9;
    --light_gray2: #dcdcdc;
    --light_gray3: #a0a0a0;    
    --light_m_color: #f7f8ff;
    --light_m_color2: #d0d0d0;
    --main_txt: #131313;
    --wt_txt: #ffffff;

    --main_bg: #25183a;

    --main_font_bold: 500;
    --main_font_light: 300;
    
    --highligth: rgba(41,62,239,.1);

    --mo_gnb_bg: #0c081b;

    --hover_bg: #fff;
    --line: #ececec;
    --text: #1a1a1a;
    --text_sub: #666;

}


@media only screen and (max-width : 1024px) {
    html {
        font-size : 55%;
    }
}
@media only screen and (max-width : 640px) {
    html {
        font-size : 58%;
    }
}

body {
    width : 100%;
    min-height : 100%;
    font-size : 1.6rem;
    color : #131313;
    overflow-x : hidden;
    -webkit-text-size-adjust : none;
    padding : 0;
    margin : 0;
}

a:link,
a:visited,
a:active,
a:hover {
    text-decoration : none;
    color:inherit;
}

button {
    outline: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    -webkit-appearance : none;
    -moz-appearance : none;
    appearance : none;
}
img{
    max-width: 100%;
    vertical-align: middle;
    outline: 0;
}




/* 히어로 섹션 */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(180deg, #000000 0%, #0d0a14 50%, #000000 100%);
    color: var(--text-white);
}

.hero-container {
    color: #fff;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* 왼쪽 콘텐츠 */
.hero-content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-pretitle {
    font-size: 2.2rem;
    margin-bottom: .8rem;
    font-weight: 300;
    letter-spacing: -0.3px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--sub_color2);
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}

/* 질문 섹션 */
.question-section {
    background: rgba(33, 26, 46, 0.5);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.question-badge {
    display: inline-block;
    background: var(--sub_color2);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.question-text {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.question-text strong {
    color: var(--sub_color2);
    font-weight: 700;
}

.answer-text {
    font-size: 20px;
    color: var(--text-white);
    font-weight: 300;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(223, 223, 223, 0.2);
    letter-spacing: -0.3px;
}

/* 하이라이트 텍스트 - 스트로크 외곽선이 채워지는 효과 */
.point-txt{color: var(--sub_color3);}
.point-txt-green{color: var(--highlight-color);}


.highlight-text {
    position: relative;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    line-height: 1.4;
}

.highlight-stroke {
    display: inline-block;
}

.highlight-fill {
    position: absolute;
    inset: 0;
    width: 0;
    color: var(--highlight-color);
    overflow: hidden;
    white-space: nowrap;
    animation: highlightSweep 1s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}

@keyframes highlightSweep {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}



/* 특징 리스트 */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    letter-spacing: -0.3px;
}

.feature-bullet {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    flex-shrink: 0;
    background: none;
    border-radius: 0;
    color: var(--sub_color2);
}

.feature-bullet svg {
    width: 100%;
    height: 100%;
}



/* ============================================
   자격 2x2 그리드
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(165, 142, 234, 0.08);
    border-color: rgba(165, 142, 234, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--sub_color2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card span {
    font-size: 1.4rem;
    color: #d0c8e8;
    line-height: 1.4;
    letter-spacing: -0.2px;
    font-weight: var(--main_font_bold);
}



/* CTA 버튼 */
.cta-button {
    display: inline-block;
    /* width: 100%; */
    background: var(--main_color);
    color: #000;
    padding: 16px 50px;
    font-size: 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    /* transition: all 0.3s; */
    letter-spacing: -0.3px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    background: var(--sub_color2);
    box-shadow: 0 10px 25px rgba(165, 142, 234, 0.3);
}

.cta-button:active {
    transform: scale(0.97);
}

.cta-button > svg {
    width: 34px;
    height: 34px;
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
}

.cta-button:hover > svg {
    transform: translateX(5px);
}


/*---- 260520 추가 ----*/

/* CTA - PC 블랙 가로 배치 (기본)              */

.bottom_right{
    height: 100%;
}

.slogan-line1 {
    color:rgb(226, 220, 245);
}

.slogan-line2 {
    color: rgb(255, 216, 77);
}

/* 버튼 그룹 */
.cta-buttons {
    display: flex;
}

.cta-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    padding: 0 30px;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    height: 100%;
}


.cta-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-item:active {
    background: rgba(255, 255, 255, 0.05);
}

.cta-icon {
    font-size: 22px;
    color: #fff;
}

.cta-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

/* 전화 버튼만 2줄 구조 */
.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.cta-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.cta-phone {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3px;
}


.consult-btn__ico,
.consult-btn__ico svg,
.consult-btn__ico svg * {
    pointer-events: none;
}

/* .bottom_banner{
    background: linear-gradient(90deg, rgb(11, 24, 56) 0%, rgb(58, 31, 122) 55%, rgb(108, 70, 198) 100%);
    z-index: 999;
} */


/* 안전하게 부모 a 태그가 무조건 클릭 받도록 */
.bottom_banner.cta .consult-btn {
    position: relative;
    z-index: 10;
}

/* PC 중간 사이즈 (901px ~ 1200px) */
@media (max-width: 1200px) and (min-width: 901px) {
    .slogan-area {
        padding: 0 30px;
    }

    .slogan-text {
        font-size: 18px;
    }

    .cta-item {
        padding: 0 24px;
    }
}

/* CTA - 모바일 화이트 그리드 (900px 이하)      */
/* ============================================ */
@media (max-width: 900px) {

    /* footer 자체를 하단 고정 + 화이트 + 그리드로 변신 */
    .bottom_banner.cta {
        display: block;
        /* background: linear-gradient(180deg, #534AB7 0%, #3C3489 100%); */
    }

    .bottom_right{
        width: 100%;
    }

    /* 슬로건은 모바일에서 숨김 */
    .slogan-area {
        display: none;
    }

    /* 버튼 그룹을 3분할 그리드로 */
    .cta-buttons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .bottom_contain a:first-child{
        border-left: 0;
    }

    .cta-item {
        flex-direction: column;
        gap: 6px;
        padding: 14px 12px;
        height: auto;
        border-right: 0.5px solid rgba(255, 255, 255, 0.1);
    }

    .cta-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* 아이콘/텍스트 색상 보라색으로 */
    .cta-icon {
        color:#fff;
    }

    .consult-btn__ico svg{
        color:#fff;
    }

    .cta-title, .cta-label {
        font-size: 12px;
        color:#fff;
    }

    /* 전화 버튼 2줄 구조 → 1줄(라벨)로 축소 */
    .cta-content {
        align-items: center;
        gap: 0;
    }

    .cta-phone {
        font-size: 12px;
        font-weight: 500;
        color:#fff;
        letter-spacing: 0;
    }

    .bottom_contain a:first-child{
    border-left: none;
}
}




/* 오른쪽 프로필 섹션 */
.hero-profile {
    animation: fadeInRight 1s ease-out;
}


@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.profile-card {
    background: linear-gradient(135deg, rgba(33, 26, 46, 0.8), rgba(16, 10, 20, 0.6));
    position: relative;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sub_color2), transparent);
}

.profile-photo-wrapper {
    width: 100%;
    margin-bottom: 25px;
    position: relative;
    
}
.profile-photo-box{
    padding: 3rem 3rem 0;
}

.profile-photo {
    width: 100%;
    height: auto;
    display: block;
}



.profile-name-box{
    text-align: center;
    position: absolute;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2rem 1.2rem;
    width: 100%;
    bottom: 0;
}


.profile-name {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* 경력 리스트 */
.credentials {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.credential-item {
    font-size: 14px;
    color: var(--text-gray);
    padding-left: 12px;
    position: relative;
    line-height: 1.6;
    letter-spacing: -0.3px;
}

.credential-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sub_color2);
    font-weight: bold;
}

.credential-section {
    background: rgba(212, 165, 116, 0.08);
    border-left: 3px solid var(--sub_color2);
    padding: 15px;
    margin: 10px 0;
    border-radius: 4px;
}

.credential-section-title {
    font-size: 14px;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nis-badge {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.nis-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.credential-section .credential-item {
    color: var(--text-white);
}

/* 증명서 섹션 */
.certificates {
    margin-top: 0;
    padding: 0 3rem 3rem;
}

.certificates-title {
    font-size: 15px;
    color: var(--sub_color2);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.3px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.certificate-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    border: 2px solid rgba(212, 165, 116, 0.3);
    background: white;
    padding: 15px;
}

.certificate-item:hover {
    transform: scale(1.05);
    border-color: var(--sub_color2);
}

.certificate-item img {
    width: 100%;
    height: auto;
    display: block;
}

.certificate-label {
    margin-top: 10px;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    color: var(--main_txt);
    font-weight: 700;
    letter-spacing: -0.2px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}


.m-hero-container{
    display: none;
}

/* 반응형 - 태블릿 */
@media (max-width: 1024px) {
    .hero {
        width: 100%;
        padding-top: 0;
        height: 812px;
        min-height: unset;
        overflow: hidden;
        position: relative;
        border-radius: 0 0 3.8rem 3.8rem;
    }
    .hero-container {
        display: none;
    }
    .m-hero-container{
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }    
    .hero-title {
        font-size: 42px;
    }

    .question-text {
        font-size: 2.6rem;
    }

    .answer-text {
        font-size: 18px;
    }
}


/* 반응형 - 모바일 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 30px;
    }

    .question-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .question-badge {
        padding: 5px 12px;
        margin-bottom: 15px;
    }

    .question-text {
        margin-bottom: 12px;
    }

    .answer-text {
        margin-top: 12px;
        padding-top: 12px;
    }


    .features-grid {
        gap: 8px;
        margin-bottom: 24px;
    }

    .feature-card {
        padding: 12px;
        gap: 10px;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
    }


    .profile-photo-box{
        padding: 2rem 2rem 0;
    }
    .profile-name {
        font-size: 24px;
    }

    .profile-title {
        font-size: 14px;
    }

    .certificates{
        padding: 0 2rem 2rem;
    }

    .credential-item {
        font-size: 13px;
    }

    .credential-section-title {
        font-size: 13px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .certificate-label {
        font-size: 10px;
        padding: 5px;
    }
}

/* 아주 작은 모바일 */
@media (max-width: 480px) {
    .answer-text {
        line-height: 1.4;
    }

}




/* 대표성공사례 260601 */
#dsc-pc .dsc-grid {
    display: grid ;
    grid-template-columns: repeat(3, 1fr);  /* 4열→3열 변경 */
    gap: 20px ;
    padding: 0 16px;
    margin: 0 auto 10px;
    max-width: 1200px;  /* 3열에도 충분한 너비 */
    box-sizing: border-box ;
    width: 100% ;
}
/* 태블릿 중간 구간: 2열로 전환 */
@media (max-width: 1100px) {
    #dsc-pc .dsc-grid {
        grid-template-columns: repeat(2, 1fr);  /* 태블릿: 2열 */
    }
}
@media (max-width: 768px) {
    #dsc-pc .dsc-grid{
        display: block;
        padding: 0;
    }
    #dsc-pc .dsc-grid .dsc-card{
        margin-bottom: 16px;
    }

    #dsc-pc .dsc-grid .dsc-card:last-child{
        margin-bottom: 0;
    }
}
/* ──────────────────────────────────────────────
   카드
   ────────────────────────────────────────────── */
#dsc-pc .dsc-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #1a1a2e;
    cursor: pointer;
    padding: 0;
    border: none;
    width: 100%;
    float: none;
    margin: 0 ;
    height: auto;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
#dsc-pc .dsc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.16);
}

/* ──────────────────────────────────────────────
   오버레이
   ────────────────────────────────────────────── */
#dsc-pc .dsc-card .dsc-overlay {
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0) 56%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 14px;
    z-index: 2;
}

/* ──────────────────────────────────────────────
   혐의명 / 경찰서
   ────────────────────────────────────────────── */
#dsc-pc .dsc-card .dsc-charge {
    display: block;
    font: 900 22px/1.2 inherit;  
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.45);
    margin: 0 0 4px 0;
    padding: 0;
}
#dsc-pc .dsc-card .dsc-police {
    display: block;
    font: 500 14px/1.4 inherit; 
    color: rgba(255,255,255,0.92);
    margin: 0;
    padding: 0;
}

/* ──────────────────────────────────────────────
   카드 바디 / 설명
   ────────────────────────────────────────────── */
#dsc-pc .dsc-card .dsc-body {
    display: block;
    padding: 16px;
    background: #fff;
    height: auto;
    overflow: visible;
}
#dsc-pc .dsc-card .dsc-desc {
    display: block;
    font: 400 16px/1.75 inherit;
    color: #2c3e50;
    margin: 0 0 14px 0;
    padding: 0;
    min-height: 44px;
    height: auto;
    overflow: visible;
}

/* ──────────────────────────────────────────────
   타임라인 래퍼
   ────────────────────────────────────────────── */
#dsc-pc .dsc-card .dsc-tl-wrap {
    display: block;
    position: relative;
    padding: 4px 0 4px 24px;
    margin: 0;
    background: none;
    border: none;
    height: auto;
    overflow: visible;
}
#dsc-pc .dsc-card .dsc-tl-wrap::before {
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, #d4af37, #27ae60);
    border-radius: 2px;
    font-size: 0;
}

/* ──────────────────────────────────────────────
   타임라인 각 행
   ────────────────────────────────────────────── */
#dsc-pc .dsc-card .dsc-tl-wrap .dsc-tl-row {
    display: block;
    position: relative;
    margin: 0 0 10px 0;
    padding: 0;
    background: transparent;
    border: none;
    float: none;
    width: auto;
    height: auto;
    overflow: visible;
    opacity: 1;
    visibility: visible;
}
#dsc-pc .dsc-card .dsc-tl-wrap .dsc-tl-row:last-child {
    margin-bottom: 0;
}

/* 타임라인 점 */
#dsc-pc .dsc-card .dsc-tl-wrap .dsc-tl-row::before {
    content: "";
    display: block;
    position: absolute;
    left: -20px; top: 3px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #d4af37;
    box-sizing: border-box;
    z-index: 1;
    font-size: 0;
    unicode-bidi: normal;
}
#dsc-pc .dsc-card:hover .dsc-tl-wrap .dsc-tl-row::before {
    transform: scale(1.3);
    border-color: #27ae60;
}
#dsc-pc .dsc-card .dsc-tl-wrap .dsc-tl-row.is-result::before {
    background: #27ae60;
    border-color: #27ae60;
}

/* ──────────────────────────────────────────────
   타임라인 라벨 / 값
   핵심: font 단축속성 로 reset.css "font:inherit" 완전 차단
   ────────────────────────────────────────────── */
#dsc-pc .dsc-card .dsc-tl-wrap .dsc-tl-row .dsc-tl-label {
    display: block;
    font: 700 12px/1.3 inherit; 
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0 0 1px 0;
    padding: 0;
    height: auto;
    overflow: visible;
    opacity: 1;
    visibility: visible;
}
#dsc-pc .dsc-card .dsc-tl-wrap .dsc-tl-row .dsc-tl-val {
    display: block;
    font: 600 14.5px/1.4 inherit; 
    color: #1a1a2e;
    margin: 0;
    padding: 0;
    height: auto;
    overflow: visible;
    opacity: 1;
    visibility: visible;
}
#dsc-pc .dsc-card .dsc-tl-wrap .dsc-tl-row.is-result .dsc-tl-val {
    font: 900 16px/1.4 inherit;  
    color: #27ae60;
}



/* ============================================
   반응형
   ============================================ */

/* 태블릿 */
@media (max-width: 1024px) {
    .consult-bar {
        padding: 24px 30px;
    }
    .bottom_left {
        font-size: 18px;
    }
    .consult-btn {
        padding: 11px 20px;
        font-size: 14px;
    }
}

#dsc-pc .dsc-card:hover{
    transform:translateY(-10px);
    box-shadow:0 16px 44px rgba(0,0,0,0.18);
}

#dsc-pc .dsc-card a{
    display:block;
    width:100%;
    height:100%;
    color:inherit;
    text-decoration:none;
}

/* =============================
   이미지 컨테이너
   ============================= */
#dsc-pc .dsc-img{
    position:relative;
    width:100%;
    height:150px;
    overflow:hidden;
    background:#eee;
}

/* =============================
   이미지 자체
   ============================= */
#dsc-pc .dsc-img img{
    display:block;
    width:100%;
    height:100%;
    max-width:none;
    object-fit:cover;
    transition:transform .5s ease;
    transform-origin:center center;
}

/* =============================
   카드 호버 시 이미지 확대
   ============================= */
#dsc-pc .dsc-card:hover .dsc-img img{
    transform:scale(1.1);
}

#dsc-pc .dsc-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:34px 14px 14px;
    background:linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
}

/* =============================
   혐의명 텍스트 (예: 합성대마, 필로폰 등)
   ============================= */
#dsc-pc .dsc-charge{
    margin:0 0 4px;
    color:#fff;
    font-size:25px;  
    font-weight:900;
    line-height:1.2;
    text-shadow:0 2px 8px rgba(0,0,0,.35);
    text-align:left;  
}

/* =============================
   경찰서 표기 텍스트 (Smain_by 값)
   ============================= */
#dsc-pc .dsc-police{
    margin:0;
    color:rgba(255,255,255,.9);
    font-size:16px; 
    font-weight:500;
    line-height:1.3;
    text-align:left;  
}

#dsc-pc .dsc-body{
    padding:18px;
}

#dsc-pc .dsc-desc{
    min-height:48px;
    margin:0 0 18px;
    color:#2c3e50;
    font-size:16px;  
    line-height:1.75;
    text-align:left;
    word-break:keep-all;
}

#dsc-pc .dsc-timeline{
    position:relative;
    padding-left:28px;
    text-align:left; 
}

#dsc-pc .dsc-timeline:before{
    content:'';
    position:absolute;
    left:8px;
    top:8px;
    bottom:8px;
    width:2px;
    background:linear-gradient(to bottom, #d4af37 0%, #27ae60 100%);
}

#dsc-pc .dsc-tl-row{
    position:relative;
    display:flex;
    align-items:baseline;  /* 텍스트 기준선 맞춤 */
    gap:6px;               /* 라벨-값 사이 간격 */
    text-align:left;       /* 부모 center 상속 차단 */
    margin-bottom:10px;
    height:auto;
    overflow:visible;
    visibility:visible;
    opacity:1;
}

#dsc-pc .dsc-tl-row:last-child{
    margin-bottom:0;
}

/* =============================
   타임라인 도트 (기본 상태)
   ============================= */
#dsc-pc .dsc-dot{
    position:absolute;
    left:-24px;
    top:4px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#fff;          
    border:2.5px solid #d4af37; 
    transition:border-color .35s ease, transform .35s ease;
}

/* 최종 결과 행의 도트: 기본 상태에서는 초록으로 채워짐 */
#dsc-pc .dsc-tl-row.is-result .dsc-dot{
    background:#27ae60;
    border-color:#27ae60;
}

/* =============================
   카드 호버 시 → 도트 테두리만 초록으로 변경
   ============================= */
#dsc-pc .dsc-card:hover .dsc-dot{
    background:#fff;          
    border-color:#27ae60;     
    transform:scale(1.3);
}

/* 최종 결과 도트는 호버 시에도 초록으로 채워진 상태 유지 */
#dsc-pc .dsc-card:hover .dsc-tl-row.is-result .dsc-dot{
    background:#27ae60;
    border-color:#27ae60;
}

/* =============================
   타임라인 세로선 (::before 슈도 요소)
   ============================= */
#dsc-pc .dsc-timeline:before{
    content:'';
    position:absolute;
    left:8px;
    top:8px;
    bottom:8px;
    width:2px;
    background:linear-gradient(to bottom, #d4af37 0%, #27ae60 100%);
}

/* =============================
   타임라인 라벨 텍스트 (의뢰인, 선임 시기 등)
   ============================= */
#dsc-pc .dsc-tl-label{
    display:inline-block;
    flex-shrink:0;          /* 라벨 너비 축소 방지 */
    min-width:68px;         /* 가장 긴 '처리 기간' 기준 너비 */
    margin-bottom:0;        /* 세로 마진 제거 */
    color:#999;
    font-size:14px;
    font-weight:700;
    line-height:1.5;
    text-align:left;        /* ★ 라벨 자체도 왼쪽 정렬 */
    white-space:nowrap;     /* 줄바꿈 방지 */
    transition:color .35s ease;
}

#dsc-pc .dsc-card:hover .dsc-tl-label{
    color:#27ae60;
}

/* =============================
   타임라인 값 텍스트 (30대 남성 자영업 등)
   ============================= */
.dsc-tl-val{
    /* ★ flex 자식: inline-block으로 라벨 바로 옆에 배치 */
    display:inline-block;
    color:#1a1a2e;
    font-size:15px;
    font-weight:600;
    line-height:1.5;
    text-align:left;  /* ★ 값 텍스트 왼쪽 정렬 */
    transition:color .35s ease;
}

/* 카드 호버 시 값 텍스트 색상 초록으로 전환 */
#dsc-pc .dsc-card:hover .dsc-tl-val{
    color:#27ae60;
}

/* =============================
   최종 결과 행 값: 기본/호버 모두 초록 + 굵게
   ============================= */
#dsc-pc .dsc-tl-row.is-result .dsc-tl-val{
    color:#27ae60;
    font-size:16px;
    font-weight:900;
}


@media screen and (max-width:768px){
    #dsc-pc .dsc-img{
        height:180px;
    }

    #dsc-pc .dsc-body{
        padding:18px;
    }

    #dsc-pc .dsc-desc{
        min-height:auto;
        text-align:left;
    }

    #dsc-pc .dsc-dard + .dsc-dard{
        margin-top: 2rem;
    }
    #dsc-pc .dsc-wrap ul{
        padding:0 0 2rem;
    }    
}


/* ============================================================
     선임후기 섹션 전용 CSS
     ───────────────────────────────────────────────────────────── */


.rv-parallax-container {
    max-width: 100%;             /* 전체 너비 사용 */
    overflow: hidden;            /* 좌우로 나간 카드 숨김 */
    padding: 20px 0 10px;        /* 상하 여백: 호버 시 scale 확대 공간 확보 */
    margin-bottom: 20px;
}
 
.rv-parallax-layer {
    display: flex;               /* 가로 배치 */
    gap: 0;                      /* .rv-layer-inner 내부에서 gap 처리 */
    will-change: transform;      /* GPU 가속 힌트 */
    margin-bottom: 20px;         /* ★ [줄 간격] 윗줄과 아랫줄 사이 여백 조정 */
}
 
/* ──────────────────────────────────────────────────────────────
   레이어 내부 래퍼 (카드 20개 = 원본 10 + 복제 10 포함)
────────────────────────────────────────────────────────────── */
.rv-layer-inner {
    display: flex;
    gap: 20px;                   /* ★ [카드 간격] 카드 사이 여백 조정 */
    width: 200%;                 /* 원본+복제 = 2배 너비 (무한루프 핵심) */
    flex-shrink: 0;
}
 
/* ──────────────────────────────────────────────────────────────
   윗줄 (rv-layer-1): 오른쪽 → 왼쪽으로 스크롤
────────────────────────────────────────────────────────────── */
.rv-layer-1 .rv-layer-inner {
    animation: rv-scroll-left 30s linear infinite;
}
 
/* ──────────────────────────────────────────────────────────────
   아랫줄 (rv-layer-2): 왼쪽 → 오른쪽으로 스크롤 (역방향)
────────────────────────────────────────────────────────────── */
.rv-layer-2 .rv-layer-inner {
    animation: rv-scroll-left 35s linear infinite;
}
 
/* ──────────────────────────────────────────────────────────────
   스크롤 키프레임 정의
────────────────────────────────────────────────────────────── */
@keyframes rv-scroll-left {
    0%   { transform: translateX(0);     } /* 시작: 원위치 */
    100% { transform: translateX(-50%);  } /* 끝: 왼쪽으로 절반 이동 후 순간 원점 복귀 */
}
 
@keyframes rv-scroll-right {
    0%   { transform: translateX(-50%);  } /* 시작: 왼쪽으로 절반 이동된 상태 */
    100% { transform: translateX(0);     } /* 끝: 오른쪽으로 이동 (역방향 효과) */
}
 
.rv-parallax-layer:hover .rv-layer-inner {
    animation-play-state: paused;  /* hover 시 자동 스크롤 정지 */
}
 
/* ──────────────────────────────────────────────────────────────
   카드 (.rv-card)
────────────────────────────────────────────────────────────── */
.rv-card {
    min-width: 320px;                              /* ★ [카드 너비] */
    width: 320px;
    background: #ffffff;
    border-radius: 16px;                           /* 모서리 둥글기 */
    padding: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);   /* 그림자 */
    border: 1px solid #e0e0e0;                     /* 테두리 */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s ease;
    flex-shrink: 0;                                /* flex 자식이 줄어들지 않도록 */
}
 
/* 카드 hover: 살짝 위로 뜨고 테두리 금색으로 변경 */
.rv-card:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
    z-index: 10;
    position: relative;
}
 
/* ──────────────────────────────────────────────────────────────
   카드 이미지 영역 (.rv-card-img)
────────────────────────────────────────────────────────────── */


.rv-card-img {
    width: 100%;
    height: 180px;                 /* ★ 원본 대비 약 30% 높이로 고정 */
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 14px;          /* ★ [이미지↔하단메타 간격] */
    background: #f5f5f5;          /* 이미지 로드 전 배경색 */
}
.rv-card-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.rv-card:hover .rv-card-img img {
    transform: scale(1.03);
}

/* ──────────────────────────────────────────────────────────────
   카드 하단 메타 영역 (.rv-card-meta)
────────────────────────────────────────────────────────────── */
.rv-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;                    /* 작성자명 ↔ 날짜 간격 */
}
 
/* ──────────────────────────────────────────────────────────────
   작성자명 뱃지 (.rv-card-author)
────────────────────────────────────────────────────────────── */
.rv-card-author {
    display: inline-block;
    background: #c9a961;          /* ★ [뱃지 배경색] 금색 */
    color: #ffffff;               /* 흰색 텍스트 */
    padding: 4px 12px;            /* 뱃지 안쪽 여백 */
    border-radius: 20px;          /* 완전 둥근 모서리 (pill 형태) */
    font-size: 1.3rem;            /* ★ [뱃지 글자 크기] */
    font-weight: 700;
    white-space: nowrap;          /* 줄바꿈 방지 */
    letter-spacing: -0.02em;
}
 
/* ──────────────────────────────────────────────────────────────
   날짜 텍스트 (.rv-card-date)
────────────────────────────────────────────────────────────── */
.rv-card-date {
    font-size: 1.3rem;            /* ★ [날짜 글자 크기] */
    font-weight: 500;
    color: #888888;               /* 연한 회색 */
    white-space: nowrap;
}
 
/* ──────────────────────────────────────────────────────────────
   반응형: 모바일(768px 이하)
────────────────────────────────────────────────────────────── */
@media (max-width: 56.25rem) { /* 900px 이하 */
    .rv-card {
        min-width: 260px;      
        width: 260px;
    }
    .rv-layer-inner {
        gap: 14px;
    }
}
 
@media (max-width: 37.5rem) { /* 600px 이하 */
    .rv-card {
        min-width: 230px;       
        width: 230px;
        padding: 12px;
    }
    .rv-layer-inner {
        gap: 12px;
    }
}
 
/* ──────────────────────────────────────────────────────────────
   (선택) prefers-reduced-motion 접근성 대응
   - 사용자가 OS에서 '애니메이션 줄이기'를 설정한 경우 자동 스크롤 정지
────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .rv-layer-1 .rv-layer-inner,
    .rv-layer-2 .rv-layer-inner {
        animation: none;
    }
}






/* 사건초기대응전략 260518 */
.cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.vs-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(139, 92, 246, 0.9);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    opacity: 0;
    transform: translate(-50%, -50%) translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.vs-divider.visible {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.vs-circle {
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.95);
    border: 3px solid rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3), inset 0 0 20px rgba(139, 92, 246, 0.1);
}

.card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 16/10;
}

.card:hover {
    transform: translateY(-8px);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: filter 0.3s ease;
}

.card:hover .card-image {
    filter: brightness(0.6);
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.card-title {
    font-size: 2.8rem;
    font-weight: var(--main_font_bold);
    margin-bottom: 2rem;
    line-height: 1.4;
}
.card-description {
    line-height: 1.5;
    font-weight: var(--main_font_light);
}


.card:hover {
    background: rgba(255, 255, 255, 0.2);
}



@media (max-width: 968px) {
    .cards-container {
        grid-template-columns: 1fr;
    }

    .vs-divider {
        top: calc(50% - 15px);
        left: 50%;
    }

    .vs-circle {
        width: 80px;
        height: 80px;
    }

    .vs-divider {
        font-size: 2.5rem;
    }

    .card.slide-from-left,
    .card.slide-from-right { transform: none; }    

}

@media (max-width: 640px) {
    .section {
        padding: 60px 20px;
    }

    .card-content {
        padding: 24px;
    }
}

/* 애니메이션 스타일 */
.card {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.card.slide-from-left {
    transform: translateX(-100px);
}

.card.slide-from-right {
    transform: translateX(100px);
}

.card.visible {
    opacity: 1;
    transform: translateX(0);
}

.card.visible:hover {
    transform: translateY(-8px);
}



/* bottom_banner - pc */
.consult-bar {
    width: 100%;
    background: #000;
    padding: 28px 40px;
    box-sizing: border-box;
}

.bottom_contain {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ─── 왼쪽 메시지 ─── */
.bottom_left {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

/* ─── 버튼 ─── */
.bottom_contain a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 3rem;
    height: 100%;
    width: auto;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.bottom_contain a:first-child{
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.consult-btn:hover,.consult-btn:active {
    background: rgba(255, 255, 255, 0.08);
}

/* ─── 버튼 아이콘 ─── */
.consult-btn__ico {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.consult-btn__ico svg {
    width: 100%;
    height: 100%;
}

.consult-btn__txt{
    font-size: 1.5rem;
    font-weight: 500;
    white-space: nowrap;
}


/* 모의조사 섹션 */
.mock-investigation-section {
    padding: 8rem 0 4rem;
    background: white;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 헤더 */
/* .section-header {
    text-align: center;
    margin-bottom: 50px;
} */

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.4;
}

.section-title .emphasis {
    color: #7b5a9e;
}

/* 메인 콘텐츠 */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* 이미지 영역 */
.image-area, .kit-image-wrapper {
    position: relative;
}

.room-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(123, 90, 158, 0.95);
    color: white;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

/* 텍스트 영역 */
.text-area {
    padding: 0 20px;
}

.main-description {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 25px;
}

.sub-description {
    font-size: 18px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 20px;
}

.highlight-box {
    background: #f8f5fc;
    padding: 25px 30px;
    border-radius: 10px;
    border-left: 4px solid #7b5a9e;
    margin-top: 30px;
}

.highlight-title {
    font-size: 16px;
    color: #7b5a9e;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.highlight-text {
    color: #333;
}

/* 반응형 */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-area {
        order: 2;
        padding: 0;
    }

    .image-area {
        order: 1;
    }
}

@media (max-width: 768px) {
    .mock-investigation-section {
        padding: 5rem 0 4rem;
    }

    /* .section-header {
        margin-bottom: 35px;
    } */

    .section-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .main-description {
        font-size: 17px;
        margin-bottom: 1.4rem;
    }

    .sub-description {
        font-size: 16px;
    }

    .highlight-box {
        padding: 20px;
    }

    .highlight-text {
        font-size: 15px;
    }

    .image-badge {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* 전문성 260520 */
.awards-section-only .slider-btn {
    position: absolute;
    top: 64%;
    transform: translateY(-64%);
    background: white;
    border: 2px solid var(--accent);
    color: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    padding: 0;
}

.awards-slider-controls {
    display: none;
}


.awards-section-only .slider-btn:hover {
    background: var(--accent);
    color: white;
}

.awards-section-only .slider-btn svg {
    width: 24px;
    height: 24px;
    fill: #000;
    stroke: #000;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.awards-section-only .slider-btn-prev { left: -25px; }
.awards-section-only .slider-btn-next { right: -25px; }



/* ============================================
   카드 그리드 (PC) → 슬라이더 (모바일)
   ============================================ */
.awards-section-only .awards-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    position: relative;
}

/* ============================================
   개별 카드
   ============================================ */
.awards-section-only .award-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    list-style: none;
    width: auto;
    text-align: unset;
}

.awards-section-only .award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #c9a961;
}

.awards-section-only .award-card-image {
    width: 100%;
    aspect-ratio: 1 / 1.2;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.awards-section-only .award-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.awards-section-only .award-card-content {
    padding: 15px;
    text-align: center;
}

.awards-section-only .award-card-title {
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    padding: 2rem 0;
}

/* ============================================
   반응형
   ============================================ */
@media (max-width: 1200px) {
    .awards-section-only .awards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    /* 그리드를 슬라이더로 변경 */
    .awards-section-only .awards-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px;
        padding: 0 60px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .awards-section-only .awards-grid::-webkit-scrollbar {
        display: none;
    }

    .awards-section-only .award-card {
        flex: 0 0 80%;
        max-width: 350px;
        scroll-snap-align: center;
        margin: 0 auto;
    }

    /* 슬라이더 컨트롤 표시 */
    .awards-section-only .awards-slider-controls {
        display: block;
        position: static;
    }

    .awards-section-only .slider-btn {
        display: flex;
    }

    /* JS로 토글되는 숨김 클래스 (모바일에서 .slider-btn의 display:flex보다 우선 적용) */
    .awards-section-only .slider-btn.is-hidden {
        display: none;
    }
}

@media (max-width: 480px) {
    .awards-section-only .award-card {
        flex: 0 0 90%;
    }

    .awards-section-only .slider-btn {
        width: 40px;
        height: 40px;
    }

    .awards-section-only .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .awards-section-only .slider-btn-prev { left: 14px; }
    .awards-section-only .slider-btn-next { right: 14px; }
}



/* 검사키트섹션 260521추가 */
.ap-kit-section {
    padding: 100px 40px;
    background: white;
}

.ap-kit-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 헤더 */
/* .section-header {
    text-align: center;
    margin-bottom: 80px;
} */

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.section-title .highlight {
    color: #7b5a9e;
}

.section-description {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* 메인 콘텐츠 */
.kit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 10rem;
}
.kit-image-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.kit-image-wrapper .image-badge {
    right: 20px;
    left: auto;
}

.kit-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* 설명 영역 */
.kit-info {
    padding: 0 20px;
}

.kit-subtitle {
    font-size: 16px;
    color: #7b5a9e;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.kit-main-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.kit-description {
    font-size: 18px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 40px;
}

.kit-features {
    list-style: none;
}

.kit-features li {
    padding: 16px 0;
    font-size: 17px;
    color: #444;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.kit-features li:last-child {
    border-bottom: none;
}

.kit-features li::before {
    content: '✓';
    color: #7b5a9e;
    font-weight: 700;
    font-size: 20px;
    margin-right: 16px;
    flex-shrink: 0;
}

.kit-features li strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* CTA */
.kit-cta {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #7b5a9e 0%, #5d4576 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
}

.kit-cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.kit-cta-subtitle {
    font-size: 18px;
    opacity: 0.95;
}

/* 반응형 */
@media (max-width: 1024px) {
    .kit-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .kit-images {
        justify-content: center;
        order: 1;
    }

    .kit-info {
        text-align: center;
        padding: 0;
        order: 2;
    }

    .kit-features li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ap-kit-section {
        padding: 60px 20px;
    }

    /* .section-header {
        margin-bottom: 50px;
    } */

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .kit-content {
        gap: 3rem;
    }
    .kit-images {
        gap: 20px;
    }
    .kit-main-title,
    .kit-subtitle,
    .sub-description {
        text-align: center;
    }

    .image-badge {
        bottom: 10px;
    }

    .kit-main-title {
        font-size: 22px;
    }

    .kit-description {
        font-size: 16px;
    }

    .kit-features li {
        font-size: 15px;
    }

    .kit-cta-title {
        font-size: 22px;
    }

    .kit-cta-subtitle {
        font-size: 16px;
    }
    .round-btn .cta-icon-arrow {
        width: 24px;
        height: 24px;
    }
}



/* 260521 추가 */
.pro_wrap, .secret_wrap{
    background-color: #fff;
    color: var(--main_txt);
}


.suc_wrap{
    padding: 8rem 0 4rem;
    background-color: #fff;
}    


@media (max-width: 56.25rem) {
    .secret_wrap {
        padding: 7rem 0 4rem;
    }
    .suc_wrap{
        padding: 5rem 0 2rem;
    }    
}


/* ════════════════════════
   히어로 — 풀블리드 포스터
   ════════════════════════ */

/* 변호사 사진 — 우측 배경 */

.lawyer-photo {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 78%;
    height: 90%;
    background: url("//thenlaw1002.mycafe24.com/crime/Lawyer/photo/1_photo5.png") top center / cover no-repeat;
    z-index: 1;
}

/* 좌측 + 하단 마스크 — 텍스트 영역 확보 */
.mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #08060f 0%, #08060f 30%, rgba(8,6,15,0.75) 52%, rgba(8,6,15,0.1) 75%, transparent 100%), linear-gradient(to top, #08060f 0%, rgba(8,6,15,0.6) 18%, transparent 38%), linear-gradient(to bottom, #08060f 0%, transparent 14%);
    z-index: 2;
}

/* 퍼플 글로우 */
.glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,92,232,0.2) 0%, transparent 65%);
    top: 40px;
    right: -80px;
    z-index: 1;
}




/* ── 콘텐츠 레이어 ── */
.m-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 22px 32px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

/* 1. 훅 태그 */
.hook {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124,92,232,0.2);
    border: 1px solid rgba(124,92,232,0.5);
    border-radius: 20px;
    padding: 6px 13px;
    font-size: 12px;
    font-weight: 600;
    color: var(--sub_color2);
    width: fit-content;
    animation: fadeUp 0.5s 0.2s both;
}
.hook-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sub_color2);
    animation: blink 2s infinite;
}

/* 2. 킬러 카피 */
.killer {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #fff;
    animation: fadeUp 0.5s 0.32s both;
}
.killer .hl {
    color: var(--sub_color2);
}

/* 3. 서브 텍스트 */
.sub {
    /* font-size: 1.4rem; */
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    animation: fadeUp 0.5s 0.42s both;
    letter-spacing: -0.025em;
}

/* 구분선 */
.divider {
    width: 32px;
    height: 2px;
    background: linear-gradient(to right, var(--sub_color2), transparent);
    border-radius: 2px;
    animation: fadeUp 0.5s 0.5s both;
}

/* 4. 메인 슬로건 */
.slogan {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #fff;
    animation: fadeUp 0.5s 0.55s both;
}
.slogan .em {
    color: var(--highlight-color);
}

/* 5. 뱃지 라인 */
.badge-line {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeUp 0.5s 0.65s both;
}
.badge-main {
    /* font-size: 1.4rem; */
    font-weight: 600;
    color: var(--sub_color2);
    letter-spacing: 0.5px;
}
.badge-en {
    font-size: 12px;
    letter-spacing: 3.5px;
    color: rgba(255,255,255,0.18);
}

/* 6. 임명장 뱃지 */
.cert-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-left: 3px solid var(--sub_color2);
    border-radius: 10px;
    padding: 9px 12px;
    animation: fadeUp 0.5s 0.72s both;
}
.cert-thumb {
    width: 34px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 5px;
    background: url("//thenlaw1002.mycafe24.com/images/Document/008.jpg") center -2px / cover no-repeat;
    border: 1px solid rgba(201,168,76,0.4);
}
.cert-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cert-title {
    /* font-size: 11.5px; */
    font-weight: 700;
    color: #fff;
}
.cert-sub {
    /* font-size: 10px; */
    color: rgba(255,255,255,0.5);
}

/* 7. CTA */
.cta-wrap {
    display: flex;
    justify-content: center;
    animation: fadeUp 0.5s 0.8s both;
}
.btn-cta {
    padding: 14px 28px;
    background: var(--sub_color2);
    border: none;
    border-radius: 12px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    letter-spacing: -0.2px;
    box-shadow: 0 6px 28px rgba(124,92,232,0.55);
    position: relative;
    overflow: hidden;
}
.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 55%);
}



.only-m{display: none;}
@media (max-width: 900px) {
    .only-pc{display: none;}
    .only-m{display: block;}
}







/* ============================================
   히어로 프로필 - 시안 적용 (PC, 1025px 이상)
   ============================================ */
@media (min-width: 1025px) {

    /* ── 히어로 전체 ── */
    .hero {
        min-height: auto;
        max-height: 92vh;
        height: 92vh;
        padding-bottom: 0;
        overflow: hidden;
    }

    /* ── 히어로 컨테이너 ── */
    .hero-container {
        height: 100%;
        min-height: auto;
        padding-top: 8rem;
        padding-bottom: 2rem;
        position: relative;
    }

    /* ── 프로필 영역 ── */
    .hero-profile {
        height: 100%;
        max-height: none;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    /* ── 프로필 카드 (배경 제거, 투명) ── */
    .hero-profile .profile-card {
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        padding: 0;
        height: auto;
        max-height: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* 기존 ::before 골드 라인 숨기기 */
    .hero-profile .profile-card::before {
        display: none;
    }

    /* ── 사진 래퍼 ── */
    .hero-profile .profile-photo-wrapper {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        position: relative;
    }

    /* ── 사진 박스 ── */
    .hero-profile .profile-photo-box {
        width: 100%;
        height: auto;
        background: transparent;
        border-radius: 0;
        overflow: visible;
        position: relative;
        padding: 0;
    }

    /* ── 사진 본체 ── */
    .hero-profile .profile-photo {
        width: 110%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
        filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
        transform: scale(1.08);
        margin: 0 auto;
    }

    /* ── 이름 박스 (우측 하단, 보라 반투명) ── */
    .hero-profile .profile-name-box {
        position: absolute;
        bottom: 3rem;
        right: -2rem;
        left: auto;
        top: auto;
        transform: none;
        background: rgba(139, 92, 246, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 1.2rem 2rem;
        border-radius: 0;
        text-align: center;
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
        margin: 0;
        width: max-content;
        max-width: 280px;
        border-left: 3px solid rgba(139, 92, 246, 0.8);
    }

    /* ── 이름 텍스트 ── */
    .hero-profile .profile-name {
        font-size: 1.3rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
        line-height: 1.4;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
}


/* ============================================
   세로 높이별 반응형 (PC, 창 높이 줄였을 때)
   ============================================ */

/* 화면 높이 900px 이하 */
@media (min-width: 1025px) and (max-height: 900px) {
    .hero {
        height: 90vh;
        max-height: 90vh;
    }

    .hero-container {
        padding-top: 7rem;
        padding-bottom: 1.5rem;
    }

    .hero-profile .profile-photo-wrapper {
        max-width: 470px;
    }

    .hero-profile .profile-photo {
        width: 108%;
        transform: scale(1.06);
    }

    .hero-profile .profile-name-box {
        bottom: 2.5rem;
        right: -1.5rem;
        padding: 1rem 1.8rem;
    }

    .hero-profile .profile-name {
        font-size: 1.2rem;
    }
}

/* 화면 높이 800px 이하 */
@media (min-width: 1025px) and (max-height: 800px) {
    .hero {
        height: 88vh;
        max-height: 88vh;
    }

    .hero-container {
        padding-top: 6rem;
        padding-bottom: 1.5rem;
        gap: 3rem;
    }

    .hero-profile .profile-photo-wrapper {
        max-width: 430px;
    }

    .hero-profile .profile-photo {
        width: 108%;
        transform: scale(1.05);
    }

    .hero-profile .profile-name-box {
        bottom: 2rem;
        right: -1.2rem;
        padding: 0.9rem 1.5rem;
    }

    .hero-profile .profile-name {
        font-size: 1.1rem;
    }
}

/* 화면 높이 700px 이하 */
@media (min-width: 1025px) and (max-height: 700px) {
    .hero {
        height: 85vh;
        max-height: 85vh;
    }

    .hero-container {
        padding-top: 5rem;
        padding-bottom: 1rem;
        gap: 2rem;
    }

    .hero-profile .profile-photo-wrapper {
        max-width: 380px;
    }

    .hero-profile .profile-photo {
        width: 106%;
        transform: scale(1.03);
    }

    .hero-profile .profile-name-box {
        bottom: 1.5rem;
        right: -1rem;
        padding: 0.8rem 1.3rem;
    }

    .hero-profile .profile-name {
        font-size: 1rem;
    }
}

/* 14인치 노트북 (1366x768) 전용 */
@media (min-width: 1025px) and (max-width: 1400px) and (max-height: 768px) {
    .hero {
        max-height: 90vh;
    }

    .hero-container {
        padding-top: 6rem;
        gap: 2.5rem;
    }
}



/* main_style에 있어야할  내용260601 */
.section_header{
    position: relative;
    text-align: center;
    margin-bottom:6rem;
}

.section_header-btn {
    position: absolute;
    right: 0;
    bottom: 0; 
}

.section_badge {
    display: inline-block;
    background: var(--sub_color3);
    color: var(--wt_txt);
    padding: 0.5rem 1.8rem;
    border-radius: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.section_title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;    
    font-size: 4.6rem;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 2.2rem;
    letter-spacing: -0.04em;
}

.section_desc {
    font-size: 2.5rem;
    line-height: 1.3;
}

.round-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.4rem 2.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.round-btn-white{
    background: hsla(0, 0%, 100%, .08);
    border: 1px solid hsla(0, 0%, 100%, .2);
}

.round-btn .cta-txt{
    color: #000;
}

.round-btn-white .cta-txt{
    color: #fff;
}


.round-btn .cta-icon-arrow {
    background: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.round-btn-white .cta-icon-arrow{
    background: #fff;
}

.round-btn .cta-icon-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
}
.round-btn-white .cta-icon-arrow svg{
    stroke: #000;
}

.round-btn:hover .cta-icon-arrow {
    transform: translateX(4px);
}




@media (max-width: 56.25rem){ /* 900px  */
    .section_header-btn {
        position: static;      
        margin-top: 2rem;     
        text-align: center;     
    }
    .section_header-txt {
        padding: 0;             
    }
}


@media (max-width: 37.5rem) { /* 600 */ 
    .section_header{
        margin-bottom: 2.5rem;
    }    
    .section_title {
        font-size: 2.8rem;
        letter-spacing: -.1rem;
        margin-bottom: 1.4rem;
    }

    .section_desc { 
        font-size: 2.2rem;
        letter-spacing: -.1rem;
    }    
}


/* 260528 header 변경 */

/* ========== Site Header (전체 래퍼) ========== */
.dch-site_header {
    display: contents;
}

/* ========== Header Wrap ========== */
.dch-header_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.dch-header_wrap.dch-is-fixed {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.dch-header_wrap.dch-is-menu-active {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}
.dch-header_wrap.dch-is-menu-active .dch-logo a img.dch-logo-default {
    opacity: 0;
}
.dch-header_wrap.dch-is-menu-active .dch-logo a img.dch-logo-fixed {
    opacity: 1;
}
.dch-header_wrap.dch-is-menu-active .dch-gnb_1depth > li > a {
    color: var(--text);
}
.dch-header_wrap.dch-is-menu-active .dch-gnb_1depth > li:hover > a {
    color: var(--sub_color);
}
.dch-header_wrap.dch-is-menu-active .dch-gnb_1depth > li.dch-is-active > a {
    color: var(--sub_color);
}

.dch-header_wrap.dch-is-menu-active .dch-gnb_1depth > li > a::after {
    background: var(--sub_color);
}
.dch-header_wrap.dch-is-menu-active .dch-cta_btn:not(.dch-kakao) {
    background: #fff;
    border-color: var(--line);
    color: var(--text);
}
.dch-header_wrap.dch-is-menu-active .dch-menu_btn span {
    background: var(--text);
}
.dch-header_wrap .dch-inner {
    max-width: 144rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 9rem;
    position: relative;
}

/* ========== Logo ========== */
.dch-logo {
    flex-shrink: 0;
}
.dch-logo a {
    display: block;
    position: relative;
}

.dch-logo a img.dch-logo-default,
.dch-logo a img.dch-logo-fixed {
    height: 3.6rem !important;
    width: auto !important;
    max-width: none !important;
    display: block;
    transition: opacity 0.3s ease;
}
.dch-logo a img.dch-logo-fixed {
    position: absolute;
    top: 0;
    left: 0;
}

.dch-logo a img.dch-logo-default {
    opacity: 1;
}
.dch-logo a img.dch-logo-fixed {
    opacity: 0;
}
.dch-header_wrap.dch-is-fixed .dch-logo a img.dch-logo-default {
    opacity: 0;
}
.dch-header_wrap.dch-is-fixed .dch-logo a img.dch-logo-fixed {
    opacity: 1;
}

@media (max-width: 1024px) {
    .dch-logo a img.dch-logo-default,
    .dch-logo a img.dch-logo-fixed {
        height: 3.8rem !important;
    }
}

@media (max-width: 900px) {
    .dch-logo a img.dch-logo-default,
    .dch-logo a img.dch-logo-fixed {
        height: 3rem !important;
    }
}

/* ========== GNB (PC: Mega Menu) ========== */
.dch-gnb {
    flex: 1;
    display: flex;
    justify-content: center;
    height: 9rem;
    position: relative;
}
.dch-gnb_1depth {
    display: flex;
    align-items: stretch;
    height: 100%;
    width: 100%;
    max-width: 100rem;
    margin: 0 0 0 auto;
    padding: 0;
}
.dch-gnb_1depth > li {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease;
}
.dch-gnb_1depth > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 2.4rem;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.05rem;
    position: relative;
    transition: color 0.25s;
    white-space: nowrap;
}
.dch-header_wrap.dch-is-fixed .dch-gnb_1depth > li > a {
    color: var(--text);
}
.dch-gnb_1depth > li:hover {
    background-color: rgba(255,255,255,0.12);
}
.dch-gnb_1depth > li:hover > a {
    color: #fff;
}

.dch-header_wrap.dch-is-fixed .dch-gnb_1depth > li:hover > a {
    color: var(--sub_color);
}
.dch-gnb_1depth > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.dch-gnb_1depth > li.dch-is-active > a::after,
.dch-gnb_1depth > li:hover > a::after {
    opacity: 1;
}
.dch-gnb_1depth > li > a::after {
    background: #fff;
}
.dch-header_wrap.dch-is-fixed .dch-gnb_1depth > li > a::after {
    background: var(--sub_color);
}

/* ========== Mega Menu Panel (한 번에 다 나오는 구조) ========== */
.dch-mega_panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100rem;
    margin: 0 0 0 auto;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
    z-index: 99;
}
.dch-mega_panel::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    right: -100vw;
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    z-index: -1;
}
.dch-gnb:hover .dch-mega_panel,
.dch-header_wrap.dch-is-open .dch-mega_panel,
.dch-mega_panel:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dch-mega_panel .dch-mega_inner {
    width: 100%;
    display: flex;
    min-height: 24rem;
    margin: 0;
    padding: 0;
}

.dch-mega_col {
    flex: 1 1 0;
    min-width: 0;
    padding: 3rem 0.6rem 3.5rem;
    text-align: center;
    border-right: 1px solid var(--line);
    transition: background-color 0.25s;
    background-color: transparent !important;
}
.dch-mega_col:last-child {
    border-right: none;
}

.dch-mega_col ul li a {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 1.6rem;
    white-space: nowrap;

    color: #555;
    transition: all 0.2s;
    border-radius: 0.4rem;
}
.dch-mega_col ul li a:hover {
    color: var(--sub_color);

}

/* ========== Right: CTA Area ========== */
.dch-header_cta {
    display: none;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}
.dch-cta_tel {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.6rem;
    background: var(--main_color);
    color: #fff;
    border-radius: 0.6rem;
    font-size: 1.5rem;
    font-weight: 600;
    transition: background 0.25s;
}
.dch-cta_tel:hover {
    background: var(--sub_color);
}
.dch-cta_tel .dch-icon {
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
}
.dch-cta_tel .dch-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}
.dch-cta_btn {
    padding: 1rem 1.4rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 0.6rem;
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dch-cta_btn:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.12);
}

.dch-header_wrap.dch-is-fixed .dch-cta_btn {
    background: #fff;
    border-color: var(--line);
    color: var(--text);
}
.dch-header_wrap.dch-is-fixed .dch-cta_btn:hover {
    border-color: var(--main_color);
    color: var(--main_color);
    background: #fff;
}
.dch-cta_btn.dch-kakao,
.dch-header_wrap.dch-is-fixed .dch-cta_btn.dch-kakao {
    background: #FEE500;
    border-color: #FEE500;
    color: #3C1E1E;
}
.dch-cta_btn.dch-kakao:hover,
.dch-header_wrap.dch-is-fixed .dch-cta_btn.dch-kakao:hover {
    background: #ffd900;
    border-color: #ffd900;
    color: #3C1E1E;
}

/* ========== Mobile Menu Button ========== */
.dch-menu_btn {
    display: none;
    width: 3rem;
    height: 2.4rem;
    position: relative;
    cursor: pointer;
    margin-left: 1rem;
    z-index: 120;
}

.dch-menu_btn::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
}
.dch-menu_btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: 0.3s;
    border-radius: 2px;
}
.dch-header_wrap.dch-is-fixed .dch-menu_btn span {
    background: var(--text);
}
.dch-menu_btn span:nth-child(1) {
    top: 0;
}
.dch-menu_btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.dch-menu_btn span:nth-child(3) {
    bottom: 0;
}
.dch-header_wrap.dch-is-fixed .dch-menu_btn.dch-is-open span,
.dch-menu_btn.dch-is-open span {
    background: #1a1a1a;
}
.dch-menu_btn.dch-is-open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.dch-menu_btn.dch-is-open span:nth-child(2) {
    opacity: 0;
}
.dch-menu_btn.dch-is-open span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ========== Mobile Full Menu ========== */
.dch-mobile_menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}
.dch-mobile_menu.dch-is-open {
    opacity: 1;
    visibility: visible;
}
/* 상단 고정 흰색 띠: 스크롤되는 메뉴 항목이 헤더(햄버거·로고) 뒤로 비치지 않게 가림 */
.dch-mobile_menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7rem;
    background: #ffffff;
    z-index: 1;
    pointer-events: none;
}
.dch-mobile_menu_top {
    height: 7rem;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid #ececec;
}
.dch-mobile_menu_top .dch-m_logo {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.05rem;
}
.dch-mobile_menu_top .dch-m_logo span {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.7;
    margin-right: 0.5rem;
}
.dch-mobile_menu_body {
    padding: 2rem 0 20rem;
}
.dch-mobile_menu_body .dch-m_section {
    padding: 0;
    border-bottom: 1px solid #ececec;
}

.dch-mobile_menu_body .dch-m_title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.05rem;
    padding: 1.8rem 2.5rem 1rem;
    margin: 0;
}

.dch-mobile_menu_body .dch-m_sublist {
    display: block;
    background: #f5f5f5;
    padding: 0.8rem 0;
}
.dch-mobile_menu_body .dch-m_sublist li a {
    display: block;
    padding: 1.1rem 2.5rem 1.1rem 3.2rem;
    background: transparent;
    color: #666;
    font-size: 1.9rem;
    font-weight: 400;
    border-radius: 0;
    transition: color 0.2s;
}
/* '- ' 머리 기호 */
.dch-mobile_menu_body .dch-m_sublist li a::before {
    content: '- ';
    color: #888;
}
.dch-mobile_menu_body .dch-m_sublist li a:active,
.dch-mobile_menu_body .dch-m_sublist li a:hover {
    background: transparent;
    color: var(--sub_color);
    font-weight: 500;
}

/* 모바일 메뉴 하단 고정 CTA */
.dch-mobile_cta_bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem;
    z-index: 106;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease 0.15s;
}
.dch-mobile_cta_bar.dch-is-open {
    display: flex;
    transform: translateY(0);
}
/* 공통 버튼 */
.dch-mobile_cta_bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    border-radius: 0.8rem;
    transition: opacity 0.2s;
}
.dch-mobile_cta_bar a:active {
    opacity: 0.85;
}
.dch-mobile_cta_bar a .dch-cta_icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dch-mobile_cta_bar a .dch-cta_icon svg {
    width: 100%;
    height: 100%;
}

/* 1줄: 전화상담 (네이비 전체폭) */
.dch-mobile_cta_bar a.dch-tel {
    background: var(--sub_color);
    color: #fff;
}
.dch-mobile_cta_bar a.dch-tel svg {
    fill: #fff;
}

/* 2줄: 카톡·빠른상담 (흰 배경 + 테두리, 2등분) */
.dch-mobile_cta_bar .dch-cta_row {
    display: flex;
    gap: 1rem;
}
.dch-mobile_cta_bar .dch-cta_row a {
    flex: 1;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #d5d5d5;
}
.dch-mobile_cta_bar a.dch-kakao .dch-cta_icon svg {
    fill: var(--sub_color);
}
.dch-mobile_cta_bar a.dch-quick .dch-cta_icon svg {
    fill: #1a1a1a;
}

/* ========== Responsive ========== */
@media (max-width: 1280px) {
    .dch-gnb_1depth > li > a {
        padding: 0 1.6rem;
        font-size: 1.6rem;
    }
    .dch-cta_btn span.dch-label {
        display: none;
    }
}

@media (max-width: 1024px) {
    .dch-header_wrap .dch-inner {
        height: 7rem;
        padding: 0 2rem 0 6rem;
    }
    .dch-gnb {
        display: none;
    }
    .dch-mega_panel {
        display: none;
    }
    .dch-mobile_menu {
        display: block;
    }
    .dch-cta_btn {
        display: none;
    }
    .dch-cta_tel {
        padding: 0.8rem 1.2rem;
        font-size: 1.4rem;
    }

    /* ── 모바일 헤더 배치 ── */
    .dch-header_cta {
        display: flex;
        margin-left: auto;
    }
    .dch-menu_btn {
        display: block;
        position: absolute;
        left: 2rem;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        z-index: 120;
    }

    body.dch-is-menu-open .dch-header_cta .dch-cta_btn,
    body.dch-is-menu-open .dch-header_cta .dch-cta_tel {
        display: none;
    }
    body.dch-is-menu-open .dch-header_wrap {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
        z-index: 110;
    }

    body.dch-is-menu-open .dch-logo {
        visibility: visible;
    }
    body.dch-is-menu-open .dch-logo a img.dch-logo-default {
        opacity: 0 !important;
    }
    body.dch-is-menu-open .dch-logo a img.dch-logo-fixed {
        opacity: 1 !important;
    }
}

@media (max-width: 640px) {
    .dch-cta_btn .dch-label,
    .dch-cta_tel .dch-label {
        display: none;
    }
    .dch-cta_tel {
        padding: 0.9rem;
    }
    .dch-header_cta {
        gap: 0.5rem;
    }
}

.dch-hero {
    min-height: 70rem;
    background: linear-gradient(135deg, #25183a 0%, #604899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12rem 2rem 6rem;
    color: #fff;
}
.dch-hero_inner {
    max-width: 90rem;
}
.dch-hero_sub {
    font-size: 1.6rem;
    letter-spacing: 0.3rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}
.dch-hero_title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.1rem;
    margin-bottom: 3rem;
}
.dch-hero_guide {
    font-size: 1.5rem;
    opacity: 0.7;
}
@media (max-width: 1024px) {
    .dch-hero {
        min-height: 56rem;
        padding: 10rem 2rem 5rem;
    }
    .dch-hero_title {
        font-size: 2.8rem;
    }
}
@media (max-width: 640px) {
    .dch-hero_title {
        font-size: 2.2rem;
    }
}

/* ==========페이지하단 cta섹션 추가 260529 =========
   ====================CTA 섹션 ==================== */
.cta-section {
    padding: 0;
    margin: 5rem 0 0;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-image: linear-gradient(135deg, rgb(26, 40, 96) 0%, rgb(10, 17, 48) 100%);
    border-radius: 16px;
    text-align: center;
    color: white;
}

.cta-title-view {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cta-subtitle {
    font-size: 1.9rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    color: white;
    padding: 1.4rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.5);
    color: inherit;
}

/* ========== 반응형 ========== */
@media (max-width: 768px) {
    .cta-title-view {
        font-size: 2.8rem;
    }

    .cta-subtitle {
        font-size: 1.6rem;
    }

    .cta-container {
        padding: 3rem 2rem;
    }

    .cta-button {
        padding: 1.6rem 2.4rem;
        font-size: 1.6rem;
    }
}