/* 기본 스타일 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

:root {
    /* 검정색 기반 컬러 스키마 */
    --primary-color: #000000;
    --primary-light: #333333;
    --primary-dark: #000000;
    --secondary-color: #444444;
    --accent-color: #666666;
    --text-color: #222222;
    --text-light: #666666;
    --bg-light: #f7f7f7;
    --bg-white: #ffffff;
    --bg-dark: #000000;
    --bg-gray: #f0f0f0;
    --border-color: #dddddd;
    --success-color: #2e7d32;
    --error-color: #c62828;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --yellow-accent: #FFC805;
    --blue-accent: #1A75BB;
}

/* 기본 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Pretendard', sans-serif;
    color: var(--text);
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #000000;
    overflow-x: hidden;
}

/* 섹션 스타일 */
.section {
    padding: 5rem 2rem;
    border-radius: 24px;
    background-color: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    margin: 2rem auto;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
}

.bg-white {
    background-color: white;
}

.bg-light {
    background: linear-gradient(to right, #f5f5ff, #f0f0ff);
}

.bg-primary {
    background-color: var(--primary-color);
    color: white;
}

/* 타이포그래피 */

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

.text-center {
    text-align: center;
    color: white;
    word-break: keep-all;
}

.text-left {
    text-align: left;
    color: white;
    word-break: keep-all;
}

.text-lg {
    font-size: 1.125rem;
}

/* 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

.header-button_yellow:hover {
    background-color: #ffffff;
    color: #ffa807;
}

.header-button_blue:hover {
    background-color: #ffffff;
    color: #0066ff;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn-white {
    background-color: #0066ff;
    color: #fff;
    border-radius: 50px;
}


.btn-white:hover {
    background-color: #f5f5f5;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

/* 헤더 스타일 */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.4s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    height: 70px;
    position: relative;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 350px;
}

.logo-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
    position: relative;
}

    /* 로고 슬라이더 스타일 */
.logo-slider {
        width: 100%;
        height: auto;
        margin: auto;
        overflow: hidden;
        position: relative;
        margin-bottom: 20px;
        padding: 50px 0px;
}
    
.logo-slide-track {
        display: flex;
        animation: scroll 30s linear infinite;
        align-items: center;
}
    
.logo-slide-track img {
        height: 35px;
        width: auto;
        margin: 0 30px;
        object-fit: contain;
 }
    
@keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 5)); /* 로고 5개와 여백을 고려한 값 조정 */
        }
}

.logo-dot {
    color: #7a73ff;
}

.logo-reg {
    font-size: 0.7rem;
    vertical-align: super;
    margin-left: 1px;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu li {
    display: flex;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: white;
    mix-blend-mode: normal;
}

.nav-menu li a.current {
    color: #FFC805;
    mix-blend-mode: normal;
}

/* 모바일 메뉴 스타일 업데이트 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 100;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #000;
    z-index: 99;
    padding: 20px;
    align-items: center;
}

.nav-menu.active li {
    margin: 15px 0;
}

.nav-menu.active a {
    font-size: 20px;
    color: #fff;
}

.culture-img {
    width: 100%;
    max-width: 400px;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* 히어로 섹션 스타일 */
.hero {
    padding: 10rem 0 5rem;
    background-color: var(--primary-color);
    color: white;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* 풀스크린 히어로 섹션 */
.fullscreen-hero {
    width: 100%;
    min-height: 600px;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    background-color: linear-gradient(to bottom, #0f0429, #1e0762, #2a0f7d, #3c19aa, #5731db);
    padding-top: 50px;
}

@media (max-width: 480px) {
    .fullscreen-hero {
        padding-top: 0px;
    }
}

.fullscreen-hero.second-hero {
    height: auto;
    align-items: flex-start;
    padding: 20px 0 80px 0;
    border-radius: 0;
}

.fullscreen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow: hidden;
}



.fullscreen-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fourth-bg {
    background: #000
}

.bg-logo {
    position: absolute;
    max-width: 450px;
    left: -2%;
    top: 7%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.9;
    transform: translate(0, 0);
}

.bg-cube {
    position: absolute;
    max-width: 350px;
    right: 2%;
    top: 2%;
    animation: float 8s ease-in-out infinite reverse;
    opacity: 0.9;
    transform: translate(0, 0);
}

.bg-fan {
    position: absolute;
    max-width: 400px;
    right: -2%;
    bottom: -5%;
    animation: float 7s ease-in-out infinite reverse;
    opacity: 0.9;
    transform: translate(0, 0);
}   

.bg-card {
    position: absolute;
    max-width: 700px;
    left: -7%;
    bottom: -14%;
    animation: float 7s ease-in-out infinite reverse;
    opacity: 0.9;
    transform: translate(0, 0);
}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0px);
    }
}

.fullscreen-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: white;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    max-width: 1000px;
}

.animated-title-container {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.animated-title {   
    font-size: 74px;
    line-height: 1.2;
    animation: fadeInUp 1s ease forwards;
    font-family: "Archivo Black", sans-serif;
    font-weight: 700;
    font-style: normal;
    word-break: keep-all;
    /* mix-blend-mode는 HTML에서 설정 */
}

.btn-white_main {
    background-color: white;
    color: #3c19aa;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.btn-white_main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-blue {
    border-radius: 50px;
    color: #ffffff;
}

.btn-blue:hover {
    background-color: #0066ff;
    color: #ffffff;
}

.btn-yellow {
    border-radius: 50px;
    color: #ffffff;
}

.btn-yellow:hover {
    background-color: #ffa807;
    color: #ffffff;
}

/* 그리드 시스템 */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}



/* 값, 혜택, 팀 카드 스타일 */
.value-card, .benefit-card, .team-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover, .benefit-card:hover, .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-icon, .benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i, .benefit-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* 이미지 placeholder */
.img-placeholder {
    background-color: var(--bg-gray);
    height: 100%;
    min-height: 250px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 500;
}

/* 타임라인 스타일 */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    position: relative;
    z-index: 1;
    margin-left: 95px;
    padding-top: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.year {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* 채용 페이지 스타일 */
.filter-container {
    width: 100%;
    margin: 0 auto 50px auto;
}

.filter-dropdowns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-dropdown {
    position: relative;
    width: 200px;
}

.dropdown-toggle {
    width: 100%;
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 12px;
    transition: transform 0.2s;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 100;
    overflow: hidden;
}

.dropdown-item {
    padding: 12px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #fff;
}

.dropdown-item[data-value="all"] {
    color: #0066ff;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-tag {
    background-color: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.filter-count {
    color: #ffffff;
    font-size: 14px;
}

.filter-count #filtered-count {
    color: #0066ff;
    font-weight: 500;
}

#resetFilters {
    background: none;
    border: none;
    color: #aaa;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-listings {
    width: 100%;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-item {
    background-color: #222222;
    color: #ffffff;
    border: 1px solid #333333;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.2s;
}

.job-item:hover {
    background-color: #333333;
}

.job-info {
    flex: 1;
}

.job-title {
    color: #ffffff;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

.job-status {
    display: inline-block;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: normal;
}

.job-status.active {
    background-color: #0066ff;
    color: #fff;
}

.job-status.always {
    background-color: #28a745;
    color: #fff;
}

.job-status.upcoming {
    background-color: #ffc107;
    color: #000;
}

.job-status.closed {
    background-color: #6c757d;
    color: #fff;
}

.job-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.job-meta .badge {
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
}

.job-end-date {
    color: #FFC805;
    font-size: 12px;
    font-weight: 600;
}

.job-details {
    color: #aaa;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.job-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    transition: background-color 0.2s;
}

.job-item:hover .job-arrow {
    background-color: #0066ff;
}

.no-results-message {
    text-align: center;
    color: #aaa;
    padding: 30px;
    width: 100%;
}

#loading-indicator {
    text-align: center;
    padding: 30px;
    color: #aaa;
}

/* 채용 프로세스 섹션 */
.recruit-faq {
    margin-top: 20px;
}

/* 오류 메시지 스타일 */
.error-message {
    text-align: center;
    padding: 40px 20px;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin: 20px 0;
}

.error-message h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 600;
}

.error-message p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.error-message .btn {
    background-color: #FFC805;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.error-message .btn:hover {
    background-color: #e5b404;
    transform: translateY(-2px);
}

/* 빈 목록 메시지 */
.empty-message {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1em;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 라이트 이펙트 애니메이션 */
.light-effect {
    position: absolute;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: opacity 0.5s;
    opacity: 0;
}



/* 지원 폼 스타일 */
.apply-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.apply-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}



.apply-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form input[type="url"],
.apply-form select,
.apply-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.apply-form textarea {
    resize: vertical;
    min-height: 120px;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* 파일 업로드 스타일 */
.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
}

.file-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.file-info {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* 체크박스 스타일 */
.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    margin-bottom: 0;
}

/* 폼 제출 버튼 */
.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* 프로세스 타임라인 */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}



/* 와이톤 프로젝트 섹션 */

.project-section {
    position: relative;
    z-index: 1;
}

.project-category {
    position: relative;
    z-index: 1;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}

.project-category-KR-title, .project-category-CN-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 20px;
    width: 100%;
    opacity: 0.5;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid #999999;
}

.project-category-KR-title.active, .project-category-CN-title.active {
    color: #0066ff;
    opacity: 1;
}

.project-category-KR-title.active::after, .project-category-CN-title.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0066ff;
}

.project-category-KR, .project-category-CN {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 1;
}

.project-category-KR.active, .project-category-CN.active {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 10px 20px 10px 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

.project-category-KR-item, .project-category-CN-item {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    display: flex;
}

.project-category-KR-item-title, .project-category-CN-item-title {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-snap-align: start;
}

.project-category-KR-item-title img, .project-category-CN-item-title img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.project-category-KR-item-title:hover img, .project-category-CN-item-title:hover img {
    transform: scale(1.05);
}

.project-category-KR-item-title-text, .project-category-CN-item-title-text {
    padding: 10px 0;
    text-align: center;
}

.project-category-KR-item-title-text h3, .project-category-CN-item-title-text h3 {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 768px) {
    .project-category-KR-item {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 10px;
    }
    
    .toss-content-item {
        margin-bottom: 0px !important;
        padding: 8px !important;
    }

    .toss-content-item h3 {
        font-size: 12px !important;
    }

}

@media (max-width: 480px) {
    .project-category-KR-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.project-category-KR {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.project-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.project-slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #333;
}



/* 마우스 오버 시 멈춤 기능 제거 */
/* .slider:hover {
    animation-play-state: paused;
} */

.slide {
    flex: 0 0 auto;
    width: 500px;
    height: 350px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.slide img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes slideLeft {
    0% {
        transform: translate3d(0, -50%, 0);
    }
    100% {
        transform: translate3d(-50%, -50%, 0);
    }
}

@media (max-width: 768px) {
    .slider-wrapper {
        height: 400px;
    }
    
    .slide {
        width: 400px;
        height: 300px;
    }
    
    .slider {
        gap: 20px;
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        height: 300px;
    }
    
    .slide {
        width: 300px;
        height: 200px;
    }
    
    .slider {
        gap: 15px;
        animation-duration: 15s;
    }
}



/* 브랜드 섹션 스타일 업데이트 */
.brand-value-section {
    background: linear-gradient(to right, #f5f5ff, #f0f0ff);
    padding: 4rem;
    border-radius: 24px;
    margin: 3rem auto;
}

.value-card {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.value-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f5f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.value-icon i {
    font-size: 2.5rem;
    color: #302b63;
}

/* 성과 섹션 스타일 업데이트 */
.achievements-section {
    padding: 8rem 0;
}

.achievement-item {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #302b63;
    margin: 1.5rem 0;
    background: linear-gradient(to right, #0f0c29, #302b63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FAQ 섹션 스타일 업데이트 */
.faq-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #ffffff, #f5f5ff);
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    background-color: white;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #302b63;
}

.faq-toggle {
    color: #302b63;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: #f9f9ff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 2rem;
}

.core-values-header {
    text-align: center;
}

.core-values-header {
    display: block;
    color: #fff !important;
}

.core-values-header h2 {
    color: #ffffff !important;
    background: linear-gradient(360deg,#75acff,rgba(255,255,255) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-large-title {
    color: #ffffff !important;
}

/* 기능 카드 그리드 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.feature-card {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-card .feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.feature-card p {
    font-size: 1.1rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

/* 신뢰도 배너 */
.confidence-banner {
    background: linear-gradient(to right, #f5f5ff, #f0f0ff);
    border-radius: var(--border-radius);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    box-shadow: var(--box-shadow);
}

.confidence-content {
    max-width: 70%;
}

.confidence-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.confidence-text {
    font-size: 1.25rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

.btn-primary {
    background: #0066ff;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    word-break: keep-all;
    padding: 0 40px;
}



.cta-button {
    background-color: white;
    color: #3c19aa !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem !important;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* 카드 컨테이너 */
.container-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-main_culture {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 120px 20px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.culture-img-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
}

.culture-img {
    max-width: 400px;
    width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.culture-img:hover {
    transform: scale(1.05);
}



.container-main {
    max-width: 1600px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}


/* 카드 요소 스타일 */
.feature-card, .value-card, .faq-item, .confidence-banner {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover, .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* 카드 이펙트 */
.section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(122, 115, 255, 0.03) 0%, transparent 70%);
    z-index: 0;
}

/* 두 번째 히어로 섹션 스타일 */
.second-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.second-hero.black-bg {

}

.second-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,200,5,0.05) 0%, rgba(26,117,187,0.05) 100%);
    z-index: 0;
}

.about-section {
    position: relative;
    margin-bottom: 80px;
    z-index: 1;
}

.about-container {
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    margin-bottom: 40px;
    text-align: center;
}

.badge {
    display: inline-block;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.section-large-title.text-center {
    padding-bottom: 10px !important;
}

.section-large-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    word-break: keep-all;
}

.about-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.modern-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-image {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lottie-animation {
    width: 70%;
    height: 70%;
    min-height: 160px;
}

.card-content {
    text-align: left;
}

.card-title-heading {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.card-title-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #FFC805;
    border-radius: 3px;
}

.card-description {
    font-size: 24px;
    line-height: 1.6;
}

.logo-slider-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.section-subtitle {
    color: rgba(153, 153, 153, 1);
    font-weight: 600;
    font-size: 20px;
    word-break: keep-all;
}

.logo-slider {
    width: 100%;
    height: 80px;
    overflow: hidden;
    position: relative;
}

.logo-slide-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 10);
}

.logo-slide-track img {
    width: 100px;
    height: auto;
    margin: 0 50px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-slide-track img:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100px * 5));
    }
}

.feature-card {
    max-width: none;
    width: 100%;
    background: linear-gradient(135deg, #1A75BB 0%, #115A99 100%);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-image {
    opacity: 0.4;
}

.feature-card .card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    z-index: 1;
}

.feature-description {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 세 번째 히어로 섹션 (미션과 비전) 스타일 */
.third-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.third-bg {
    background: #000;
}

.cube-4 {
    top: 15%;
    right: 10%;
    width: 100px;
    height: 100px;
    animation-delay: 1s;
    transform: rotate(20deg);
}

.cube-5 {
    bottom: 30%;
    left: 5%;
    width: 90px;
    height: 90px;
    animation-delay: 3s;
    transform: rotate(-15deg);
}

.cube-6 {
    top: 50%;
    right: 25%;
    width: 70px;
    height: 70px;
    animation-delay: 5s;
    transform: rotate(10deg);
}

.mv-container {
    display: block;
    gap: 100px;
    width: 100%;
    margin: 0 auto;
    color: white;
    padding: 0 20px;
    justify-content: space-between;
}

.mission-vision-container {
    display: block;
    gap: 100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 100px;
}

.mission-vision-header {
    display: flex;
}

.culture-container {
    display: block;

    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.mission-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.vision-container {
    border-radius: 24px;
    padding: 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}


.mission-container {
    transform: translateX(-50px);
}

.vision-container {
    transform: translateX(50px);
}

.head-messege {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

/* 플로팅 요소 스타일 */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-cube {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    animation: floatAnimation 15s infinite ease-in-out;
}

.cube-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.cube-2 {
    top: 60%;
    right: 15%;
    width: 120px;
    height: 120px;
    animation-delay: 2s;
    transform: rotate(-10deg);
}

.cube-3 {
    bottom: 15%;
    left: 30%;
    width: 150px;
    height: 150px;
    animation-delay: 4s;
    transform: rotate(25deg);
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(10px) rotate(10deg);
    }
    75% {
        transform: translateY(-15px) rotate(15deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 80px;
    padding-top: 80px;
    max-width: 1000px;
}

.content-left {
    text-align: left;
}

.content-right {
    text-align: left;
}

.badge {
    display: inline-block;
    border-radius: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgb(210, 210, 210);
    font-size: 14px;
}

.vision-container-wrapper {
    display: flex;
}

.stats-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    border-left: 3px solid #a989ff;
    padding-left: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #FFC805;
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: white;
    color: #1b0756;
    border-color: white;
    transform: translateY(-3px);
}

.dashboard-preview {
    width: 100%;
    height: 100%;
    max-width: 550px;
    min-height: 400px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.dashboard-inner {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.dashboard-graphic {
    width: 100%;
    height: 100%;
    background-image: url('img/dashboard.png');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.mission-points {
    margin: 2rem 0;
    padding-left: 1rem;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
}

/* 네 번째 히어로 섹션 (핵심 가치) 스타일 */
.fourth-hero {
    margin-top: 3rem;
    width: 100%;
    height: auto;
    min-height: 900px;
    overflow: hidden;
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #000310, #0a0033, #110840, #14094d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

.fourth-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.growth-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    text-align: center;
}

.statistic-category {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.statistic-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
    word-break: keep-all;
    text-align: center;
}

.video-player {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lottie-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

#lottie-container svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-placeholder {
    width: 100%;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-button i {
    font-size: 2rem;
    color: #000;
}

.video-placeholder p {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.video-placeholder:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background-color: white;
}

/* 스크롤 앵커 조정 */
section[id] {
    scroll-margin-top: 80px; /* 헤더 높이보다 약간 더 크게 설정 */
}

@media (max-width: 415px) {
    .section-large-title {
        font-size: 24px !important;
    }
    .btn-primary .btn-outline {
        font-size: 14px;
        padding: 4px 8px;
        font-weight: 500;
    }
}



@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 채용 페이지 FAQ 스타일 */
.faq-item .faq-question h3 {
    color: #ffffff;
}

.faq-item .faq-toggle i {
    color: #ffffff;
}

.faq-item .faq-answer p {
    color: #cccccc;
}

/* 채용 페이지 CTA 섹션 스타일 */
.cta-banner {
    background-color: #000;
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
    word-break: keep-all;
    z-index: 1000;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}


/* 채용 페이지 푸터 스타일 */
.footer {
    background-color: #000;
    padding: 2rem;
    text-align: center;
}

.footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

/* 드롭다운 필터 커스텀 스타일 */
.filter-tag {
    background-color: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tag i {
    cursor: pointer;
    font-size: 10px;
}

/* 드롭다운 메뉴 선택 아이템 스타일 */
.dropdown-item[data-value]:not([data-value="all"]):hover {
    color: #0066ff;
    background-color: rgba(0, 102, 255, 0.1);
}

.dropdown-item.selected {
    color: #0066ff;
}

/* 채용 필터링 결과 메시지 스타일 */
.no-job-message {
    text-align: center;
    padding: 3rem 0;
    color: #666;
    font-size: 1.1rem;
}

/* 로딩 인디케이터 스타일 */
#loading-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #0066ff;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 배경색 변형 */
.black-bg {
    background-color: #000 !important;
}

.black-bg .fullscreen-bg {
    background: #000 !important;
}

.black-bg .second-bg {
    background: #000 !important;
}

/* 아임웹 채용 페이지 스타일 */
.career-page {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

.career-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.career-page .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.career-page .header-inner {
    display: flex;
    align-items: center;
    height: 70px;
    position: relative;
    justify-content: space-between;
}

.career-page .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.career-page .logo-icon {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-page .nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 24px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    margin: 0;
    backdrop-filter: blur(22px);
}

.career-page .nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-size: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.career-page .nav-menu a:hover,
.career-page .nav-menu a.active {
    color: #FFC805;
}

.career-page .header-buttons {
    display: flex;
    gap: 10px;
}

.job-detail-page .job-detail-content {
    padding: 120px 0 60px;
    background-color: #000 !important;
}

/* 더 명확한 배경색 적용을 위한 추가 스타일 */
.job-detail-page {
    background-color: #000 !important;
}

.job-detail-page main {
    background-color: #000 !important;
}

.job-detail-page .job-detail-content {
    background-color: #000 !important;
    min-height: 100vh;
}

.job-header {
}

.job-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.job-meta-item {
    display: flex;
    flex-direction: column;
}

.job-meta-item strong {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.job-meta-item span {
    font-size: 1rem;
    color: #fff;
}

.job-description {
    color: #dedede;
    max-width: 800px;
    margin-bottom: 60px;
}

.job-section {
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 1.5rem;  
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.job-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.job-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
    list-style: none;
    word-break: keep-all;
}

.job-section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

@media screen and (max-width: 1230px) {
    .job-description {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {

    .job-section li {
        font-size: 12px;
        padding-left: 5px;
    }
    
    .cta-subtitle {
        margin: 0 !important;
        padding: 0 !important;
    }

    .team-link-button {
        font-size: 12px;
    }

    .section-title {
        font-size: 16px !important;
    }

    .mobile-job-meta-item {
        font-size: 12px !important;
    }
}

.job-section li::before {
    content: "•";
    position: absolute;
    left: -10px;
    color: #0066ff;
}

.highlight-links {
    margin-top: 20px;
}

.highlight-link {
    display: block;
    margin-bottom: 10px;
    color: #1a75bb;
    text-decoration: none;
    transition: color 0.2s;
}

.highlight-link:hover {
    color: #FFC805;
    text-decoration: underline;
}

.job-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.job-meta-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.job-actions {
    display: flex;
    gap: 15px;
}

.share-btn {
    padding: 12px 24px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.share-btn:hover {
    background-color: #f5f5f5;
}

.apply-btn {
    padding: 12px 24px;
    background-color: #1a75bb;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.apply-btn:hover {
    background-color: #FFC805;
}

.company-info {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

.company-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.company-info p {
    margin-bottom: 20px;
}

.team-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #1a75bb;
    text-decoration: none;
    font-weight: 500;
}

.team-link:hover {
    text-decoration: underline;
    color: #FFC805;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s;
}

.social-icon:hover {
    background-color: #FFC805;
}

.footer-brand {
    color: #777;
    font-size: 0.9rem;
}

/* 유사 직무 섹션 스타일 */
.job-similar-section {
    margin-top: 60px;
}

/* 새로운 유사 직무 추천 섹션 */
.similar-jobs-section {
    margin-top: 60px;
    display: block !important;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.similar-jobs-section .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
}



.similar-jobs-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.similar-job-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.similar-job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFC805 0%, #1A75BB 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.similar-job-card:hover::before {
    transform: scaleX(1);
}

.similar-job-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 200, 5, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.similar-job-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #fff;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.similar-job-card:hover h3 {
    color: #FFC805;
}

.similar-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.similar-job-meta span {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.similar-job-card:hover .similar-job-meta span {
    background: rgba(0, 102, 255, 0.2);
    color: #0066ff;
    border-color: #0066ff;
}

.similar-job-meta span:first-child {
    background: rgba(26, 117, 187, 0.2);
    color: #0066ff;
    border-color: #0066ff;
}

.similar-job-card:hover .similar-job-meta span:first-child {
    background: rgba(26, 117, 187, 0.3);
    color: #4A9EFF;
}

/* 빈 상태 메시지 스타일 */
.similar-jobs-container p {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .similar-jobs-section {
        padding: 30px 0;
        margin-top: 40px;
    }
    
    .similar-jobs-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .similar-jobs-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
    }
    
    .similar-job-card {
        padding: 20px;
    }
    
    .similar-job-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .similar-job-meta {
        gap: 10px;
        margin-top: 12px;
    }
    
    .similar-job-meta span {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .similar-jobs-section {
        padding: 25px 0;
        margin-top: 30px;
    }
    
    .similar-jobs-section .section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .similar-job-card {
        padding: 18px;
    }
    
    .similar-job-card h3 {
        font-size: 1.1rem;
    }
    
    .similar-job-meta span {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

/* 분할된 컨테이너 레이아웃 */
.split-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.left-container {
    width: 100%;
}

.right-container {
    position: relative;
    top: auto;
    width: 100%;
    right: auto;
    transform: none;
}

/* 데스크톱에서 오른쪽 컨테이너 고정 위치 */
@media (min-width: 1231px) {
    .right-container {
        position: sticky;
        top: 120px;
        height: fit-content;
        align-self: flex-start;
    }
    
    .tablet-job-info {
        display: none;
    }
    
    .mobile-job-info {
        display: none;
    }
}


.job-card {
    display: block;
    flex-direction: column;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;

}
.job-info {
    display: flex;
}
/* 모바일과 태블릿용 직무 정보 기본 숨김 */
.mobile-job-info {
    display: none;
}

.tablet-job-info {
    display: none;
}

/* 모바일에서만 표시될 하단 고정 지원하기 버튼 */
.mobile-apply-btn {
    display: none;
}

/* 고정된 지원 정보 스타일 업데이트 */
.fixed-apply-container {
    max-width: 400px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
}

.fixed-job-info {
    padding: 25px;
}

.job-meta-right {
    margin-bottom: 25px;
}

.fixed-job-info .job-meta-item {
    margin-bottom: 15px;
    display: block;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 14px;
}

.fixed-job-info .job-meta-item:last-child {
    margin-bottom: 0;
}

.fixed-job-info .job-meta-item strong {
    font-weight: 600;
    color: #555;
    margin-right: 10px;
    min-width: 70px;
}

.fixed-job-info .job-meta-item span {
    color: #333;
    font-weight: 500;
    flex: 1;
    text-align: right;
}

.fixed-job-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fixed-job-actions .share-btn {
    display: block;
    padding: 12px;
    width: 100%;
    background-color: #f5f5f5;
    color: #555;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fixed-job-actions .share-btn:hover {
    background-color: #eee;
}

.fixed-job-actions .apply-btn {
    display: block;
    padding: 15px;
    text-align: center;
    width: 100%;
    background-color: #0066ff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fixed-job-actions .apply-btn:hover {
    background-color: #FFC805;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 200, 5, 0.3);
}

/* 반응형 미디어 쿼리 */
@media (max-width: 1230px) {
    .split-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .right-container {
        position: relative;
        top: auto;
        order: -1; /* 상단으로 이동 */
    }
    
    .mobile-job-info {
        display: block;
        background-color: #fff;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-job-meta {
        margin-bottom: 20px;
    }
    
    .mobile-job-meta-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-job-meta-item:last-child {
        border-bottom: none;
    }
    
    .mobile-job-meta-item strong {
        font-weight: 600;
        color: #333;
        min-width: 80px;
    }
    
    .mobile-job-meta-item span {
        color: #666;
        text-align: right;
        flex: 1;
    }
    
    .mobile-job-actions {
        display: flex;
        gap: 10px;
    }
    
    .mobile-job-actions .share-btn {
        flex: 1;
        padding: 12px;
        background-color: #f5f5f5;
        color: #555;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        cursor: pointer;
    }
    
    .mobile-job-actions .apply-btn {
        flex: 2;
        padding: 12px;
        background-color: #1a75bb;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .mobile-job-actions .apply-btn:hover {
        background-color: #FFC805;
    }
    
    /* 데스크톱용 오른쪽 컨테이너 숨김 */
    .right-container .fixed-apply-container {
        display: none;
    }
    
    /* 1230px 이하에서도 하단 고정 지원하기 버튼 표시 */
    .mobile-apply-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 15px 20px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .mobile-apply-btn .apply-btn {
        display: block;
        width: 100%;
        padding: 15px;
        background-color: #2079ff;
        color: white;
        text-align: center;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
    }
    
    .mobile-apply-btn .apply-btn:hover {
        background-color: #FFC805;
    }
    
    /* 1230px 이하에서 하단 여백 추가 (고정 버튼 공간 확보) */
    .job-detail-content {
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .split-container {
        padding: 0 20px;
    }
    
    .mobile-apply-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 15px 20px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .mobile-apply-btn .apply-btn {
        display: block;
        width: 100%;
        padding: 15px;
        background-color: #2079ff;
        color: white;
        text-align: center;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
    }
    
    .mobile-apply-btn .apply-btn:hover {
        background-color: #FFC805;
    }
    
    /* 모바일에서 하단 여백 추가 (고정 버튼 공간 확보) */
    .job-detail-content {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .split-container {
        padding: 0 15px;
    }
    
    .mobile-job-info {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .mobile-job-meta-item {
        padding: 8px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .mobile-job-meta-item span {
        text-align: left;
    }
    
    .job-header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .job-section {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
}

/* 모바일에서만 표시될 하단 고정 지원하기 버튼 */
.mobile-apply-btn {
    display: none;
}

/* 1230px 이하에서 하단 고정 지원하기 버튼 표시 */
@media (max-width: 1230px) {
    .mobile-apply-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 15px 20px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .mobile-apply-btn .apply-btn {
        display: block;
        width: 100%;
        padding: 15px;
        background-color: #2079ff;
        color: white;
        text-align: center;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
    }
    
    .mobile-apply-btn .apply-btn:hover {
        background-color: #FFC805;
    }
}

@media (max-width: 768px) {

    
    .second-hero {
        padding: 100px 0 60px 0;
    }
    
    .similar-jobs-section {
        padding: 60px 0;
    }
}

/* ===== 통계 섹션 스타일 ===== */
.statistics-section {
    background: #000000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.core-values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.core-values-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.statistic-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.statistic-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FFC805, #FFD700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.statistic-item:hover::before {
    transform: scaleX(1);
}

.statistic-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 200, 5, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.statistic-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
    word-break: keep-all;
}

.statistic-number {
    color: #0066ff;
    font-size: 48px;
    font-weight: 700;
    font-family: 'Farro', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.growth-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.statistic-category {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
}

/* 통계 섹션 모바일 반응형 */
@media (max-width: 1024px) {
    .statistics-grid {
        gap: 40px;
        padding: 0 20px;
    }
    
    .statistic-item {
        padding: 30px 15px;
    }
    
    .statistic-number {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
    
    .statistic-item {
        padding: 25px 20px;
    }
    
    .statistic-number {
        font-size: 36px;
    }
    
    .statistic-label {
        font-size: 15px;
    }
    
    .core-values-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .statistics-section {
        padding: 50px 0;
    }
    
    .statistics-grid {
        gap: 20px;
        padding: 0 15px;
    }
    
    .statistic-item {
        padding: 20px 15px;
    }
    
    .statistic-number {
        font-size: 32px;
    }
    
    .statistic-label {
        font-size: 14px;
    }
    
    .statistic-category {
        font-size: 12px;
    }
}

@media (max-width: 415px) {
    .statistic-number {
        font-size: 28px;
    }
    
    .statistic-label {
        font-size: 13px;
    }
}

/* ===== 통계 그래프 스타일 ===== */
.statistics-graph {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
    position: relative;
}

.statistics-graph .video-player {
    width: 100%;
    height: 500px;
    min-height: 400px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

#lottie-graph-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    visibility: visible; /* 모바일 GIF 표시를 위해 visible로 변경 */
    opacity: 1;
    transition: opacity 0.3s ease;
}

#lottie-graph-container.loaded {
    visibility: visible;
    opacity: 1;
}

#lottie-graph-container svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 모바일 사파리 최적화 */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.fallback-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-align: center;
    z-index: 10;
}

.fallback-graph {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 72, 255, 0.1), rgba(255, 200, 5, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.fallback-graph-icon {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(48, 72, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: rgba(48, 72, 255, 0.8);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .statistics-graph {
        padding: 0 15px;
        margin: 30px auto 0;
    }
    
    .statistics-graph .video-player {
        height: 350px;
        min-height: 300px;
    }
    
    #lottie-graph-container {
        min-height: 300px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    #lottie-graph-container img {
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

@media (max-width: 480px) {
    .statistics-graph .video-player {
        height: 280px;
        min-height: 250px;
    }
    
    #lottie-graph-container {
        min-height: 250px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    #lottie-graph-container img {
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    .fallback-message {
        font-size: 14px;
    }
    
    .fallback-graph-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* ===== 채용 공고 섹션 스타일 ===== */
.job-openings-section {
    background: #000000;
    padding: 100px 0;
    position: relative;
    z-index: 1000;
}

.job-openings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.job-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}


.job-card:hover::before {
    transform: scaleX(1);
}

.job-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 200, 5, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.job-card-header {
    margin-bottom: 20px;
}

.job-card-header h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    word-break: keep-all;
}

.job-card-description {
    margin-bottom: 25px;
}

.job-card-description p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 5px 0;
    line-height: 1.5;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-card .badge {
    color: #0066ff;
    font-size: 14px;
    font-weight: 600;
}

.link-arrow {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.link-arrow i {
    color: #ffffff;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.job-card:hover .link-arrow {
    background: #FFC805;
}

.job-card:hover .link-arrow i {
    color: #000;
    transform: translateX(2px);
}

/* 채용 공고 섹션 모바일 반응형 */
@media (max-width: 768px) {
    .job-openings-section {
        padding: 60px 0;
    }
    
    .job-openings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .job-card {
        padding: 25px 20px;
    }
    
    .job-card-header h3 {
        font-size: 18px;
    }
    
    .job-card-description p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .job-openings-section {
        padding: 50px 0;
    }
    
    .job-card {
        padding: 20px 15px;
    }
    
    .job-card-header h3 {
        font-size: 16px;
    }
    
    .job-card-description p {
        font-size: 12px;
    }
    
    .job-card .badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .link-arrow {
        width: 28px;
        height: 28px;
    }
    
    .link-arrow i {
        font-size: 12px;
    }
}

/* ===== 히스토리 섹션 스타일 ===== */
.history-section {
    background: #000000;
    padding: 120px 0 150px 0;
    position: relative;
    min-height: 100vh;
    z-index: 1000;
}

/* ===== 토스 스타일 타임라인 ===== */
.toss-timeline-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.toss-timeline-container {
    display: flex !important;
    flex-direction: row;
    gap: 40px;
    position: relative;
    padding: 40px 0;
}

/* 연도 리스트 */
.toss-years-list {
    padding: 0;
    margin: 0;
    min-width: 80px;
    position: relative;
    z-index: 10;
}

.toss-year {
    position: relative;
    padding: 15px 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer !important;
    transition: all 0.3s ease;
    text-align: left;
    user-select: none;
    border-radius: 8px;
    margin-bottom: 8px;
}

.toss-year::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: rgb(51, 61, 75);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toss-year:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    transform: translateX(2px);
}

.toss-year:hover::after {
    background: rgba(255, 255, 255, 0.6);
    width: 8px;
    height: 8px;
}

.toss-year.active {
    color: #ffffff !important;
    font-weight: 600;
    transform: translateX(7px);
}

.toss-year.active::after {
    background-color: #0084ff;
    width: 15px;
    height: 15px;
    right: -8px;
    border: 5px solid #ffffff;
    box-shadow: 0 0 15px #ffffff, 0 0 25px #006aff;
}

/* 타임라인 라인 */
.toss-timeline-line {
    position: absolute;
    left: 86px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgb(51, 61, 75);
    z-index: 1;
}




/* 콘텐츠 리스트 */
.toss-content-list {
    display: block !important;
    padding: 0;
    margin: 0;
    flex: 1;
    margin: 0 20px;
    position: relative;
    z-index: 5;
}

.toss-content-year {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.toss-content-year.active {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.toss-content-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.toss-content-item:last-child {
    border-bottom: none;
}

.toss-content-item:hover {
    background: rgba(255, 200, 5, 0.05);
    border-radius: 8px;
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 200, 5, 0.2);
}

.toss-content-item:last-child:hover {
    border-bottom: none;
}

.toss-content-item h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
    transition: color 0.3s ease;
}

.toss-content-item:hover h3 {
    color: #FFC805;
    font-weight: 500;
}

/* 모바일 타임라인 (기존 유지) */
.mobile-timeline {
    display: none;
}

.mobile-timeline-group {
    margin-bottom: 40px;
}

.mobile-timeline-period {
    display: flex;
    align-items: left;
    margin-bottom: 10px;
}

.period-bullet {
    color: #0066ff;
    font-size: 20px;
    margin-right: 10px;
}

.period-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.mobile-timeline-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    word-break: keep-all;
}

.mobile-timeline-item:last-child {
    margin-bottom: 0;
}

.toss-timeline-container {
    display: flex !important;
    gap: 40px;
    position: relative;
    padding: 40px 20px;
}

/* 반응형 */
@media (max-width: 768px) {
    .toss-timeline-container {
        display: flex !important;
        flex-direction: column;
        padding: 0 40px !important;
    }

    .toss-content-item {
        padding: 16px 0!important;
    }
    
    .toss-content-list {
        display: block !important;
        margin-left: 0px !important;
    }
    .toss-content-year {
        display: block !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@media (max-width: 480px) {
    .history-section {
        padding: 60px 0 100px 0;
    }
    
    .period-title {
        font-size: 16px;
    }
    
    .mobile-timeline-item {
        font-size: 13px;
    }
}

/* ===== 반응형 스타일 ===== */
@media (max-width: 1230px) {
    /* 레이아웃 */
    .split-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .right-container {
        position: relative;
        top: auto;
        order: -1;
    }
    
    /* 모바일 직무 정보 */
    .mobile-job-info {
        display: block;
        background-color: #fff;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-job-meta {
        margin-bottom: 20px;
    }
    
    .mobile-job-meta-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-job-meta-item:last-child {
        border-bottom: none;
    }
    
    .mobile-job-meta-item strong {
        font-weight: 600;
        color: #333;
        min-width: 80px;
    }
    
    .mobile-job-meta-item span {
        color: #666;
        text-align: right;
        flex: 1;
    }
    
    /* 모바일 액션 버튼 */
    .mobile-job-actions {
        display: flex;
        gap: 10px;
    }
    
    .mobile-job-actions .share-btn {
        flex: 1;
        padding: 12px;
        background-color: #f5f5f5;
        color: #555;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        cursor: pointer;
    }
    
    .mobile-job-actions .apply-btn {
        flex: 2;
        padding: 12px;
        background-color: #1a75bb;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .mobile-job-actions .apply-btn:hover {
        background-color: #FFC805;
    }
    
    /* 데스크톱용 오른쪽 컨테이너 숨김 */
    .right-container .fixed-apply-container {
        display: none;
    }
    
    /* 하단 고정 지원하기 버튼 */
    .mobile-apply-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 15px 20px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .mobile-apply-btn .apply-btn {
        display: block;
        width: 100%;
        padding: 15px;
        background-color: #2079ff;
        color: white;
        text-align: center;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
    }
    
    .mobile-apply-btn .apply-btn:hover {
        background-color: #FFC805;
    }
    
    /* 하단 여백 조정 */
    .job-detail-content {
        padding-bottom: 100px;
    }
}

@media (max-width: 1024px) {
    /* 통계 섹션 */
    .statistics-grid {
        gap: 40px;
        padding: 0 20px;
    }
    
    .statistic-item {
        padding: 30px 15px;
    }
    
    .statistic-number {
        font-size: 42px;
    }

    .animated-title {
        font-size: 54px;
    }
}

@media (max-width: 768px) {
    /* 레이아웃 */
    .split-container {
        padding: 0 20px;
    }

    .toss-year::after {
        right: 24px;
        top: 83%;
    }

    
    .toss-year.active::after {
        right: 21px !important;
    }
    
    .toss-timeline-line {

    }

    /* 히어로 섹션 */
    .fullscreen-hero.second-hero {
        padding: 100px 0 60px 0;
        min-height: auto;
    }
    
    .second-hero {
        padding: 100px 0 60px 0;
    }
    
    /* 통계 섹션 */
    .statistics-section {
        padding: 60px 0;
    }
    
    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
    
    .statistic-item {
        padding: 25px 20px;
    }
    
    .statistic-number {
        font-size: 36px;
    }
    
    .statistic-label {
        font-size: 15px;
    }
    
    .core-values-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    /* 채용 공고 섹션 */
    .job-openings-section {
        padding: 60px 0;
    }
    
    .job-openings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .job-card {
        padding: 25px 20px;
    }
    
    .job-card-header h3 {
        font-size: 18px;
    }
    
    .job-card-description p {
        font-size: 13px;
    }
        
    .history-section {
        padding: 80px 0 120px 0;
        min-height: auto;
        z-index: 1000;
    }

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

@media (max-width: 480px) {
    /* 레이아웃 */
    .split-container {
        padding: 0 15px;
    }
    
    /* 직무 정보 */
    .mobile-job-info {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .mobile-job-meta-item {
        padding: 8px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .mobile-job-meta-item span {
        text-align: left;
    }
    
    .job-header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .job-section {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    /* 통계 섹션 */
    .statistics-section {
        padding: 50px 0;
    }
    
    .statistics-grid {
        gap: 20px;
        padding: 0 15px;
    }
    
    .statistic-item {
        padding: 20px 15px;
    }
    
    .statistic-number {
        font-size: 32px;
    }
    
    .statistic-label {
        font-size: 14px;
    }
    
    .statistic-category {
        font-size: 12px;
    }
    
    /* 채용 공고 섹션 */
    .job-openings-section {
        padding: 50px 0;
    }
    
    .job-card {
        padding: 20px 15px;
    }
    
    .job-card-header h3 {
        font-size: 16px;
    }
    
    .job-card-description p {
        font-size: 12px;
    }
    
    .job-card .badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .link-arrow {
        width: 28px;
        height: 28px;
    }
    
    .link-arrow i {
        font-size: 12px;
    }
    
    /* 히스토리 섹션 */
    .history-section {
        padding: 60px 0 100px 0;
    }
    
    .period-title {
        font-size: 16px;
    }
    
    .mobile-timeline-item {
        font-size: 13px;
    }
}

@media (max-width: 415px) {
    .section-large-title {
        font-size: 20px;
    }
    
    .btn-primary, .btn-outline {
        font-size: 14px;
        padding: 4px 8px;
        font-weight: 500;
    }
    
    .statistic-number {
        font-size: 28px;
    }
    
    .statistic-label {
        font-size: 13px;
    }
}


/* KR/CN 버튼 활성화 상태 스타일 */
.KR.active, .CN.active {
    display: none;
}

.project-CN {
    gap: 20px;
    display: flex;
    width: 100%;
}

.project-CN-item {
    position: relative;
    overflow: hidden;
}

.project-CN-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 300px;
    max-height: 300px;
}

.project-CN-item-title h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* KR/CN 버튼 활성화 상태 스타일 */
.KR.active, .CN.active {
    color: #0066ff;
    border-bottom: 5px solid #0066ff;
    z-index: 10000000;
}

@media (max-width: 768px) {
    .project-category-KR.active, .project-category-CN.active {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .project-category-KR-item-title img, .project-category-CN-item-title img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .project-category-KR.active, .project-category-CN.active {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .project-category-KR-item-title img, .project-category-CN-item-title img {
        height: 200px;
    }
}

/* 팝업 관련 스타일 */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999;
}

.popup-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    background-color: transparent;
    z-index: 999999999;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .section-header > div {
        flex: none;
        width: 100%;
    }

    .section-header .image-container {
        text-align: center;
    }

    .section-header .image-container img {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}




