/* SYSTEM 페이지 전용 스타일 */

:root {
    --spacex-black: #000000;
    --spacex-white: #ffffff;
    --spacex-gray: #cccccc;
    --spacex-dark-gray: #111111;
    --spacex-blue: #005288;
}

/* 시스템 히어로 섹션 */
.system-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.system-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.kodak-brand {
    margin-bottom: 2rem;
}

.kodak-brand img {
    height: 80px;
    margin-bottom: 1.5rem;
}

.kodak-brand h1 {
    font-size: 6.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--spacex-white);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.system-hero-subtitle {
    font-size: 1.2rem;
    color: var(--spacex-gray);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.system-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.system-bg-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.system-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    filter: brightness(0.4) contrast(1.2);
}

.system-slide.active {
    opacity: 1;
}

.system-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(255,255,255,0.1) 100%);
    z-index: 1;
}

/* 시스템 개요 */
.system-overview {
    padding: 100px 0;
    background: #111111;
}

.overview-content {
    max-width: 1000px;
    margin: 0 auto;
}

.overview-text h3 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: var(--spacex-white);
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.overview-text p {
    font-size: 1.3rem;
    color: var(--spacex-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: center;
    font-weight: 300;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.stat h4 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--spacex-white);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.stat p {
    font-size: 1.2rem;
    color: var(--spacex-white);
    margin: 0;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 주요 장비 */
.equipment {
    padding: 100px 0;
    background: #000000;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.equipment-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.equipment-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.equipment-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.equipment-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--spacex-white);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.equipment-info h4 {
    font-size: 1.4rem;
    color: var(--spacex-gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.equipment-info p {
    font-size: 1.2rem;
    color: var(--spacex-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.equipment-features {
    list-style: none;
    padding: 0;
}

.equipment-features li {
    color: var(--spacex-white);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 1rem;
}

.equipment-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--spacex-white);
    font-weight: 300;
    font-size: 1.2rem;
}

/* 워크플로우 시스템 */
.workflow {
    padding: 100px 0;
    background: #111111;
}

.workflow-content {
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-info h3 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: var(--spacex-white);
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.workflow-info p {
    font-size: 1.3rem;
    color: var(--spacex-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: center;
    font-weight: 300;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.workflow-step {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.workflow-step:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.step-number {
    width: 70px;
    height: 70px;
    background: transparent;
    border: 2px solid var(--spacex-white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--spacex-white);
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
}

.workflow-step:hover .step-number {
    background: var(--spacex-white);
    color: var(--spacex-black);
}

.workflow-step h4 {
    font-size: 1.4rem;
    color: var(--spacex-white);
    margin-bottom: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.workflow-step p {
    font-size: 1.1rem;
    color: var(--spacex-gray);
    margin: 0;
    font-weight: 300;
}

/* 플레이트 정보 */
.plates {
    padding: 100px 0;
    background: #000000;
}

.plates-content {
    max-width: 1000px;
    margin: 0 auto;
}

.plates-info h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.plates-info p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: center;
}

.plates-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.plate-spec {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plate-spec h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.plate-spec p {
    font-size: 1rem;
    color: #cccccc;
    margin: 0;
}

/* 코닥 CTP 시스템 장점 */
.system-advantages {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.system-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('magnus-3600-titan-mpl-3600x2400.jpg') center/cover;
    opacity: 0.05;
    z-index: -1;
}

.advantages-content {
    max-width: 1200px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.advantage-item:hover::before {
    left: 100%;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--spacex-white);
}

.advantage-item h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantage-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* 써멀 판재 vs UV 판재 비교 */
.plate-comparison {
    padding: 100px 0;
    background: #111111;
}

.comparison-content {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.comparison-intro h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--spacex-white);
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-intro p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-table {
    margin-bottom: 4rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: 400;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thermal-header {
    background: rgba(255, 255, 255, 0.08) !important;
}

.uv-header {
    background: rgba(255, 255, 255, 0.05) !important;
}

.comparison-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: top;
}

.comparison-category {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-weight: 400;
    font-size: 0.9rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thermal-cell {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
}

.uv-cell {
    background: rgba(255, 255, 255, 0.02);
    color: #cccccc;
}

.advantage-badge {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 0.2rem 0.6rem;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disadvantage-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    padding: 0.2rem 0.6rem;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.7rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: var(--spacex-white);
    padding: 0.3rem 0.8rem;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table p {
    margin: 0.2rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.comparison-summary {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-summary h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.summary-point {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.summary-point h4 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-point p {
    color: #cccccc;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 300;
}

/* 돌아가기 버튼 */
.back-to-home {
    padding: 80px 0;
    background: #111111;
    text-align: center;
}

.back-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 300;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    background: #ffffff;
    color: #000000;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .kodak-brand h1 {
        font-size: 2.5rem;
    }
    
    .system-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .equipment-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .workflow-steps {
        grid-template-columns: 1fr;
    }
    
    .plates-specs {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-item {
        padding: 1.5rem;
    }
    
    .advantage-icon {
        font-size: 2.5rem;
    }
    
    .advantage-item h3 {
        font-size: 1.3rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .summary-points {
        grid-template-columns: 1fr;
    }
    
    .stat h4 {
        font-size: 2rem;
    }
    
    .overview-text h3,
    .workflow-info h3,
    .plates-info h3,
    .comparison-intro h3 {
        font-size: 2rem;
    }
    
    .plate-explanation {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.plate-explanation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.plate-type {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.plate-type h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--spacex-white);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plate-type p {
    font-size: 1rem;
    color: var(--spacex-gray);
    line-height: 1.6;
    font-weight: 300;
}

.comparison-table h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--spacex-white);
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 히어로 피처 */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--spacex-gray);
    font-weight: 300;
}

.feature-icon {
    font-size: 1.2rem;
}

/* 디자이너 혜택 */
.designer-benefits {
    padding: 100px 0;
    background: var(--spacex-dark-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--spacex-white);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--spacex-gray);
    line-height: 1.6;
    font-weight: 300;
}

/* 코닥 시스템 */
.kodak-system {
    padding: 100px 0;
    background: var(--spacex-black);
}

.system-simple {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.system-logo-center {
    margin-bottom: 2rem;
}

.system-simple h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--spacex-white);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.system-description {
    font-size: 1.2rem;
    color: var(--spacex-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.system-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.highlight {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--spacex-white);
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* 코닥 로고 중앙 정렬 */
.kodak-logo-center {
    text-align: center;
    margin-bottom: 1rem;
}

/* 대전프로세스 로고 중앙 정렬 */
.djp-logo-center {
    text-align: center;
    margin-bottom: 1rem;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .system-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .highlight {
        padding: 0.8rem 1.5rem;
    }
}

/* 써멀 CTP 텍스트 노란색 강조 */
.thermal-ctp-highlight {
    color: #FFD700;
    font-weight: bold;
} 