/* ===================================
   JKBIZ - 한국중소기업경영자문센터
   Main Stylesheet (원본 사이트 스타일 매칭)
=================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Common */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0066cc;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 16px;
    color: #666;
}

/* ===================================
   Header (투명 -> 스크롤 시 흰색)
=================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    width: 100%;
    max-width: 100%;
    padding: 0 50px;
}

.logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.header.scrolled .logo img,
.header.header-white .logo img {
    /* 파란색 계열로 변환 (포인트 컬러 #0066cc 근사값) */
    filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(1500%) hue-rotate(200deg) brightness(95%) contrast(101%);
}

/* Navigation */
.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    padding: 30px 22px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.header.scrolled .nav-item > a {
    color: #333;
}

.nav-item > a:hover {
    color: #ffc107;
}

.header.scrolled .nav-item > a:hover {
    color: #0066cc;
}

.nav-item > a.nav-contact {
    background: #0066cc;
    color: #fff;
    margin-left: 10px;
}

.nav-item > a.nav-contact:hover {
    background: #0052a3;
    color: #fff;
}

/* Submenu */
.nav-item.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    border-top: 3px solid #0066cc;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #555;
    transition: all 0.2s;
}

.submenu li a:hover {
    background: #f5f8ff;
    color: #0066cc;
    padding-left: 25px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.header.scrolled .mobile-menu-btn span {
    background: #333;
}

/* Mobile Menu Elements - 데스크톱에서 숨김 */
.mobile-menu-overlay,
.mobile-menu-close,
.mobile-menu-header,
.mobile-menu-footer {
    display: none;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-header,
    .mobile-menu-footer {
        display: flex;
    }

    .mobile-menu-close {
        display: flex;
    }
}

/* ===================================
   Visual Slider (전체 화면 + 텍스트 오버레이)
=================================== */
.visual-section {
    position: relative;
    padding: 0;
    margin-top: 0;
    z-index: 1;
}

.visual-slider {
    width: 100%;
    height: 100vh;
}

.visual-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.visual-slider .swiper-slide .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Content Overlay */
.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
}

.slide-text {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    color: #fff;
}

.slide-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.slide-title {
    font-size: 4.25rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 25px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.slide-title strong {
    font-weight: 700;
    color: #8db8ff;
}

.slide-desc {
    font-size: 22px;
    opacity: 0.95;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-btn {
    display: inline-block;
    padding: 18px 45px;
    background: #0066cc;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.slide-btn:hover {
    background: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.4);
}

/* Slide Text Animation (아래에서 위로 fade-in) */
.slide-subtitle,
.slide-title,
.slide-desc,
.slide-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.swiper-slide-active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.swiper-slide-active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.swiper-slide-active .slide-desc {
    opacity: 0.95;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.swiper-slide-active .slide-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Slider Navigation - 하단 중앙 미니멀 스타일 */
.visual-slider .swiper-button-prev,
.visual-slider .swiper-button-next {
    display: none;
}

/* Custom Slider Controls - 하단 중앙 */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.slider-controls .slider-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-controls .slider-arrow:hover {
    color: #fff;
}

.slider-controls .slider-arrow svg {
    width: 20px;
    height: 20px;
}

/* Pagination Dots - 미니멀 흰색 */
.visual-slider .swiper-pagination {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
}

.visual-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    opacity: 1;
    margin: 0;
    transition: all 0.3s;
    flex-shrink: 0;
}

.visual-slider .swiper-pagination-bullet-active {
    background: #fff;
    border-color: #fff;
}

/* ===================================
   Company Section (Statistics) - 원본 스타일 (밝은 배경)
=================================== */
.company-section {
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
}

.company-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.company-header {
    margin-bottom: 30px;
}

.company-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #0064ff;
    margin-bottom: 25px;
}

.company-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #21314a;
    line-height: 1.35;
    margin-bottom: 25px;
}

.company-title strong {
    font-weight: 700;
    color: #21314a;
}

.company-bottom-text {
    font-size: 1.125rem;
    color: #536179;
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #f4f7fb;
    border-radius: 20px;
    overflow: hidden;
}

.stat-card {
    padding: 50px 40px;
    text-align: left;
    border-right: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    background: rgba(255,255,255,0.5);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #0064ff;
    margin-bottom: 20px;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.stat-number {
    font-size: 5rem;
    font-weight: 800;
    color: #21314a;
    line-height: 1;
}

.stat-decimal {
    font-size: 3.5rem;
    font-weight: 800;
    color: #21314a;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 500;
    color: #536179;
    margin-left: 5px;
}

/* ===================================
   Review Section - 원본 스타일 (밝은 배경)
=================================== */
.review-section {
    background: #fff;
    padding: 120px 0;
    overflow: hidden;
}

.review-section .section-header {
    margin-bottom: 60px;
}

.review-section .section-subtitle {
    color: #0064ff;
    font-size: 1rem;
    font-weight: 600;
}

.review-section .section-title {
    color: #21314a;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.review-section .section-desc {
    color: #536179;
    font-size: 1.125rem;
    line-height: 1.6;
}

.review-slider-wrapper {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.review-slider {
    overflow: visible;
}

.review-slider .swiper-slide {
    width: 280px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.review-slider .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.review-slider .swiper-slide:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Review Navigation Arrows - 양쪽 끝 */
.review-prev,
.review-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    color: #21314a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 10;
    cursor: pointer;
    border: none;
}

.review-prev {
    left: 0;
}

.review-next {
    right: 0;
}

.review-prev:hover,
.review-next:hover {
    background: #0064ff;
    color: #fff;
}

.review-prev svg,
.review-next svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   Service Section - 지원 서비스 (원본 스타일)
=================================== */
.service-section {
    background: #f4f7fb;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.service-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
    padding-left: calc((100vw - 1400px) / 2 + 50px);
}

.service-left {
    flex: 0 0 420px;
}

.service-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #0064ff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.service-title {
    font-size: 3rem;
    font-weight: 800;
    color: #21314a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.service-highlight {
    display: inline-block;
    margin-bottom: 20px;
}

.service-highlight span {
    display: inline-block;
    background: #0064ff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.service-desc {
    font-size: 1.125rem;
    color: #536179;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* 서비스 탭 버튼 */
.service-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-tab {
    position: relative;
    padding: 12px 0;
    background: transparent;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: #8a95a5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-tab::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #0064ff;
    transition: width 0.3s ease;
}

.service-tab:hover {
    color: #21314a;
}

.service-tab.active {
    color: #0064ff;
}

.service-tab.active::after {
    width: 100%;
}

/* 오른쪽 슬라이더 영역 */
.service-right {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.service-slider-wrapper {
    position: relative;
    overflow: visible;
}

.service-slider {
    overflow: visible !important;
}

.service-slider .swiper-wrapper {
    align-items: stretch;
}

.service-slider .swiper-slide {
    width: 480px;
    height: auto;
    transition: all 0.4s ease;
}

.service-slide-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-slide-number {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
    z-index: 1;
    line-height: 1;
}

.service-slide-inner img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.service-slide-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #1a365d 0%, #1a365d 60%, transparent 100%);
    padding: 120px 30px 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* 호버시 오버레이 표시 */
.service-slide-inner:hover .service-slide-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* 활성 슬라이드(가운데)에서 자동으로 오버레이 표시 */
.swiper-slide-active .service-slide-overlay {
    opacity: 1;
    transform: translateY(0);
}

.service-slide-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.service-slide-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    color: #1a365d;
    transition: all 0.3s ease;
}

.service-slide-btn:hover {
    background: #0064ff;
    color: #fff;
    transform: translateX(5px);
}

.service-slide-btn svg {
    width: 24px;
    height: 24px;
}

/* 반응형 */
@media (max-width: 1400px) {
    .service-inner {
        padding-left: 50px;
    }
}

@media (max-width: 1200px) {
    .service-inner {
        flex-direction: column;
        gap: 50px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .service-left {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .service-tabs {
        justify-content: center;
    }

    .service-slider .swiper-slide {
        width: 380px;
    }

    .service-slide-inner img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .service-section {
        min-height: auto;
        padding: 80px 0;
    }

    .service-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-title {
        font-size: 2.25rem;
    }

    .service-slider .swiper-slide {
        width: 300px;
    }

    .service-slide-inner img {
        height: 380px;
    }

    .service-slide-number {
        font-size: 4rem;
    }
}

/* ===================================
   System Section - jkbiz 원본 스타일
=================================== */
.system-section {
    background: #0c1829;
    padding: 40px 20px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.system-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1540px;
}

/* 모든 카드 공통 */
.system-list > li {
    position: relative;
    box-sizing: border-box;
}

/* 타이틀 아이템 - 첫 줄 나머지 공간 채우기 (1540 - 370*2 - 20*2 = 760px) */
.system-title-item {
    width: 760px;
    height: 370px;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 40px;
}

.system-title-box {
    width: 100%;
}

.system-label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #5b9bd5;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.system-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
}

.system-desc {
    font-size: 16px;
    color: #8899aa;
    line-height: 1.8;
}

.system-desc i {
    font-style: normal;
    display: inline-block;
    background: #1a3a5c;
    padding: 10px 20px;
    margin-bottom: 12px;
    border-radius: 2px;
    color: #fff;
}

.system-desc b {
    color: #fff;
}

/* 카드 아이템 (01, 02) - 370x370 */
.system-card {
    width: 370px;
    height: 370px;
    background: #3b82f6;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    list-style: none;
    box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.15);
}

.system-card-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.system-card:hover {
    background: #2563eb;
}

/* 어두운 카드 (02, 03, 05) */
.system-card.system-card-dark {
    background: #2563eb;
}

.system-card.system-card-dark:hover {
    background: #1d4ed8;
}

.system-card-inner .system-card-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.system-card-inner .system-card-icon {
    position: absolute;
    top: 45%;
    right: 30px;
    transform: translateY(-50%);
}

.system-card-icon img {
    width: 100px;
    height: 100px;
    opacity: 0.2;
}

.system-card-text h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.system-card-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* 작은 카드 (03~06) - 370x370 동일 */
.system-card-small {
    width: 370px;
    height: 370px;
}

.system-card-small .system-card-inner {
    padding: 25px;
}

.system-card-small .system-card-inner .system-card-number {
    font-size: 28px;
    top: 20px;
    right: 25px;
}

.system-card-small .system-card-inner .system-card-icon {
    right: 25px;
}

.system-card-small .system-card-icon img {
    width: 80px;
    height: 80px;
}

.system-card-small .system-card-text h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.system-card-small .system-card-text p {
    font-size: 14px;
    line-height: 1.6;
}

/* System Section Responsive */
@media (max-width: 1600px) {
    .system-list {
        gap: 15px;
        max-width: 1325px;
    }

    .system-title-item {
        width: 640px;
        height: 320px;
    }

    .system-card,
    .system-card-small {
        width: 320px;
        height: 320px;
    }

    .system-title {
        font-size: 42px;
    }
}

@media (max-width: 1400px) {
    .system-list {
        gap: 15px;
        max-width: 1145px;
    }

    .system-title-item {
        width: 540px;
        height: 280px;
    }

    .system-card,
    .system-card-small {
        width: 280px;
        height: 280px;
    }

    .system-title {
        font-size: 36px;
    }

    .system-card-text h4 {
        font-size: 20px;
    }

    .system-card-text p {
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .system-list {
        max-width: 100%;
        padding: 0 20px;
    }

    .system-title-item {
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    .system-card,
    .system-card-small {
        width: calc(50% - 10px);
        height: 280px;
    }

    .system-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .system-label {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .system-desc {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .system-section {
        padding: 30px 15px;
    }

    .system-list {
        gap: 12px;
    }

    .system-title-item,
    .system-card,
    .system-card-small {
        width: 100%;
        height: auto;
        min-height: 220px;
    }

    .system-title {
        font-size: 28px;
    }

    .system-card-inner {
        padding: 20px;
    }

    .system-card-inner .system-card-number {
        font-size: 24px;
        top: 15px;
        right: 20px;
    }

    .system-card-text h4 {
        font-size: 18px;
    }

    .system-card-text p {
        font-size: 13px;
    }
}

/* ===================================
   Inquiry Section - jkbiz 원본 스타일
=================================== */
.inquiry-section {
    background: #0a1628;
    padding: 100px 0 120px;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 60px;
}

.inquiry-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.inquiry-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.inquiry-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.inquiry-highlight {
    display: inline-block;
    font-size: 16px;
    color: #f97316;
    background: rgba(249, 115, 22, 0.15);
    padding: 12px 30px;
    border-radius: 2px;
}

.inquiry-table-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
}

.inquiry-table {
    width: 100%;
    border-collapse: collapse;
}

.inquiry-table th,
.inquiry-table td {
    padding: 22px 30px;
    text-align: center;
}

.inquiry-table thead {
    background: rgba(30, 58, 95, 0.8);
}

.inquiry-table th {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.inquiry-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s;
}

.inquiry-table tbody tr:nth-child(odd) {
    background: rgba(20, 40, 70, 0.5);
}

.inquiry-table tbody tr:nth-child(even) {
    background: rgba(15, 30, 55, 0.5);
}

.inquiry-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.1);
}

.inquiry-table td {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    min-width: 80px;
}

.status-badge.completed {
    background: #2563eb;
    color: #fff;
}

.status-badge.pending {
    background: #475569;
    color: rgba(255, 255, 255, 0.9);
}

.status-badge.progress {
    background: #ca8a04;
    color: #fff;
}

/* Inquiry Section Responsive */
@media (max-width: 1024px) {
    .inquiry-section {
        padding: 80px 20px;
    }

    .inquiry-title {
        font-size: 36px;
    }

    .inquiry-table th,
    .inquiry-table td {
        padding: 16px 20px;
    }
}

@media (max-width: 768px) {
    .inquiry-section {
        padding: 60px 15px;
    }

    .inquiry-title {
        font-size: 28px;
    }

    .inquiry-desc,
    .inquiry-highlight {
        font-size: 14px;
    }

    .inquiry-highlight {
        padding: 10px 20px;
    }

    .inquiry-table th,
    .inquiry-table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .status-badge {
        padding: 6px 12px;
        font-size: 11px;
        min-width: 60px;
    }
}

@media (max-width: 480px) {
    .inquiry-table-wrapper {
        overflow-x: auto;
    }

    .inquiry-table {
        min-width: 500px;
    }
}

/* ===================================
   CTA Banner Section - jkbiz 원본 스타일
=================================== */
.cta-banner-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/footer/footer_bg.jpg') center center / cover no-repeat;
    z-index: 1;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 50, 0.75);
    z-index: 2;
}

.cta-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-banner-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 40px;
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 50px;
    background: #3b82f6;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-banner-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.cta-banner-btn svg {
    transition: transform 0.3s ease;
}

.cta-banner-btn:hover svg {
    transform: translateX(5px);
}

/* CTA Banner Responsive */
@media (max-width: 1024px) {
    .cta-banner-section {
        padding: 100px 0;
    }

    .cta-banner-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .cta-banner-section {
        padding: 80px 0;
    }

    .cta-banner-title {
        font-size: 22px;
    }

    .cta-banner-title br {
        display: none;
    }

    .cta-banner-btn {
        padding: 14px 36px;
        font-size: 14px;
    }
}

/* ===================================
   Footer - 심플 스타일
=================================== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 0;
}

/* 푸터 컨테이너 - 헤더와 동일하게 전체 너비 */
.footer .container {
    max-width: 100%;
    padding: 0 50px;
}

/* 상단 네비게이션 */
.footer-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-nav a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #fff;
}

/* 하단 컨텐츠 */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-info .label {
    color: rgba(255,255,255,0.4);
    margin-right: 8px;
}

.footer-info .divider {
    margin: 0 15px;
    color: rgba(255,255,255,0.3);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.contact-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
}

.footer-sns {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.sns-link:hover {
    background: #0066cc;
}

.sns-link img,
.sns-link svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

/* 팝업 스타일 */
.policy-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.policy-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.popup-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.policy-popup.active .popup-content {
    transform: translateY(0);
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.popup-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.popup-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s;
}

.popup-close:hover {
    background: #f5f5f5;
}

.popup-close svg {
    color: #666;
}

.popup-body {
    padding: 30px;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
}

.popup-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 25px 0 12px 0;
}

.popup-body h4:first-child {
    margin-top: 0;
}

.popup-body p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.popup-body ul {
    margin: 10px 0;
    padding-left: 20px;
}

.popup-body ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 5px;
    list-style: disc;
}

/* 이메일 팝업 전용 스타일 */
.email-notice {
    text-align: center;
    padding: 20px 0 30px;
}

.email-notice svg {
    margin-bottom: 15px;
}

.email-notice h4 {
    font-size: 22px;
    color: #222;
    margin: 0;
}

.law-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
}

.law-box h5 {
    font-size: 13px;
    color: #0066cc;
    margin: 0 0 15px 0;
}

.law-box p {
    margin-bottom: 8px;
}

.law-box ul {
    margin-top: 15px;
}

.law-box ul li {
    font-size: 13px;
    color: #666;
}

.swiper-pagination  {
    width: unset;
}

/* ===================================
   Quick Menu - 원본 스타일
=================================== */
.quick-menu {
    position: fixed;
    right: 15px;
    bottom: 80px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.quick-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.quick-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.quick-item img {
    width: 26px;
    height: 26px;
    margin-bottom: 4px;
}

.quick-item span {
    font-size: 10px;
    font-weight: 600;
    color: #333;
}

.quick-item.tel {
    background: #25d366;
}

.quick-item.tel span {
    color: #fff;
}

.quick-item.tel svg {
    stroke: #fff;
}

.quick-item.consult {
    background: #0066cc;
}

.quick-item.consult span {
    color: #fff;
}

.quick-item.consult svg {
    stroke: #fff;
}

.quick-item.kakao {
    background: #fee500;
}

.quick-item.kakao svg {
    fill: #3c1e1e;
}

.quick-item.top {
    background: #1a2332;
    color: #fff;
}

.quick-item.top span {
    color: #fff;
}

/* ===================================
   Responsive Design
=================================== */
@media (max-width: 1024px) {
    .company-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 4rem;
    }

    .stat-decimal {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer .container {
        padding: 0 30px;
    }

    .footer-nav {
        gap: 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 15px;
    }

    .footer-right {
        flex-direction: column;
        gap: 10px;
    }

    .footer-sns {
        margin-left: 0;
    }

    .process-timeline {
        gap: 5px;
    }

    .process-item {
        flex: 0 0 110px;
        padding: 15px 10px;
    }

    .process-arrow {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header-top {
        display: none;
    }

    .header-inner {
        height: 60px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-item > a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-item > a.nav-contact {
        margin: 15px;
        text-align: center;
        border-radius: 4px;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-top: none;
        padding: 0;
    }

    .submenu li a {
        padding: 12px 30px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Visual Slider Mobile */
    .visual-section {
        margin-top: 0;
    }

    .visual-slider {
        height: 100vh;
    }

    .slide-title {
        font-size: 26px;
    }

    .slide-desc {
        font-size: 15px;
    }

    .slide-text {
        padding: 0 20px;
    }

    .slide-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-arrow {
        transform: rotate(90deg);
        padding: 10px 0;
    }

    .process-item {
        flex: 0 0 auto;
        width: 100%;
        max-width: 200px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info .section-title {
        text-align: center;
    }

    .business-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer .container {
        padding: 0 20px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }

    .footer-info .divider {
        display: none;
    }

    .footer-info p {
        text-align: center;
    }

    .contact-number {
        font-size: 28px;
    }

    /* 팝업 반응형 */
    .popup-content {
        width: 95%;
        max-height: 85vh;
    }

    .popup-header {
        padding: 15px 20px;
    }

    .popup-body {
        padding: 20px;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tel-number {
        font-size: 28px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        height: 55px;
    }

    .logo img {
        height: 35px;
    }

    .visual-section {
        margin-top: 0;
    }

    .visual-slider {
        height: 100vh;
    }

    .slide-title {
        font-size: 22px;
    }

    .slide-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .slide-content {
        background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    }

    .company-section {
        min-height: auto;
        padding: 60px 15px;
    }

    .company-title {
        font-size: 1.75rem;
    }

    .company-bottom-text {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .stat-card {
        padding: 30px 25px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-decimal {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 22px;
    }

    .inquiry-table th,
    .inquiry-table td {
        padding: 10px 8px;
        font-size: 11px;
    }

    .quick-menu {
        right: 10px;
        bottom: 60px;
    }

    .quick-item {
        width: 50px;
        height: 50px;
    }

    .quick-item img {
        width: 22px;
        height: 22px;
    }

    .quick-item span {
        font-size: 9px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animated {
    animation: fadeInUp 0.5s ease;
}

/* ===================================
   Parallax Banner Section
=================================== */
.parallax-banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/smallsction/center_banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.parallax-subtitle {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.parallax-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* Parallax Banner Responsive */
@media (max-width: 1024px) {
    .parallax-banner {
        height: 400px;
    }

    .parallax-subtitle {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .parallax-title {
        font-size: 36px;
        letter-spacing: 4px;
    }
}

@media (max-width: 768px) {
    .parallax-banner {
        height: 350px;
    }

    .parallax-bg {
        background-attachment: scroll;
    }

    .parallax-subtitle {
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .parallax-title {
        font-size: 24px;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .parallax-banner {
        height: 300px;
    }

    .parallax-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .parallax-title {
        font-size: 18px;
        letter-spacing: 2px;
    }
}

/* ===================================
   Enhanced Mobile Responsive Styles
=================================== */

/* --- Header Mobile Enhancements --- */
@media (max-width: 768px) {
    /* 모바일 헤더 - PC와 동일하게 투명 → 스크롤시 흰색 */
    .header {
        background: transparent !important;
    }

    .header.scrolled {
        background: #fff !important;
    }

    .header.header-white {
        background: #fff !important;
    }

    .header-inner {
        padding: 0 15px;
        height: 60px;
    }

    .logo img {
        height: 36px;
    }

    /* 모바일 메뉴 - 우측에서 슬라이드 인 */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: auto !important;
        right: -100% !important;
        width: 75% !important;
        max-width: 300px !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: linear-gradient(180deg, #1a365d 0%, #0d2240 100%) !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease !important;
        z-index: 1001 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        visibility: hidden;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0 !important;
        visibility: visible !important;
    }

    /* 모바일 메뉴 헤더 */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-logo {
        height: 32px;
        filter: brightness(0) invert(1);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
        flex: 1;
    }

    .nav-item {
        border-bottom: none;
    }

    .nav-item > a {
        display: flex;
        align-items: center;
        padding: 16px 25px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9) !important;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
    }

    .nav-item > a:hover,
    .nav-item > a.active {
        background: rgba(255, 255, 255, 0.1);
        color: #fff !important;
        border-left-color: #4a9eff;
    }

    /* 모바일 메뉴 오버레이 */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        z-index: 1000;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* 모바일 메뉴 닫기 버튼 */
    .mobile-menu-close {
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-close::before,
    .mobile-menu-close::after {
        content: '';
        position: absolute;
        width: 14px;
        height: 2px;
        background: #fff;
    }

    .mobile-menu-close::before {
        transform: rotate(45deg);
    }

    .mobile-menu-close::after {
        transform: rotate(-45deg);
    }

    /* 햄버거 메뉴 버튼 스타일 */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1002;
    }

    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
        background: #fff;
        transition: all 0.3s ease;
    }

    /* 스크롤시 햄버거 색상 변경 */
    .header.scrolled .mobile-menu-btn span {
        background: #333;
    }

    /* 메뉴가 열렸을 때 햄버거 버튼 숨김 */
    .nav-menu.active ~ .mobile-menu-btn,
    body:has(.nav-menu.active) .mobile-menu-btn {
        opacity: 0;
        pointer-events: none;
    }
}

/* --- Visual Slider Mobile Enhancements --- */
@media (max-width: 768px) {
    .visual-slider {
        height: 100vh;
        min-height: 500px;
    }

    .slide-content {
        align-items: center;
        justify-content: center;
    }

    .slide-text {
        padding: 0 25px;
        text-align: center;
    }

    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 18px;
        line-height: 1.35;
    }

    .slide-title br {
        display: inline;
    }

    .slide-desc {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .slide-btn {
        padding: 16px 32px;
        font-size: 15px;
        margin: 0 auto;
    }

    .slider-controls {
        bottom: 30px;
        gap: 12px;
    }

    .slider-controls .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .visual-slider .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .visual-slider {
        height: 100vh;
        min-height: 450px;
    }

    .slide-content {
        background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
        align-items: center;
        justify-content: center;
    }

    .slide-text {
        padding: 0 20px;
        text-align: center;
    }

    .slide-subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .slide-title {
        font-size: 1.75rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .slide-desc {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .slide-btn {
        padding: 14px 28px;
        font-size: 14px;
        margin: 0 auto;
    }

    .slider-controls {
        bottom: 25px;
    }
}

/* --- Company Section Mobile Enhancements --- */
@media (max-width: 768px) {
    .company-section {
        min-height: auto;
        padding: 80px 20px;
    }

    .company-title {
        font-size: 1.75rem;
        line-height: 1.4;
    }

    .company-title br {
        display: none;
    }

    .company-bottom-text {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .stats-grid {
        border-radius: 12px;
    }

    .stat-card {
        padding: 35px 25px;
        text-align: left;
    }

    .stat-label {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .stat-value {
        justify-content: flex-start;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stat-decimal {
        font-size: 2.25rem;
    }

    .stat-suffix {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .company-section {
        padding: 60px 15px;
    }

    .company-label {
        font-size: 0.875rem;
        margin-bottom: 15px;
    }

    .company-title {
        font-size: 1.5rem;
    }

    .stat-card {
        padding: 25px 20px;
        text-align: left;
    }

    .stat-value {
        justify-content: flex-start;
    }

    .stat-number {
        font-size: 2.75rem;
    }

    .stat-decimal {
        font-size: 1.75rem;
    }

    .stat-suffix {
        font-size: 1.25rem;
    }
}

/* --- Review Section Mobile Enhancements --- */
@media (max-width: 768px) {
    .review-section {
        padding: 80px 0;
    }

    .review-section .section-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .review-section .section-title {
        font-size: 2rem;
    }

    .review-section .section-desc {
        font-size: 1rem;
    }

    .review-section .section-desc br {
        display: none;
    }

    .review-slider-wrapper {
        padding: 0 40px;
    }

    .review-slider .swiper-slide {
        width: 220px;
    }

    .review-prev,
    .review-next {
        width: 36px;
        height: 36px;
    }

    .review-prev svg,
    .review-next svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .review-section {
        padding: 60px 0;
    }

    .review-section .section-subtitle {
        font-size: 0.85rem;
    }

    .review-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .review-section .section-desc {
        font-size: 0.9rem;
    }

    .review-slider-wrapper {
        padding: 0 30px;
    }

    .review-slider .swiper-slide {
        width: 180px;
        border-radius: 12px;
    }

    .review-slider .swiper-slide img {
        border-radius: 12px;
    }

    .review-prev,
    .review-next {
        width: 30px;
        height: 30px;
    }

    .review-prev svg,
    .review-next svg {
        width: 14px;
        height: 14px;
    }
}

/* --- Service Section Mobile Enhancements --- */
@media (max-width: 768px) {
    .service-section {
        min-height: auto;
        padding: 80px 0;
    }

    .service-inner {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .service-left {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .service-label {
        font-size: 0.9rem;
    }

    .service-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .service-highlight span {
        font-size: 0.9rem;
        padding: 10px 18px;
    }

    .service-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .service-desc br {
        display: none;
    }

    .service-tabs {
        justify-content: center;
        gap: 10px;
    }

    .service-tab {
        font-size: 1rem;
        padding: 10px 0;
    }

    .service-right {
        width: 100%;
    }

    .service-slider .swiper-slide {
        width: 280px;
    }

    .service-slide-inner img {
        height: 380px;
    }

    .service-slide-number {
        font-size: 3.5rem;
        top: 20px;
        right: 25px;
    }

    .service-slide-overlay {
        padding: 80px 20px 25px;
    }

    .service-slide-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .service-slide-desc {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .service-slide-desc br {
        display: none;
    }

    .service-slide-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .service-section {
        padding: 60px 0;
    }

    .service-inner {
        gap: 30px;
        padding: 0 15px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-highlight span {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .service-desc {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .service-tabs {
        gap: 8px;
        flex-wrap: wrap;
    }

    .service-tab {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    .service-slider .swiper-slide {
        width: 240px;
    }

    .service-slide-inner img {
        height: 320px;
    }

    .service-slide-number {
        font-size: 2.5rem;
    }

    .service-slide-overlay {
        padding: 60px 15px 20px;
    }

    .service-slide-title {
        font-size: 1.2rem;
    }

    .service-slide-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .service-slide-btn {
        width: 38px;
        height: 38px;
    }
}

/* --- Parallax Banner Mobile Enhancements --- */
@media (max-width: 768px) {
    .parallax-content {
        padding: 0 30px;
    }
}

/* --- System Section Mobile Enhancements --- */
@media (max-width: 768px) {
    .system-section {
        padding: 30px 15px;
    }

    .system-list {
        gap: 12px;
    }

    .system-title-item {
        padding: 30px;
        min-height: auto;
    }

    .system-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    .system-desc {
        font-size: 0.9rem;
    }

    .system-card,
    .system-card-small {
        width: calc(50% - 6px);
        height: auto;
        min-height: 200px;
    }

    .system-card-inner {
        padding: 20px;
    }

    .system-card-inner .system-card-number {
        font-size: 22px;
        top: 15px;
        right: 15px;
    }

    .system-card-text h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .system-card-text p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .system-section {
        padding: 25px 12px;
    }

    .system-list {
        gap: 10px;
    }

    .system-title-item {
        padding: 25px 20px;
        width: 100%;
    }

    .system-label {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .system-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .system-desc {
        font-size: 0.85rem;
    }

    .system-card,
    .system-card-small {
        width: 100%;
        min-height: 180px;
    }

    .system-card-inner {
        padding: 18px;
    }

    .system-card-inner .system-card-number {
        font-size: 20px;
    }

    .system-card-text h4 {
        font-size: 0.95rem;
    }

    .system-card-text p {
        font-size: 0.75rem;
    }

    .system-card-text p br {
        display: none;
    }
}

/* --- Inquiry Section Mobile Enhancements --- */
@media (max-width: 768px) {
    .inquiry-section {
        padding: 80px 15px;
    }

    .inquiry-header {
        margin-bottom: 40px;
    }

    .inquiry-label {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .inquiry-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .inquiry-desc {
        font-size: 0.9rem;
    }

    .inquiry-highlight {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .inquiry-section {
        padding: 60px 12px;
    }

    .inquiry-title {
        font-size: 1.4rem;
    }

    .inquiry-desc,
    .inquiry-highlight {
        font-size: 0.85rem;
    }

    .inquiry-highlight {
        padding: 8px 16px;
    }

    /* Mobile friendly table */
    .inquiry-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .inquiry-table {
        min-width: 450px;
    }

    .inquiry-table th,
    .inquiry-table td {
        padding: 12px 8px;
        font-size: 12px;
        white-space: nowrap;
    }

    .status-badge {
        padding: 5px 10px;
        font-size: 10px;
        min-width: auto;
    }
}

/* --- CTA Banner Section Mobile Enhancements --- */
@media (max-width: 768px) {
    .cta-banner-section {
        padding: 80px 20px;
    }

    .cta-banner-title {
        font-size: 1.4rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .cta-banner-title br {
        display: none;
    }

    .cta-banner-btn {
        padding: 14px 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cta-banner-section {
        padding: 60px 15px;
    }

    .cta-banner-title {
        font-size: 1.2rem;
    }

    .cta-banner-btn {
        padding: 12px 28px;
        font-size: 13px;
    }

    .cta-banner-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* --- Footer Mobile Enhancements --- */
@media (max-width: 768px) {
    .footer .container {
        padding: 0 15px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
        padding: 15px 0;
    }

    .footer-nav a {
        font-size: 13px;
    }

    .footer-content {
        padding: 25px 0;
        gap: 20px;
    }

    .footer-logo {
        height: 35px;
    }

    .footer-info p {
        font-size: 12px;
        line-height: 1.8;
    }

    .contact-label {
        font-size: 11px;
    }

    .contact-number {
        font-size: 24px;
    }

    .footer-sns {
        gap: 8px;
    }

    .sns-link {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        gap: 10px 15px;
    }

    .footer-nav a {
        font-size: 12px;
    }

    .footer-info p {
        font-size: 11px;
    }

    .contact-number {
        font-size: 22px;
    }

    .sns-link {
        width: 32px;
        height: 32px;
    }

    .sns-link img,
    .sns-link svg {
        width: 16px;
        height: 16px;
    }
}

/* --- Quick Menu Mobile Enhancements --- */
@media (max-width: 768px) {
    .quick-menu {
        right: 12px;
        bottom: 70px;
        gap: 6px;
    }

    .quick-item {
        width: 52px;
        height: 52px;
        border-radius: 6px;
    }

    .quick-item img,
    .quick-item svg {
        width: 22px;
        height: 22px;
        margin-bottom: 3px;
    }

    .quick-item span {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .quick-menu {
        right: 10px;
        bottom: 60px;
    }

    .quick-item {
        width: 46px;
        height: 46px;
    }

    .quick-item img,
    .quick-item svg {
        width: 20px;
        height: 20px;
        margin-bottom: 2px;
    }

    .quick-item span {
        font-size: 8px;
    }
}

/* --- General Mobile Touch Improvements --- */
@media (max-width: 768px) {
    /* Disable hover effects on touch devices */
    @media (hover: none) {
        .nav-item > a:hover,
        .service-tab:hover,
        .system-card:hover,
        .quick-item:hover {
            transform: none;
        }

        .service-slide-overlay {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Smooth scrolling for touch */
    html {
        -webkit-overflow-scrolling: touch;
    }
}
