 :root {
     --blue-primary: #497fe6;
     --bg-light: #f4f7fa;
 }

 body {
     font-family: 'Pretendard', sans-serif;
     background: var(--bg-light);
     margin: 0;
     padding: 0;
 }

 /* 현황판 섹션 */
 .status-section {
     padding: 50px 0 80px 0;
     background-image: url(../img/31592352_det6.png);
     background-position: center;
     background-repeat: no-repeat;
     background-attachment: fixed;
     background-size: cover;
     background-position: center;
 }

 .container {
     width: 950px;
     max-width: 90%;
     text-align: center;
     margin: 0 auto;
 }

 .header-text {
     font-size: 14px;
     color: #666;
     margin-bottom: 5px;
 }

 .title {
     font-size: 28px;
     font-weight: 800;
     color: #1a2b4b;
     margin-bottom: 20px;
 }

 .table-header {
     display: flex;
     background: var(--blue-primary);
     color: white;
     padding: 15px 20px;
     border-radius: 12px 12px 0 0;
     font-weight: 600;
 }

 .col-1 {
     flex: 1;
 }

 .col-2 {
     flex: 2.5;
 }

 .col-3 {
     flex: 1.5;
 }

 .list-viewport {
     height: 330px;
     overflow: hidden;
     background: white;
     border-radius: 0 0 12px 12px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     position: relative;
 }

 .list-container {
     position: relative;
     top: 0;
     transition: top 0.6s ease-in-out;
 }

 .list-item {
     display: flex;
     align-items: center;
     height: 55px;
     border-bottom: 1px solid #f0f0f0;
     box-sizing: border-box;
     padding: 0 20px;
 }

 .status {
     border-radius: 20px;
     padding: 3px 12px;
     font-size: 13px;
     font-weight: bold;
     border: 1.5px solid;
     display: inline-block;
     width: 60px;
 }

 .status.ing {
     color: #f26522;
     border-color: #f26522;
 }

 .status.done {
     color: #3b5998;
     border-color: #3b5998;
 }

 .status.wait {
     color: #888;
     border-color: #ddd;
     background: #f9f9f9;
 }

 .info {
     color: #444;
     font-size: 14px;
     text-align: left;
     padding-left: 20px;
 }

 .amount {
     font-weight: 700;
     color: #333;
     font-size: 15px;
 }

 .info-section {
     width: 100%;
     background-color: #fff;
     padding: 80px 0;
     text-align: center;
 }

 .info-inner {
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .info-sub-title {
     font-size: 24px;
     color: #333;
     margin-top: 0 !important;
     margin-bottom: 10px;
     font-weight: 500;
 }

 .info-main-title {
     font-size: 32px;
     color: #1a2b4b;
     margin-bottom: 50px;
     font-weight: 800;
 }

 .circle-container {
     display: flex;
     justify-content: center;
     gap: 30px;
     flex-wrap: wrap;
 }

 .circle-item {
     flex: 0 1 230px;
 }

 .circle {
     aspect-ratio: 1 / 1;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     border-radius: 50%;
     transition: transform 0.3s ease;
     background: #fff;
     border: 5px solid transparent;
     background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #497fe6 0%, #1a2b4b 100%);
     background-origin: border-box;
     background-clip: content-box, border-box;
 }

 .circle:hover {
     transform: translateY(-10px);
 }

 .circle .num {
     font-size: 24px;
     font-weight: 800;
     color: #497fe6;
     margin-bottom: 5px;
 }

 .circle hr {
     width: 30px;
     border: 0;
     border-top: 1px solid #ccc;
     margin: 10px 0;
 }

 .circle .desc-top {
     font-size: 16px;
     color: #666;
     margin: 0;
 }

 .circle .desc-bottom {
     font-size: 19px;
     font-weight: 700;
     color: #1a2b4b;
     margin: 5px 0 0 0;
 }

 .circle:hover {
     transform: translateY(-10px);
     /* [추가] 호버 시 은은한 블루 그림자로 생동감 부여 */
     box-shadow: 0 10px 25px rgba(73, 127, 230, 0.2);
 }

 @media (max-width: 768px) {
     .info-main-title {
         font-size: 24px;
     }

     .circle-item {
         flex: 0 1 45%;
     }

     .col-1 {
         flex: 1.2;
     }

 }

 @media (max-width: 480px) {
     .circle-item {
         flex: 0 1 80%;
     }
 }







 .form-section {
     width: 100%;
     padding: 100px 0;
     background-color: #1a1c1f;
     /* 섹션 전체 배경색 */
     text-align: center;
 }

 .form-inner {
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .form-title {
     font-size: 32px;
     font-weight: 800;
     color: #fff;
     margin-top: 0 !important;
     margin-bottom: 15px;
 }

 .form-subtitle {
     font-size: 16px;
     color: #666;
     margin-bottom: 60px;
 }

 .apply-form {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 25px;
 }

 .input-group {
     display: flex;
     flex-direction: column;
     text-align: left;
     gap: 10px;
 }

 .input-group label {
     font-size: 15px;
     font-weight: 700;
     color: #c9c9c9;
     padding-left: 2px;
 }

 .input-group input,
 .input-group select {
     width: 100%;
     height: 55px;
     padding: 0 15px;
     border: 1px solid #ddd;
     border-radius: 4px;
     font-size: 16px;
     background: #fff;
     box-sizing: border-box;
     transition: all 0.3s;
 }

 .input-group input:focus,
 .input-group select:focus {
     outline: none;
     border-color: var(--blue-primary);
     box-shadow: 0 0 8px rgba(0, 132, 255, 0.1);
 }


 .agreement-group,
 .submit-btn,
 .form-notice {
     grid-column: span 2;
 }

 .agreement-group {
     margin-top: 20px;
     padding: 20px 0;
     border-top: 1px solid #e0e0e0;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .checkbox-container {
     display: flex;
     align-items: center;
     cursor: pointer;
     font-size: 14px;
     color: #666;
 }

 .checkbox-container input {
     margin-right: 8px;
     width: 18px;
     height: 18px;
     cursor: pointer;
 }

 .view-btn {
     background: none;
     border: none;
     color: #888;
     text-decoration: underline;
     font-size: 13px;
     cursor: pointer;
 }

 /* 상담 신청 버튼 기본 스타일 */
 .submit-btn {
     position: relative;
     z-index: 1;
     width: 100%;
     height: 65px;
     background: linear-gradient(135deg, #ffcf5f 0%, #febf3a 50%, #f7a61b 100%);
     color: #fff;
     border: none;
     border-radius: 4px;
     font-size: 20px;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.3s ease;
     overflow: hidden;
 }

 .submit-btn::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, #ffe082 0%, #ffca28 50%, #ffb300 100%);
     opacity: 0;
     z-index: -1;
     transition: opacity 0.4s ease;
 }

 .submit-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 24px rgba(247, 166, 27, 0.4);
 }

 .submit-btn:hover::after {
     opacity: 1;
 }

 .submit-btn:active {
     transform: translateY(-1px);
     box-shadow: 0 5px 10px rgba(247, 166, 27, 0.3);
 }

 .form-notice {
     font-size: 12px;
     color: #999;
     margin-top: 15px;
 }




 /* --- 개인정보 모달 팝업 스타일 --- */
 .modal {
     display: none;
     position: fixed;
     z-index: 10000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.6);
 }

 .modal-content {
     background-color: #fff;
     margin: 10% auto;
     padding: 0;
     border-radius: 12px;
     width: 90%;
     max-width: 450px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     animation: slideDown 0.3s ease-out;
 }

 @keyframes slideDown {
     from {
         transform: translateY(-30px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 .modal-header {
     padding: 15px 20px;
     background: #f8f9fa;
     border-bottom: 1px solid #eee;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .modal-header h3 {
     margin: 0;
     font-size: 18px;
     color: #333;
 }

 .close-btn {
     font-size: 28px;
     cursor: pointer;
     color: #999;
     line-height: 1;
 }

 .modal-body {
     padding: 25px 20px;
     max-height: 400px;
     overflow-y: auto;
     font-size: 14px;
     line-height: 1.6;
     color: #555;
     text-align: left;
 }

 .modal-footer {
     padding: 15px;
     border-top: 1px solid #eee;
     text-align: center;
 }

 .modal-confirm-btn {
     background: var(--blue-primary);
     color: white;
     border: none;
     padding: 12px 50px;
     border-radius: 6px;
     font-weight: 600;
     cursor: pointer;
 }


 @media (max-width: 768px) {
     .form-section {
         padding: 60px 0;
     }

     .apply-form {
         grid-template-columns: 1fr;
     }

     .agreement-group,
     .submit-btn,
     .form-notice {
         grid-column: span 1;
     }

     .form-title {
         font-size: 26px;
     }

     .modal-content {
         margin: 20% auto;
     }
 }



 /* --- 개인정보 체크박스 & 모달 --- */
 .agreement-group {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     margin-top: 10px;
 }

 .checkbox-container {
     display: flex;
     align-items: center;
     cursor: pointer;
     font-size: 14px;
     color: #666;
 }

 .checkbox-container input {
     margin-right: 8px;
     width: 18px;
     height: 18px;
     cursor: pointer;
 }

 .view-btn {
     background: none;
     border: none;
     color: #888;
     text-decoration: underline;
     font-size: 13px;
     cursor: pointer;
 }

 /* 모달 배경 */
 .modal {
     display: none;
     position: fixed;
     z-index: 9999;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);

 }

 .modal-content {
     background-color: #fff;
     margin: 15% auto;
     padding: 0;
     border-radius: 12px;
     width: 90%;
     max-width: 450px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
     animation: slideDown 0.3s ease-out;
 }

 @keyframes slideDown {
     from {
         transform: translateY(-30px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 .modal-header {
     padding: 15px 20px;
     background: #f8f9fa;
     border-bottom: 1px solid #eee;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .modal-header h3 {
     margin: 0;
     font-size: 18px;
     color: #333;
 }

 .close-btn {
     font-size: 24px;
     cursor: pointer;
     color: #999;
 }

 .modal-body {
     padding: 20px;
     max-height: 300px;
     overflow-y: auto;
     font-size: 14px;
     line-height: 1.6;
     color: #555;
     text-align: left;
 }

 .modal-footer {
     padding: 15px;
     border-top: 1px solid #eee;
     text-align: center;
 }

 .modal-confirm-btn {
     background: var(--blue-primary);
     color: white;
     border: none;
     padding: 10px 40px;
     border-radius: 6px;
     font-weight: 600;
     cursor: pointer;
 }


 @media (max-width: 480px) {
     .modal-content {
         margin: 30% auto;
     }
 }






 /* 푸터 전체 컨테이너 */
 .footer {
     width: 100%;
     padding: 80px 0;
     background-color: var(--bg-light);
     color: #94969b;
     font-size: 13px;
     line-height: 1.8;
     letter-spacing: -0.3px;
 }

 .footer-inner {
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 30px;
     text-align: left;

 }

 /* 1. 상단 안내 구역 - 미니멀 헤어라인 디자인 */
 .footer-warning {
     padding: 40px 0;
     max-width: 1100px;
     text-align: center;
     border-top: 1px solid #2d3036;
 }

 .footer-warning p {
     margin: 0;
     padding: 0;
     line-height: 1.6;
     letter-spacing: -0.04em;
     word-break: keep-all;
 }

 /* 첫 번째 메인 문구 */
 .footer-warning p:first-child {
     font-size: 18px;
     font-weight: 700;
     color: #1e293b;
     margin-bottom: 12px;
 }

 /* 두 번째 서브 문구 */
 .footer-warning p:last-child {
     font-size: 15px;
     font-weight: 400;
     color: #1e293b;
 }

 @media screen and (max-width: 768px) {
     .footer-warning {
         padding: 40px 0 30px;
     }

     .footer-warning p:first-child {
         font-size: 16px;
     }

     .footer-warning p:last-child {
         font-size: 14px;
     }
 }


 /* 2. 대출 상세 조건 구역 */
 .footer-terms {
     margin-bottom: 50px;
     padding-bottom: 40px;
     border-bottom: 1px solid #2d3036;
 }

 .footer-terms p {
     margin-bottom: 20px;
     color: #86888d;
 }

 .footer-terms p:last-child {
     margin-bottom: 0;
 }

 /* 3. 기업 및 등록 정보 구역 */
 .footer-info-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
     justify-content: baseline;
 }

 .footer-biz-box {
     flex: 1;
     min-width: 280px;
 }

 .footer-biz-box p {
     margin-bottom: 6px;
     font-size: 12px;
 }

 .Affiliate {
     margin-top: 40px;
     font-size: 12px;
     color: #5d6066;
     text-decoration: none;
 }

 @media (max-width: 768px) {
     .footer {
         padding: 80px 0;
     }

     .footer-inner {
         text-align: center;
     }


     .footer-info-grid {
         flex-direction: column;
         gap: 20px;
     }
 }



 .eligibility-section {
     width: 100%;
     background-color: #f5f7fa;
     padding: 100px 0;
     overflow: hidden;
     box-sizing: border-box;
     position: relative;
     z-index: 1;
 }


 .eligibility-section::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image: url(../img/3969383.png);
     background-position: center bottom;
     background-repeat: no-repeat;
     background-size: 100% auto;
     opacity: 0.3;
     z-index: -1;
 }

 @media (max-width: 1100px) {
     .eligibility-section::before {
         background-size: cover;
         background-position: center bottom;
     }

     .eligibility-section {

         padding: 60px 0;
     }
 }


 /* 2. 내부 컨테이너 (중앙 정렬 및 잘림 방지 핵심) */
 .eligibility-inner {
     width: 100%;
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 20px;
     box-sizing: border-box;
 }

 /* 3. 타이틀 구역 */
 .eligibility-header {
     margin-bottom: 60px;
     text-align: center;
 }

 .eligibility-header h2 {
     font-size: 32px;
     color: #111;
     font-weight: 700;
     margin-top: 0 !important;
     margin-bottom: 15px;
 }

 .eligibility-header p {
     font-size: 16px;
     color: #666;
 }

 /* 4. 카드 그리드 */
 .eligibility-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     margin-bottom: 30px;
     width: 100%;
     box-sizing: border-box;
 }

 /* 5. 개별 카드 */
 .eligibility-card {
     background-color: #fff;
     padding: 30px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
     box-sizing: border-box;
 }

 .eligibility-card:hover {
     transform: translateY(-5px);
 }

 /* 6. 아이콘 및 텍스트 */
 .card-icon {
     width: 40px;
     margin-right: 20px;
     display: flex;
     justify-content: center;
 }

 .card-icon.blue {
     color: #007bff;
 }

 .card-icon.orange {
     color: #fd7e14;
 }

 .card-icon.red {
     color: #dc3545;
 }

 .card-content p {
     font-size: 16px;
     color: #444;
     text-align: left;
     margin: 0;
 }

 .card-content strong {
     color: #007bff;
     font-weight: 600;
     margin-right: 5px;
 }

 /* 7. 하단 공지 */
 .eligibility-notice {
     background-color: #fff;
     padding: 25px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     width: 100%;
     box-sizing: border-box;
 }

 .notice-icon {
     width: 28px;
     height: 28px;
     border: 2px solid #fd7e14;
     border-radius: 50%;
     color: #fd7e14;
     font-weight: 700;
     display: flex;
     justify-content: center;
     align-items: center;
     margin-right: 15px;
     flex-shrink: 0;
 }

 .notice-content {
     font-size: 16px;
     color: #555;
     text-align: left;
 }

 @media (max-width: 768px) {
     .eligibility-section {
         padding: 60px 0;
     }

     .eligibility-grid {
         grid-template-columns: 1fr;
     }

     /* 1줄로 변경 */
     .eligibility-card {
         padding: 20px;
     }

     .eligibility-notice {
         flex-direction: column;
         text-align: center;
     }

     .notice-icon {
         margin-right: 0;
         margin-bottom: 10px;
     }

     .notice-content {
         text-align: center;
     }
 }

 .main-visual {
     width: 100%;
     height: 600px;
     background-color: #1a1c1f;
     background-image: url('../img/13886034.png');
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
     color: #fff;
     overflow: hidden;
 }

 .main-visual-inner {
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 20px;
     width: 100%;
 }

 .main-content {
     max-width: 600px;
     text-align: left;
 }

 .main-content .sub-title {
     display: inline-block;
     font-size: 16px;
     color: #12287c;
     margin-bottom: 15px;
     letter-spacing: 1px;
 }

 .main-content h1 {
     font-size: 48px;
     line-height: 1.3;
     margin-bottom: 20px;
     font-weight: 700;
 }

 .main-content p {
     font-size: 18px;
     color: #e0e0e0;
     margin-bottom: 35px;
 }

 /* 버튼 스타일 */
 .btn-primary {
     display: inline-block;
     padding: 18px 40px;
     background: linear-gradient(135deg, #ffcf5f 0%, #febf3a 50%, #f7a61b 100%);
     box-shadow:
         inset 0 4px 10px rgba(255, 255, 255, 0.6),
         0 8px 20px rgba(220, 160, 40, 0.3);
     color: #fff;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     font-size: 17px;

     transition: all 0.3s ease;
 }

 .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow:
         inset 0 4px 10px rgba(255, 255, 255, 0.6),
         0 8px 20px rgba(220, 160, 40, 0.3);
 }

 @media (max-width: 768px) {
     .main-visual {
         height: 500px;
     }

     .main-content h1 {
         font-size: 32px;
     }

     .main-content p {
         font-size: 16px;
     }

     .btn-primary {
         width: 100%;
         text-align: center;
         box-sizing: border-box;
     }
 }

 .main-visual-flex {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 50px;
 }

 .main-content {
     flex: 1;
     text-align: left;
 }

 .main-content-img {
     flex: 1;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .main-content-img img {
     max-width: 100%;
     height: auto;
     animation: floating 3s ease-in-out infinite;
 }

 @keyframes floating {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-15px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 @media (max-width: 900px) {
     .main-visual-flex {
         flex-direction: column;
         text-align: center;
         gap: 30px;
     }

     .main-content {
         order: 1;
         /* 텍스트가 위로 */
         text-align: center;
     }

     .main-content-img {
         order: 2;
         /* 이미지가 아래로 */
         max-width: 300px;
         margin: 0 auto;
     }

     .main-visual {
         height: auto;
         padding: 80px 0;
         padding-bottom: 0 !important;
     }
 }




 .floating-btn-wrap {
     position: fixed;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 99999;
     transition: all 0.3s ease-in-out;
     opacity: 1;
     visibility: visible;
 }

 .floating-btn-wrap.is-hidden {
     opacity: 0;
     visibility: hidden;
     transform: translateX(-50%) translateY(20px);
 }

 .floating-btn {
     display: block !important;
     min-width: 280px;
     padding: 18px 0 !important;
     background: linear-gradient(135deg, #ffcf5f 0%, #febf3a 50%, #f7a61b 100%) !important;
     color: #fff !important;
     text-decoration: none !important;
     border-radius: 50px !important;
     font-weight: 700 !important;
     font-size: 18px !important;
     text-align: center !important;
     box-shadow: 0 10px 25px rgba(220, 160, 40, 0.4) !important;
 }


















/* ------------------partner------------------------ */
 /* 반응형 컨테이너: 화면이 작아지면 가로 스크롤 생성 */
 .table-container {
     width: 100%;
     overflow-x: auto;
     -webkit-overflow-scrolling: touch;
     /* 모바일 부드러운 스크롤 */
     border: 1px solid #e0e0e0;
     border-radius: 8px;
 }

 table {
     width: 100%;
     min-width: 800px;
     /* 모바일에서 최소 너비를 유지해 겹침 방지 */
     border-collapse: collapse;
     white-space: nowrap;
     /* 텍스트가 제멋대로 줄바꿈되지 않게 설정 */
 }

 th {
     background-color: #f4f6f8;
     font-weight: 600;
     color: #555;
     padding: 15px 10px;
     border-bottom: 2px solid #dee2e6;
 }

 td {
     padding: 12px 10px;
     border-bottom: 1px solid #eee;
     text-align: center;
     font-size: 0.95rem;
 }

 /* 마우스 호버 효과 */
 tr:hover {
     background-color: #f9fbff;
 }

 /* 텍스트 정렬 보정 (소재지처럼 긴 항목은 왼쪽 정렬이 예쁨) */
 .text-left {
     text-align: left;
     padding-left: 20px;
 }