    /* =========================================
           기본 설정 및 레이아웃
           ========================================= */
        body {
            background-color: #050505;
            color: #fff;
            font-family: 'Pretendard', 'Montserrat', sans-serif;
            overflow-y: auto; 
        }
        ::-webkit-scrollbar {
            width: 10px;  /* 세로 스크롤바 너비 */
            height: 10px; /* 가로 스크롤바 높이 */
        }

        /* 2. 스크롤바 트랙 (배경) */
        ::-webkit-scrollbar-track {
            background: #0a0a0a; /* 사이트 배경색과 거의 비슷하게 */
            border-radius: 5px;
        }

        /* 3. 스크롤바 핸들 (움직이는 막대) */
        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.15); /* 평소에는 은은한 회색 */
            border-radius: 10px; /* 둥근 모서리 */
            background-clip: padding-box;
            border: 2px solid transparent; /* 트랙과의 간격을 주기 위한 투명 테두리 */
        }

        /* 4. 마우스 호버 시 핸들 색상 변경 */
        ::-webkit-scrollbar-thumb:hover {
            background: #E8941A; /* 브랜드 컬러 (오렌지) */
            border: 2px solid transparent; /* 호버 시에도 간격 유지 */
            background-clip: padding-box;
        }

        /* 5. 코너 (가로/세로 스크롤바 교차점) */
        ::-webkit-scrollbar-corner {
            background: transparent;
        }

        /* Firefox 브라우저 호환성 (옵션) */
        html {
            scrollbar-width: thin; /* 얇게 */
            scrollbar-color: rgba(255, 255, 255, 0.15) #0a0a0a; /* 핸들 색 / 트랙 색 */
        }
        .sub-header {
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
        }

        .about-wrapper {
            padding-top: 100px;
            min-height: 100vh;
            position: relative;
        }

        /* 2단 레이아웃 컨테이너 */
        .sub-page-container {
            display: flex;
            width: 100%;
            max-width: 90%;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            gap: 60px;
        }

        /* 좌측 사이드바 (Sticky) */
        .sub-sidebar {
            width: 220px;
            flex-shrink: 0;
            position: sticky;
            top: 150px;
            height: fit-content;
            padding-top: 50px;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 10;
        }

        .sub-sidebar-title {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 40px;
            font-family: 'Montserrat', sans-serif;
        }

        .sub-sidebar-menu { list-style: none; padding: 0; margin: 0; }
        .sub-sidebar-menu li { margin-bottom: 20px; }
        .sub-sidebar-menu a {
            text-decoration: none; font-size: 16px; color: rgba(255, 255, 255, 0.4);
            font-weight: 500; transition: all 0.3s ease; display: block; position: relative; padding-left: 0;
        }
        .sub-sidebar-menu a:hover { color: #fff; padding-left: 10px; }
        .sub-sidebar-menu a.active { color: #E8941A; font-weight: 700; padding: 0 10px; }
        .sub-sidebar-menu a.active::before {
            content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
            width: 4px; height: 4px; background: #E8941A; border-radius: 50%;
        }

        /* 우측 콘텐츠 영역 */
        .sub-content-area {
            flex: 1;
            position: relative;
            min-width: 0;
        }

        /* =========================================
           디자인 요소 (점선, 라벨, 타이틀)
           ========================================= */
        
        /* 중앙 점선 가이드 */
        .vertical-guide-line {
            position: absolute; top: 0; left: 50%; transform: translateX(-50%);
            width: 1px; height: 95%;
            border-left: 2px dashed rgba(255, 255, 255, 0.1);
            z-index: -1; pointer-events: none;
        }

        .guide-dot {
            position: absolute; left: 50%; transform: translate(-50%, -50%);
            width: 12px; height: 12px;
            background: #E8941A; border-radius: 50%;
            box-shadow: 0 0 15px rgba(232, 148, 26, 0.6); z-index: 1;
            display:none;
        }
        .guide-dot.start-dot { top: 180px; }
        .guide-dot.middle-dot { position: relative; top: -60px; margin: 0 auto; }

        /* 섹션 라벨 & 타이틀 */
        .section-label {
            display: inline-block; font-size: 16px; font-weight: 700; color: #E8941A;
            text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
        }
        .section-title {
            font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 50px; line-height: 1.3;
        }

        /* Breadcrumbs */
        .breadcrumbs-container { padding: 20px 0; margin: 0; }
        .breadcrumbs { display: flex; list-style: none; padding: 0; margin: 0; gap: 10px; font-size: 14px; color: rgba(255, 255, 255, 0.4); }
        .breadcrumbs li { display: flex; align-items: center; }
        .breadcrumbs li span.current{color:#E8941A;}
        .breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 10px; color: rgba(255, 255, 255, 0.2); }
        .breadcrumbs a { color: rgba(255, 255, 255, 0.4); text-decoration: none; transition: color 0.3s; }
        .breadcrumbs a:hover { color: #E8941A; }

        /* Animations */
        .animate-up { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .animate-up.visible { opacity: 1; transform: translateY(0); }
        .delay-1 { transition-delay: 0.2s; } .delay-2 { transition-delay: 0.4s; } .delay-3 { transition-delay: 0.6s; }

        /* =========================================
           섹션별 스타일
           ========================================= */

        /* 1. Intro Section */
        .about-section { padding: 100px 0; position: relative; min-height:680px;}
        .intro-section { padding: 80px 0 150px; text-align: center; }
        .intro-section h2 { font-size: 42px; color: #fff; margin-bottom: 30px; text-shadow: 0 0 30px rgba(0,0,0,0.5); line-height: 1.1; }
        .intro-desc { font-size: 22px; color: rgba(255, 255, 255, 0.9); margin-bottom: 10px; }
        .intro-sub-desc { font-size: 16px; color: rgba(255, 255, 255, 0.5); }

        /* 2. Stats Section */
        .stats-section { text-align: center; }
        .content-container { width: 100%; max-width: 100%; padding: 0; }
        
        .stats-grid { display: flex; justify-content: center; gap: 30px; margin-top: 40px; }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px; padding: 40px 30px; flex: 1; max-width: 320px;
            backdrop-filter: blur(10px); transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .stat-card:hover { transform: translateY(-10px); border-color: #E8941A; background: rgba(255, 255, 255, 0.05); }
        
        .stat-number { font-size: 64px; font-weight: 800; color: #E8941A; margin-bottom: 10px; display: block; }
        .stat-number .percent { font-size: 30px; color: #fff; font-weight: 400; margin-left: 5px; }
        
        .stat-info h4 { font-size: 18px; color: #fff; margin-bottom: 10px; font-weight: 600; }
        .stat-info p { font-size: 14px; color: rgba(255, 255, 255, 0.5); line-height: 1.5; }

        /* 3. Concept Section */
        .concept-section { text-align: center; }
        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
        
        .feature-card {
            position: relative; height: 450px; border-radius: 20px; overflow: hidden;
            display: flex; flex-direction: column; justify-content: flex-end; padding: 40px 30px;
            text-align: left; background: #111; border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            transition: transform 0.4s ease;
        }
        .feature-card:hover { transform: translateY(-10px); }
        
        .feature-card .card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden; /* 영상이 튀어나가지 않게 */
            transition: transform 0.5s ease; /* 호버 시 확대 효과 유지 */
        }
        /* 동영상 스타일 */
        .feature-card .card-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 비율 유지하면서 꽉 채우기 */
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1; /* 그라데이션보다 아래 */
        }

        .feature-card .card-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2; /* 동영상 위에 위치 */
            /* 위는 투명하고 아래로 갈수록 어두워지는 그라데이션 */
            background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
            pointer-events: none; /* 마우스 이벤트는 통과 */
        }

        .feature-card:hover .card-bg {
            transform: scale(1.05);
        }


        .feature-card .card-content { position: relative; z-index: 1; }
        .card-tag {
            display: inline-block; padding: 5px 12px; border: 1px solid rgba(255,255,255,0.3);
            border-radius: 20px; font-size: 12px; color: #fff; margin-bottom: 15px; backdrop-filter: blur(5px);
        }
        .feature-card h3 { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 15px; line-height: 1.2; }
        .feature-card p { font-size: 16px; color: rgba(255, 255, 255, 0.7); line-height: 1.6; }

        /* 4. Question Section */
        .question-section { text-align: center; }
        .question-section h3 { font-size: 32px; font-weight: 600; color: #fff; }
        .question-section .highlight { color: #E8941A; font-style: italic; position: relative; display: inline-block; }
        .question-section .highlight::after {
            content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 10px;
            background: rgba(232, 148, 26, 0.3); z-index: -1;
        }

        /* 5. Orbit Section (3D) */
        .orbit-section { padding: 150px 0; overflow: hidden; perspective: 1000px; }
        .galaxy-container { position: relative; width: 800px; height: 800px; margin: 0 auto; display: flex; align-items: center; justify-content: center; transform-style: preserve-3d; }
        
        .core-wrapper {
            position: absolute; width: 280px; height: 280px; z-index: 10;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232, 148, 26, 0.15) 0%, rgba(200, 100, 0, 0.05) 50%, transparent 70%);
            box-shadow: 0 0 60px rgba(232, 148, 26, 0.1), inset 0 0 40px rgba(232, 148, 26, 0.05);
        }
        .core-text-small { color: rgba(255, 255, 255, 0.6); font-size: 13px; margin-bottom: 8px; letter-spacing: 2px; text-transform: uppercase; }
        .core-logo { font-size: 32px; font-weight: 700; color: #fff; text-shadow: 0 0 20px rgba(232, 148, 26, 0.5); letter-spacing: 1px; margin: 0; }
        .core-logo span { color: #E8941A; }
        
        .core-arc { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; border: 2px solid transparent; pointer-events: none; }
        .arc-orange { border-top-color: rgba(232, 148, 26, 0.6); border-right-color: rgba(232, 148, 26, 0.2); transform: rotate(-45deg); filter: blur(1px); animation: spin-slow 10s linear infinite; }
        .arc-white { border-bottom-color: rgba(255, 255, 255, 0.3); border-left-color: rgba(255, 255, 255, 0.1); transform: rotate(-45deg) scale(0.9); filter: blur(1px); animation: spin-slow-reverse 15s linear infinite; }
        
        .orbit-system { position: absolute; width: 100%; height: 100%; transform-style: preserve-3d; animation: systemFloat 8s ease-in-out infinite; }
        .orbit-ring { position: absolute; top: 50%; left: 50%; transform-origin: center; border: 1px dashed rgba(255, 255, 255, 0.1); border-radius: 50%; pointer-events: none; }
        .ring-1 { width: 700px; height: 700px; margin-left: -350px; margin-top: -350px; transform: rotateZ(30deg) rotateX(75deg); }
        .ring-2 { width: 650px; height: 650px; margin-left: -325px; margin-top: -325px; transform: rotateZ(-30deg) rotateX(75deg); }
        .ring-3 { width: 750px; height: 750px; margin-left: -375px; margin-top: -375px; transform: rotateZ(90deg) rotateX(80deg); }
        
        .dots-layer { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 20; pointer-events: none; }
        .planet-item { position: absolute; display: flex; align-items: center; gap: 12px; transform: translate(-50%, -50%); }
        .dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; box-shadow: 0 0 10px rgba(255,255,255,0.9); position: relative; }
        .dot::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 16px; height: 16px; border: 1px solid rgba(232, 148, 26, 0.4); border-radius: 50%; animation: pulse-dot 2s infinite; }
        .label { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; text-shadow: 0 0 5px rgba(0,0,0,0.8); transition: color 0.3s; }
        
        .item-1 { top: 25%; left: 30%; }
        .item-2 { top: 25%; left: 70%; flex-direction: row-reverse; }
        .item-3 { top: 50%; left: 18%; flex-direction: row-reverse; }
        .item-4 { top: 50%; left: 82%; }
        .item-5 { top: 75%; left: 32%; flex-direction: row-reverse; }
        .item-6 { top: 72%; left: 75%; }
        
        .portfolio-cta-section {
            padding: 0 !important; /* 기존 패딩 제거 */
            margin-top: 100px;     /* 섹션 높이 설정 */
            border-radius: 20px;   /* 카드 형태 둥근 모서리 */
            overflow: hidden;      /* 갤러리가 튀어나가지 않게 */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 갤러리 배경 컨테이너 */
        .moving-gallery-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* main.css의 .gallery-item 크기가 클 수 있으므로 about 페이지용으로 조정 */
        .portfolio-cta-section .gallery-item {
            width: 200px; 
            height: 120px;
            margin: 0 15px;
            border-radius: 8px;
            opacity: 0.3; /* 배경이므로 투명도 조절 */
        }
        .moving-gallery { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 1; }
        .gallery-row { display: flex; position: absolute; white-space: nowrap; }
        .gallery-row-1 { top: 5%; animation: scrollLeft 60s linear infinite; }
        .gallery-row-2 { top: 35%; animation: scrollRight 55s linear infinite; }
        .gallery-row-3 { top: 65%; animation: scrollLeft 65s linear infinite; }
        @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        @keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
        .gallery-item { width: 280px; height: 180px; margin: 0 20px; border-radius: 12px; background-size: cover; background-position: center; opacity: 0.15; flex-shrink: 0; transition: opacity 0.5s ease; }
        .vignette-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.8) 60%, rgba(10,10,10,0.98) 100%); z-index: 2; pointer-events: none; }

        /* 텍스트 컨텐츠 (중앙 정렬) */
        .cta-content {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .cta-content h3 {
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            text-shadow: 0 0 30px rgba(0,0,0,0.8);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .cta-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            text-shadow: 0 0 20px rgba(0,0,0,0.8);
        }

        /* 버튼 스타일 */
        .cta-btn {
            display: inline-block;
            padding: 15px 50px;
            border: 1px solid #E8941A;
            background: rgba(10, 10, 10, 0.6); /* 반투명 검정 배경 */
            color: #E8941A;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-decoration: none;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-btn:hover {
            background: #E8941A;
            color: #fff;
            box-shadow: 0 0 30px rgba(232, 148, 26, 0.4);
        }

                /* History 페이지 전용 스타일 */
        
        /* 1. 타임라인 컨테이너 */
        .history-container {
            position: relative;
            max-width: 1000px;
            margin: 100px auto 0;
            padding-bottom: 150px;
        }

        /* 2. 중앙 수직 가이드 라인 (about.html의 라인 스타일 재해석) */
        .history-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(-50%);
        }
        
        /* 라인 끝의 장식 점 */
        .history-line::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 6px;
            background: #E8941A;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(232, 148, 26, 0.6);
        }

        /* 3. 개별 연혁 아이템 */
        .history-item {
            position: relative;
            width: 100%;
            display: flex;
            margin-bottom: 120px;
            opacity: 0; /* 애니메이션 초기값 */
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* 중앙 점 (연결 부위) */
        .history-dot {
            position: absolute;
            left: 50%;
            top: 25px; /* 연도 텍스트 높이에 맞춤 */
            transform: translateX(-50%) scale(0);
            width: 12px;
            height: 12px;
            background: #0d1117; /* 배경색과 동일하게 */
            border: 2px solid #E8941A;
            border-radius: 50%;
            z-index: 10;
            transition: transform 0.6s ease 0.3s; /* 지연시간 */
        }

        /* 내용 박스 공통 */
        .history-content {
            width: 45%; /* 중앙 라인 기준 한쪽을 차지 */
            padding: 0 40px;
            box-sizing: border-box;
            position: relative;
        }

        /* [홀수] 왼쪽 배치 */
        .history-item:nth-child(odd) {
            justify-content: flex-start;
            transform: translateX(-50px); /* 왼쪽에서 등장 효과 준비 */
        }
        .history-item:nth-child(odd) .history-content {
            text-align: right;
            margin-right: auto; /* 왼쪽 정렬 명시 */
        }
        
        /* [짝수] 오른쪽 배치 */
        .history-item:nth-child(even) {
            justify-content: flex-end;
            transform: translateX(50px); /* 오른쪽에서 등장 효과 준비 */
        }
        .history-item:nth-child(even) .history-content {
            text-align: left;
            margin-left: auto; /* 오른쪽 정렬 명시 */
        }

        /* 4. 애니메이션 활성화 클래스 */
        .history-item.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .history-item.visible .history-dot {
            transform: translateX(-50%) scale(1);
        }

        /* 5. 텍스트 스타일링 */
        .h-year {
            font-size: 60px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.1); /* 투명도 살짝 낮춤 */
            line-height: 1;
            margin-bottom: 20px; /* 이벤트와의 간격 확보 */
            display: block;
            position: relative;
            z-index: 0;
            transition: color 0.5s ease;
        }
        
        .history-event-item {
            position: relative;
            margin-bottom: 50px; /* 월별 이벤트 간 간격 */
            padding-left: 20px;  /* 왼쪽 라인 효과를 위한 패딩 (선택사항) */
            transition: border-color 0.3s ease;
        }




        /* 1. 배경 카드 공통 스타일 */
        .history-item::before {
            content: '';
            position: absolute;
            width: 480px;
            height: 250px;
            
            /* [중요] 배경 이미지 설정 */
            /* 순서: 1.주황색 틴트(덮개) -> 2.HTML에서 지정한 이미지 변수 */
            background: 
               linear-gradient(135deg, rgb(0 0 0 / 20%), rgba(0, 0, 0, 0.7)), var(--card-bg, #222);/* 이미지가 없을 경우 #222색상 표시 */
            
            background-size: cover;    /* 이미지를 카드 크기에 꽉 차게 */
            background-position: top center; /* 이미지 중앙 정렬 */
            background-repeat: no-repeat;
            
            /* 테두리 및 모양 */
            border-radius: 20px;
            
            z-index: -1;
            top: 0;
            
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* [핵심] box-shadow를 이용한 줄줄이 복제 효과 
           값 설명: x좌표 y좌표 blur spread 색상
           spread 값을 마이너스로 주어 뒤로 갈수록 작아지게 연출
        */

        /* [홀수] 컨텐츠 왼쪽 -> 카드는 오른쪽(중앙선)에 위치하며 왼쪽 뒤로 줄줄이 */
        .history-item:nth-child(odd)::before {
            right: -50px; 
            transform-origin: center right;
            
            /* 3D 회전 */
            transform: perspective(1000px) rotateX(40deg) rotateY(-20deg) rotateZ(5deg);

            /* 그림자로 뒤에 있는 카드들 만들기 (줄줄이 효과) */
            box-shadow: 
                -40px 20px 0 -10px rgba(255, 255, 255, 0.05),  /* 뒤에 1번 카드 */
                -80px 40px 0 -20px rgba(255, 255, 255, 0.03),  /* 뒤에 2번 카드 */
                -120px 60px 0 -30px rgba(255, 255, 255, 0.01); /* 뒤에 3번 카드 */
        }

        /* [짝수] 컨텐츠 오른쪽 -> 카드는 왼쪽(중앙선)에 위치하며 오른쪽 뒤로 줄줄이 */
        .history-item:nth-child(even)::before {
            left: -50px;
            transform-origin: center left;
            
            /* 3D 회전 (반대 방향) */
            transform: perspective(1000px) rotateX(40deg) rotateY(20deg) rotateZ(-5deg);

            /* 그림자로 뒤에 있는 카드들 만들기 */
            box-shadow: 
                40px 20px 0 -10px rgba(255, 255, 255, 0.05),
                80px 40px 0 -20px rgba(255, 255, 255, 0.03),
                120px 60px 0 -30px rgba(255, 255, 255, 0.01);
        }

        /* [호버 효과] 마우스를 올리면 카드가 촤르륵 펼쳐지는 느낌 */
        .history-item:hover::before {
            border-color: #E8941A;
            
            /* 메인 카드 살짝 들어올리기 */
            transform: perspective(1000px) rotateX(40deg) rotateY(0deg) rotateZ(0deg) scale(1.05) translateY(-30px);
            
            /* 그림자(뒤쪽 카드들) 간격을 벌려서 펼쳐지는 느낌 연출 */
            box-shadow: 
                -60px 30px 0 -10px rgba(255, 255, 255, 0.1),
                -120px 60px 0 -20px rgba(255, 255, 255, 0.05),
                -180px 90px 0 -30px rgba(255, 255, 255, 0.02);
        }

        /* 짝수 아이템 호버 시 그림자 방향 반대 */
        .history-item:nth-child(even):hover::before {
            box-shadow: 
                60px 30px 0 -10px rgba(255, 255, 255, 0.1),
                120px 60px 0 -20px rgba(255, 255, 255, 0.05),
                180px 90px 0 -30px rgba(255, 255, 255, 0.02);
        }


        .history-item:nth-child(even) .history-event-item {
            padding-left: 0;
            padding-right: 20px;
            border-left: none;
        }
        
        .history-item:nth-child(even) .history-event-item:hover {
            border-right-color: #E8941A;
        }


        .history-event-item:hover {
            border-left-color: #E8941A; /* 호버 시 선 색상 강조 */
        }
        .history-item:hover .h-year {
            color:#e8941a85; /* 호버 시 강조 */
        }

        .h-month {
            display: block;
            font-size: 18px;
            color: #E8941A;
            font-weight: 600;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .h-title {
            font-size: 26px;
            color: #fff;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .h-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 25px;
            word-break: keep-all;
        }

        /* 6. 자세히 보기 버튼 */
        .h-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            color: #fff;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s ease;
            background: transparent;
        }
        
        .h-btn:hover {
            border-color: #E8941A;
            color: #E8941A;
            background: rgba(232, 148, 26, 0.05);
        }

        .h-btn i {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .h-btn:hover i {
            transform: translateX(3px);
        }
        /* =========================================
           포트폴리오 게시판 전용 스타일
           ========================================= */
                .pf-detail-hero {
            position: relative;
            width: 100%;
            height: 60vh;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            margin-bottom: 80px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .pf-detail-category {
            font-size: 16px;
            color: #E8941A;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .pf-detail-title {
            font-size: 41px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 40px;
            max-width: 800px;
        }

        /* 프로젝트 정보 그리드 */
        .pf-info-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            width: 100%;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .info-item h4 {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .info-item p {
            font-size: 18px;
            color: #fff;
            font-weight: 500;
        }

        /* 2. 상세 설명 섹션 */
        .pf-detail-desc {
            margin-bottom: 100px;
            max-width: 100%;
        }

        .pf-detail-desc h3 {
            font-size: 32px;
            color: #fff;
            margin-bottom: 30px;
        }

        .pf-detail-desc p {
            font-size: 18px;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* 3. 이미지 갤러리 (레퍼런스 느낌) */
        .pf-detail-images {
            display: flex;
            flex-direction: column;
            gap: 60px;
            margin-bottom: 150px;
        }

        .detail-img-box {
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            background: #111;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.05);
            /* 스크롤 시 등장 효과 준비 */
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .detail-img-box.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .detail-img-box img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* 4. 하단 네비게이션 (이전/다음 프로젝트) */
        .pf-navigation {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 50px;
            margin-bottom: 50px;
        }

        .nav-btn {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: all 0.3s ease;
            opacity: 0.6;
        }

        .nav-btn:hover {
            opacity: 1;
        }

        .nav-label {
            font-size: 14px;
            color: #E8941A;
            text-transform: uppercase;
        }

        .nav-title {
            font-size: 24px;
            color: #fff;
            font-weight: 700;
        }

        .nav-btn.next {
            text-align: right;
            align-items: flex-end;
        }


        /* 그리드 컨테이너 */
        .portfolio-board-container {
            margin-top: 50px;
            width: 80%;
            margin:0 auto;
            /* 페이지네이션 제거로 인한 하단 여백 추가 */
            margin-top:60px;
            padding-bottom: 100px;
        }

        .portfolio-grid {
            display: grid;
            /* 반응형 그리드: 최소 280px 크기로 자동 채움 */
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 50px 100px; /* 세로 간격 50px, 가로 간격 100px */
        }

        /* 개별 카드 스타일 */
        .pf-card {
            display: block; /* a 태그이므로 block 처리 */
            text-decoration: none;
            
            /* [수정] 스크롤 애니메이션을 위한 초기 상태 설정 */
            opacity: 0;
            transform: translateY(50px);
            /* 등장 애니메이션은 천천히(0.6s), 호버 효과는 빠르게 처리하기 위해 transition 조정 */
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        /* [추가] 화면에 나타났을 때 붙을 클래스 */
        .pf-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* [수정] 호버 효과 */
        /* .visible 클래스가 붙은 상태에서도 호버 효과가 우선순위를 갖도록 설정 */
        .pf-card.visible:hover {
            transform: translateY(-10px);
            transition: transform 0.3s ease; /* 호버는 빠르고 경쾌하게 */
        }

        /* 썸네일 영역 (둥근 사각형) */
        .pf-thumb {
            width: 100%;
            aspect-ratio: 4 / 3; /* 4:3 비율 유지 */
            background: #1a1a1a;
            border-radius: 20px; /* 둥근 모서리 강조 */
            overflow: hidden;
            position: relative;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .pf-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 비율 유지하며 꽉 채우기 */
            transition: transform 0.5s ease;
        }

        /* 호버 시 이미지 확대 */
        .pf-card:hover .pf-thumb img {
            transform: scale(1.1);
        }

        /* 텍스트 영역 */
        .pf-info {
            padding: 0 5px;
        }

        .pf-category {
            font-size: 13px;
            color: #E8941A; /* 포인트 컬러 */
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pf-title {
            font-size: 20px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
            /* 말줄임 처리 (2줄 넘어가면 ...) */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: color 0.3s ease;
        }

        .pf-card:hover .pf-title {
            color: #E8941A; /* 호버 시 제목 색상 변경 */
        }

        .pf-client {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* footer */
        .footer-bottom{display:flex; flex-direction:column; justify-content:center; align-items:center; padding:20px 0; border-top:1px solid rgba(255,255,255,0.1); margin-top:60px;}
        .copyright { font-size: 13px; color: rgba(255,255,255,0.4); text-align: center; }

        @keyframes systemFloat { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-15px) scale(1.02); } }
        @keyframes spin-slow { from { transform: rotate(-45deg) rotate(0deg); } to { transform: rotate(-45deg) rotate(360deg); } }
        @keyframes spin-slow-reverse { from { transform: rotate(-45deg) rotate(0deg); } to { transform: rotate(-45deg) rotate(-360deg); } }
        @keyframes pulse-dot { 0% { width: 6px; height: 6px; opacity: 1; } 100% { width: 24px; height: 24px; opacity: 0; } }

        /* 반응형 */
        @media (max-width: 1024px) {
            .sub-page-container { flex-direction: column; padding: 0 20px; gap: 0; }
            .sub-sidebar { width: 100%; position: relative; top: 0; border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 20px 0;  }
            .sub-sidebar-menu { display: flex; gap: 20px; }
            .vertical-guide-line { display: none; }
            .stats-grid { flex-wrap: wrap; }
            .features-grid { grid-template-columns: 1fr; gap: 40px; }
            .galaxy-container { width: 600px; height: 600px; }
            .ring-1 { width: 500px; height: 500px; margin-left: -250px; margin-top: -250px; }
            .ring-2 { width: 450px; height: 450px; margin-left: -225px; margin-top: -225px; }
            .ring-3 { width: 550px; height: 550px; margin-left: -275px; margin-top: -275px; }
             .pf-detail-title { font-size: 42px; }
            .pf-info-grid { grid-template-columns: repeat(2, 1fr); }
            .pf-detail-hero{height:auto;}
        }
        @media (max-width: 768px) {
            .intro-section{
                padding:70px 0 40px;
            }
            .history-item::before {
                width: 240px;
                height: 300px;
                top: 20px;
                opacity: 0.4;
            }
            
            .history-item:nth-child(odd)::before,
            .history-item:nth-child(even)::before {
                right: auto;
                left: 10px;
                transform-origin: center;
                transform: perspective(800px) rotateX(40deg) rotateZ(-5deg);
                /* 모바일에서는 1개만 은은하게 복제 */
                box-shadow: 20px 20px 0 -10px rgba(255, 255, 255, 0.05);
            }
            
            .history-item:hover::before {
                 transform: perspective(800px) rotateX(30deg) rotateZ(-5deg) translateY(-10px);
                 box-shadow: 20px 20px 0 -10px rgba(255, 255, 255, 0.05);
            }
            
            .history-line {
                left: 30px; /* 라인을 왼쪽으로 이동 */
            }
            
            .history-item {
                flex-direction: column;
                margin-bottom: 80px;
            }
            
            .history-item:nth-child(odd),
            .history-item:nth-child(even) {
                justify-content: flex-start;
                transform: translateY(30px); /* 모바일은 아래에서 위로 등장 */
            }

            .history-content {
                width: 100%;
                padding-left: 60px; /* 라인 공간 확보 */
                padding-right: 20px;
                text-align: left !important; /* 강제 왼쪽 정렬 */
            }
            
            .history-dot {
                left: 30px; /* 라인 위에 점 배치 */
            }

            .h-year {
                font-size: 40px;
            }
            
            .h-title {
                font-size: 18px;
            }

            .h-desc{
                font-size:14px;
                line-height: 1.2;
            }

            .history-event-item::before {
                font-size: 18px;
                top: 2px;
            }
            /* 모바일은 모두 왼쪽 정렬이므로 발자국을 왼쪽에 배치 */
            .history-item:nth-child(odd) .history-event-item::before,
            .history-item:nth-child(even) .history-event-item::before {
                right: auto;
                left: -25px; /* 텍스트 바로 왼쪽 */
                transform: scale(0.5) rotate(0deg);
            }
            .history-item:nth-child(odd) .history-event-item.walk-active::before,
            .history-item:nth-child(even) .history-event-item.walk-active::before {
                transform: scale(1) rotate(-10deg);
            }

            .about-wrapper{
                padding-top:70px;
            }

            .intro-section h2,.section-title,.question-section h3,.cta-content h3{
                font-size:23px;
            }

            .intro-desc,.intro-sub-desc,.cta-content p{
                font-size:13px;
            }
            .feature-card{
                height:250px;
            }
            .sub-sidebar { flex-direction: column; align-items: flex-start; gap: 20px; }
            .sub-sidebar-menu { flex-wrap: wrap; }
            .stat-number { font-size: 32px; }
            .stat-number .percent{font-size:21px;}
            .stat-info h4{font-size:14px;}
            .stat-card{padding:40px 20px;}
            .stat-info p br{display:none;}
            .galaxy-container { width: 350px; height: 350px; transform: scale(0.8); }
            .label { font-size: 12px; }
            .portfolio-grid {
            grid-template-columns: repeat(2, 1fr); /* 모바일에서는 2단 */
            gap: 20px 15px;
            }
            .pf-title {
                font-size: 16px;
            }
            .pf-thumb {
                border-radius: 15px;
            }
            .pf-detail-desc h3{
                font-size:23px;
            }

            .pf-detail-desc p{
                font-size:14px;
            }
            .pf-detail-desc p br{
                display: none;
            }
            .pf-detail-hero { height: auto; padding: 70px 0 0px; }
            .pf-detail-title { font-size: 23px; }
            .pf-info-grid { grid-template-columns: 1fr; gap: 20px; padding-top:0; gap:0;}
            .pf-navigation { flex-direction: column; gap: 30px; }
            .nav-btn.next { align-items: flex-start; text-align: left; }
        }

        @media (max-width: 480px) {
            .portfolio-grid {
                grid-template-columns: 1fr; /* 더 작은 화면은 1단 */
            }

            .h-desc br{
                display: none;
            }
        }

