
        /* 기본 스타일 초기화 및 Pretendard 지정 */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Pretendard", sans-serif; }
        body { background-color: #f8faff; color: #333; line-height: 1.7; font-size:19px; word-break: keep-all; }
        a { text-decoration: none; color: inherit; }

        /* =========================================
           [상단] 첫 번째 버전 스타일 유지
           ========================================= */
        header {
            background: #fff;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        /* 글씨 크기는 v2처럼 약간 키움 (가독성) */
        .logo { font-size: 1.7rem; font-weight: 800; color: #0066ff; max-height:68px;letter-spacing: -1px; }
		.logo img{max-width:100%; marign:0px;  padding:0px;}
        .nav-links a { margin-left: 25px; font-weight: 600; font-size: 1.05rem; }

		 main{        background: linear-gradient(180deg, #ffffff 0%, #eef5ff 20%);}


        .hero {
            padding: 100px 5% 80px;
            text-align: center;
           /* background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);		 */
        }
        /* 글씨 크기 v2 수준으로 확대 */
        .hero .badge { display: inline-block; padding: 6px 20px; background: #fff; border: 1px solid #0066ff; color: #0066ff; border-radius: 50px; font-weight: 700; margin-bottom: 20px; }
        .hero h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.3; margin-bottom: 25px; letter-spacing: -2px; }
        .hero h1 span { color: #0066ff; }
        .hero p { font-size: 1.3rem; color: #555; margin-bottom: 45px; font-weight: 400; }





        /* 특징 리스트 섹션 (이미지 중단 내용) */
        .feature-box {
            background: #fff;
            max-width: 900px;
            margin: 0 auto 100px;
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .feature-text { flex: 1; min-width: 300px; }
        .feature-text h2 { font-size: 2.5rem; margin-bottom: 30px; font-weight: 800; line-height:120%; color: #1a1a1a; }
        .feature-text h2 span { color: #0066ff; }
        .feature-list { list-style: none; }
        .feature-list li {
            background: #f8faff;
            margin-bottom: 12px;
            padding: 15px 25px;
            border-radius: 15px;
            font-weight: 600;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            color: #444;
            transition: 0.3s;
        }
        .feature-list li::before {
            content: attr(data-num);
            background: #0066ff; color: #fff;
            width: 28px; height: 28px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%; font-size: 0.8rem; margin-right: 15px;
        }
        .feature-list li:hover { transform: translateX(10px); background: #eef5ff; color: #0066ff; }

        /* 노하우 그리드 섹션 (이미지 하단 내용) */
        .knowhow-section { padding: 80px 2%; max-width: 1300px; margin: 0 auto; }
        .knowhow-title { text-align: center; margin-bottom: 50px; }
        .knowhow-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .knowhow-item {
            background: rgba(255,255,255,0.7);
            border: 1px solid #fff;
            padding: 30px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .knowhow-item img { width: 60px; height: 60px; object-fit: contain; }
        .knowhow-info h4 { font-size: 22px;line-height:120%; font-weight: 700; color: #333; }
        .knowhow-info h4 span { color: #d32f2f; } /* 강조 텍스트 */








        /* 메인 버튼 (스타일 유지 + 크기 살짝 키움) */
   .btn-diagnose {
            display: inline-block;
            background: linear-gradient(90deg, #0066ff, #6e45e2); /* 버튼 그라데이션 */
            color: #fff;
            padding: 22px 60px;
            border-radius: 50px;
            font-size: 1.5rem;
            font-weight: 700;
            transition: 0.3s;
            cursor: pointer;
            border: none;
            box-shadow: 0 10px 25px rgba(110, 69, 226, 0.3);
        }
        .btn-diagnose:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(110, 69, 226, 0.4); }
        /* =========================================
           [하단] 두 번째 버전 컨텐츠 및 스타일 적용
           ========================================= */

/* =========================================
           인포 섹션 (숫자 카운팅 효과)
           ========================================= */
        .info-section {
            padding: 60px 5% 100px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .card {
            background: #fff;
            padding: 50px 40px;
            border-radius: 25px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            transition: 0.3s;
        }
        /* 숫자 스타일: 더 크고 두껍게 */
        .counter-box {
            font-size: 3.8rem;
            font-weight: 900;
            color: #0066ff;
            margin-bottom: 10px;
            display: flex;
            justify-content: center;
            align-items: baseline;
            letter-spacing: -2px;
        }
        .counter-box .unit { font-size: 2rem; margin-left: 2px; }
        .card p { font-size: 1.2rem; color: #666; font-weight: 600; line-height: 1.5; }



		  /* [신규] 파스텔 도형 절차 섹션 */
        .process-section { padding: 100px 5%; text-align: center; }
        .process-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            max-width: 1300px;
            margin: 50px auto 0;
        }
        .process-item {
            flex: 1;
            min-width: 200px;
            padding: 50px 30px;
            border-radius: 20px;
            position: relative;
            z-index: 1;
        }
        /* 파스텔 배경색들 */
        .step-1 { background-color: #e3f2fd; } /* 파스텔 블루 */
        .step-2 { background-color: #f3e5f5; } /* 파스텔 퍼플 */
        .step-3 { background-color: #e8f5e9; } /* 파스텔 그린 */
        .step-4 { background-color: #fff3e0; } /* 파스텔 오렌지 */

        .process-item .num { font-size: 3rem; font-weight: 900; opacity: 0.2; position: absolute; top: 10px; right: 20px; }
        .process-item h4 { font-size: 24px; font-weight: 800; margin-bottom: 15px; color: #444; }
        .process-item p { font-size: 19px; line-height:140%; color: #777; font-weight: 500; }



/* 후기 섹션 전체 디자인 */
    .review-section {
        padding: 100px 0;
        background-color: transparent;
        text-align: center;
        overflow: hidden;
        position: relative;
    }

    /* [핵심] 양쪽 가장자리 흐림 효과 및 버튼 컨테이너 */
    .review-wrapper {
        position: relative;
        max-width: 1200px;
        margin: 50px auto 0;	 
    }

    .review-mask {
        overflow: hidden;
        /* 양쪽 끝을 은은하게 흐리게 처리 */
        -webkit-mask-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1) 10%, rgba(255,255,255,1) 90%, rgba(255,255,255,0));
        mask-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1) 10%, rgba(255,255,255,1) 90%, rgba(255,255,255,0));
    }

    .review-slider {
        display: flex;
        gap: 30px;
        width: max-content;
        will-change: transform; /* 애니메이션 성능 최적화 */
    }

    /* 카드 스타일 */
    .review-card {
        flex: 0 0 350px;
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(10px);
        padding: 40px 30px;
        border-radius: 25px;	   margin-top:10px;
        box-sizing: border-box;
        border: 1px solid rgba(0, 102, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        text-align: left;
        transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .review-card:hover { transform: translateY(-10px); border-color: #0066ff; background: #fff; }

    /* 의뢰인 프로필 */
    .review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
    .review-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
    .review-name { font-weight: 700; font-size: 1.1rem; color: #111; }
    .review-tag { font-size: 0.8rem; color: #0066ff; background: #eef5ff; padding: 3px 10px; border-radius: 50px; font-weight: 700; margin-top: 4px; display: inline-block; }

    /* 금액 강조 디자인 */
    .review-card h3 { font-size: 1.4rem; font-weight: 800; line-height: 1.4; margin-bottom: 20px; color: #1a1a1a; min-height: 2.8em; }
    .debt-info-grid {
        display: grid; grid-template-columns: 1fr 1fr; background: #f8faff; border-radius: 20px; padding: 20px 10px; margin-bottom: 20px; border: 1px dashed #cbdcfd;
    }
    .debt-box { text-align: center; }
    .debt-box:first-child { border-right: 1px solid #e0e6f0; }
    .debt-label { font-size: 0.85rem; color: #666; margin-bottom: 5px; font-weight: 600; display: block; }
    .debt-value { font-size: 1.6rem; font-weight: 900; color: #0066ff; letter-spacing: -0.5px; }
    .debt-value.highlight { color: #d32f2f; }

    /* [추가] 화살표 버튼 */
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        background: #fff;
        border: none;
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        cursor: pointer;
        z-index: 20;
        color: #0066ff;
        font-size: 1.2rem;
        transition: 0.3s;
        display: flex; align-items: center; justify-content: center;
    }
    .nav-btn:hover { background: #0066ff; color: #fff; transform: translateY(-50%) scale(1.1); }
    .prev-btn { left: -25px; }
    .next-btn { right: -25px; }

    @media (max-width: 1300px) {
        .prev-btn { left: 10px; }
        .next-btn { right: 10px; }
        .review-wrapper { padding: 0 20px; }
    }





        /* 컨텐츠 섹션 공통 스타일 (v2) */
        .content-section { padding: 100px 5%; background-color: #fff; }
        .section-title { font-size: 2.8rem; font-weight: 800; text-align: center; margin-bottom: 70px; letter-spacing: -1px; }

        /* 이미지+텍스트 혼합 섹션 (v2) */
        .content-row { display: flex; align-items: center; gap: 60px; margin-bottom: 90px; flex-wrap: wrap; max-width: 1200px; margin-left: auto; margin-right: auto; }
        .content-row:nth-child(even) { flex-direction: row-reverse; }
        .image-box { flex: 1; min-width: 200px; border-radius: 50px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
        .image-box img { width: 100%; height: auto; display: block; }
        .text-box { flex: 1; min-width: 320px; }
        .text-box h3 { font-size: 2.2rem; margin-bottom: 25px; color: #1a1a1a; font-weight: 700; }
        .text-box h3 span { color: #0066ff; display: block; font-size: 1.2rem; margin-bottom: 10px; font-weight: 600; }
        .text-box p { font-size: 1.2rem; color: #555; font-weight: 400; line-height: 1.8; }

        /* FAQ 섹션 (v2) */
        .faq-section { padding: 100px 5%; background-color: #f8faff; }
        .faq-container { max-width: 900px; margin: 0 auto; }
        .faq-item { background: #fff; margin-bottom: 18px; border-radius: 15px; overflow: hidden; border: 1px solid #e9efff; box-shadow: 0 5px 10px rgba(0,0,0,0.02); }
        .faq-question { padding: 25px 30px; font-size: 1.25rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; color: #1a1a1a; }
        .faq-question:hover { background: #f0f7ff; }
        .faq-question::after { content: '+'; font-size: 2rem; color: #0066ff; font-weight: 400; }
        .faq-answer { padding: 0 30px; max-height: 0; overflow: hidden; transition: all 0.3s ease-out; background: #fafafa; color: #555; font-size: 1.15rem; }
        .faq-item.active .faq-answer { padding: 30px 30px; max-height: 400px; border-top: 1px solid #eee; }
        .faq-item.active .faq-question::after { content: '-'; font-size: 2rem; }

  /* [수정] 하단 고정 상담 바 - 동글동글 파스텔 스타일 */
.floating-consult {
    position: fixed;
    bottom: 20px; /* 바닥에서 살짝 띄움 */
    left: 50%;
    transform: translateX(-50%); /* 화면 중앙 정렬 */
    width: 80%; /* 양옆 여백 */
    max-width: 600px;
    height: 70px;



	 /*
    background: rgba(255, 255, 255, 0.8);  반투명 백그라운드 */

	 background: linear-gradient(45deg, #3a64f7, #430098);
    backdrop-filter: blur(15px); /* 뒤쪽 배경 흐림 효과 */
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 15px;
    z-index: 2000;
    border-radius: 40px; /* 전체 바 테두리 둥글게 */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* 그림자 효과 */
    border: 1px solid rgba(255,255,255,0.5);
}

.consult-btn {
    flex: 1;
    margin: 0 5px; /* 버튼 사이 간격 */
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px; /* 버튼 각각 동글동글하게 */
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.03);
}

/* 연한 파스텔 색상 적용 */
.btn-kakao { 
   /*  background-color: #FFF9C4 !important; 연한 파스텔 노랑 */
   background:#fff;
    color: #000 !important; 
}
.btn-call { 
  /*   background-color: #E3F2FD !important; 연한 파스텔 블루 */
     background:#fff;
    color: #000 !important; 
}
.btn-realtime { 
   /* background-color: #F3E5F5 !important;  연한 파스텔 퍼플 */
      background:#fff;
     color: #000 !important; 
}

/* 마우스 오버 시 효과 */
.consult-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    filter: brightness(0.95);
}



        /* 푸터 - 하단바 여백 확보 */
       footer {  background: #333; color: #aaa; padding: 60px 5% 140px; text-align: center; font-size: 0.9rem;}
        .footer-info { max-width: 1200px; margin: 0 auto; opacity: 0.8; line-height: 1.9; }
        .footer-info strong { color: #fff; font-size: 1.2rem; }



        /* 모바일 대응 (v2 기준 적용) */
        @media (max-width: 768px) {
            header { padding: 15px 5%; }
            .logo { font-size: 1.5rem; }
            .nav-links { display: none; } /* 모바일에서 네비게이션 숨김 */

            .hero { padding: 80px 5% 60px; }
            .hero h1 { font-size: 2.4rem; }
            .hero p { font-size: 1.1rem; }
            .btn-diagnose { font-size: 1.2rem; padding: 18px 40px; width: 100%; text-align: center; }

            .section-title { font-size: 2.1rem; margin-bottom: 50px; }
            .content-row { gap: 30px; margin-bottom: 60px; }
            .text-box h3 { font-size: 1.8rem; }
            .text-box p { font-size: 1.1rem; }

            .faq-question { font-size: 1.1rem; padding: 20px; }
            .faq-answer { font-size: 1rem; padding: 0 20px; }
            .faq-item.active .faq-answer { padding: 20px; }


			.counter-box { font-size: 3rem; }


		   @keyframes scroll-left {
                100% { transform: translateX(calc(-290px * 5)); } /* 모바일 카드 너비 기준 */
            }
            .review-card { width: 270px; height: 360px; padding: 25px; margin: 0 10px; }
            .review-wrapper { width: calc(290px * 10); }
            .review-avatar { width: 50px; height: 50px; margin-right: 12px; }
            .review-avatar img { padding: 3px; }
            .review-user { font-size: 1rem; }
            .review-body { -webkit-line-clamp: 5; font-size: 0.95rem; line-height: 1.6; }

			         .process-container { flex-direction: column; }
       .consult-btn { font-size: 0.85rem; margin: 0 3px; }
    .floating-consult { width: 95%; bottom: 15px; height: 65px; }


			            .feature-box { padding: 30px 20px; }
            .feature-text h2 { font-size: 1.6rem; }
            .knowhow-grid { grid-template-columns: 1fr; }


        }











      /* * * * * * * * * * * * * * * * * * * 레이어 팝업 배경 (불투명한 하얀색) * * * * * * * * * * * * */
    .modal-overlay {
        display: none; /* 기본 숨김 */
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(255, 255, 255, 0.75); /* 하얀색 불투명 배경 */
        z-index: 9999;
        justify-content: center;
        align-items: center;
        backdrop-filter: blur(5px);
    }

    /* 팝업 박스 */
    .modal-content {
        position: relative;
        width: 100%;
        max-width: 420px;
        background: #fff;
        border-radius: 30px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        padding: 40px 30px;
        margin: 20px;
    }

    /* 동그란 닫기 버튼 */
    .modal-close {
        position: absolute;
        top: -15px;
        right: -15px;
        width: 40px;
        height: 40px;
        background: #333;
        color: #fff;
        border-radius: 50%;
        border: 2px solid #fff;
        font-size: 30px;
		padding:0 0 4px 2px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 10001;
    }

    /* 기존 스타일 유지 및 보정 */
    .diagnosis-card { width: 100%; }


		        :root {
            --primary-color: #0066ff;
            --bg-color: #f8faff;
            --text-main: #111;
            --text-sub: #666;
            --border-color: #e5e7eb;
            --success-color: #22c55e;
            --error-color: #ef4444;
        }
        .card { width: 100%; max-width: 420px; background: #fff; padding: 40px 30px; border-radius: 30px; box-shadow: 0 20px 40px rgba(0, 102, 255, 0.08); position: relative; }
        .progress-container { margin-bottom: 30px; }
        .progress-text { font-size: 0.85rem; color: var(--primary-color); font-weight: 700; margin-bottom: 8px; display: block; }
        .progress { height: 6px; background: #eee; border-radius: 10px; overflow: hidden; }
        .bar { height: 100%; background: var(--primary-color); width: 0%; border-radius: 10px; transition: width 0.4s ease; }
        h2 { font-size: 1.45rem; font-weight: 800; line-height: 1.4; margin-bottom: 10px; color: var(--text-main); letter-spacing: -0.5px; }
        p.desc { font-size: 0.95rem; color: var(--text-sub); margin-bottom: 20px; line-height: 1.5; }
        
        .form-group { margin-bottom: 15px; text-align: left; }
        .form-label { font-size: 0.9rem; font-weight: 700; color: var(--text-main); margin-bottom: 5px; display: block; }
        
        select, input { width: 100%; padding: 16px; margin-top: 5px; border-radius: 12px; border: 1.5px solid var(--border-color); font-size: 1rem; background-color: #f9f9f9; outline: none; transition: 0.3s; }
        select:focus, input:focus { border-color: var(--primary-color); background-color: #fff; box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.05); }

        .btn { width: 100%; margin-top: 20px; padding: 18px; border: none; background: var(--primary-color); color: #fff; border-radius: 15px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: 0.3s; }
        .btn:hover { transform: translateY(-2px); opacity: 0.9; }

        .contact-group { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
        .btn-kakao2 { background: #FEE500; color: #3A1D1D; }
        .btn-call2 { background: #1e293b; color: #fff; }

        .step { display: none; }
        .step.active { display: block; animation: fadeIn 0.4s ease-out; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }









