/* Company Page Specific Styles */

/* Company Hero - 전면 개편 */
.company-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 70px;
    background: white;
}

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}

@keyframes gradient-shift {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.company-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 100px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.company-hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 30px;
    text-shadow: none;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    display: inline-block;
}

.company-hero-content .hero-description {
    font-size: 20px;
    color: #4a5568;
    margin-top: 24px;
    font-weight: 400;
    line-height: 1.6;
}

/* Hero Stats Cards */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero-stat-card {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    padding: 30px 40px;
    border-radius: 20px;
    border: 3px solid #3B82F6;
    text-align: center;
    min-width: 200px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.hero-stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    border-color: #2563EB;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.5);
}

.hero-stat-icon {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.hero-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-stat-number.infinity {
    font-size: 64px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8); }
}

.hero-stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Company Overview - 현대적 카드 디자인 */
.company-overview {
    background: linear-gradient(180deg, #f8f9ff 0%, white 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

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

.company-info-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.company-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.company-info-card:hover {
    box-shadow: 0 16px 50px rgba(102, 126, 234, 0.15);
    transform: translateY(-12px);
    border-color: rgba(102, 126, 234, 0.2);
}

.company-info-card h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-info-card .subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 100px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-row .value {
    text-align: right;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
}

.info-row .value.highlight {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 18px;
}

.company-description {
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.08);
}

.company-description p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.company-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 60px;
}

.tag {
    padding: 14px 28px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Vision & Mission - 대형 카드 디자인 */
.vision-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.vision-section .section-header h2 {
    color: white;
}

.vision-section .section-header h2::after {
    background: linear-gradient(90deg, #FFE066 0%, #FFEAA7 100%);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 60px 50px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.vm-card:hover::before {
    transform: rotate(180deg);
}

.vm-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.vm-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 1;
}

.vm-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.vm-card h4 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 24px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.vm-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Business Areas - 아이콘 강조 */
.business-section {
    background: white;
    padding: 120px 0;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.business-card {
    background: linear-gradient(135deg, #f8f9ff 0%, white 100%);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    border-radius: 24px;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.business-card:hover::before {
    opacity: 0.05;
}

.business-card:hover {
    box-shadow: 0 16px 50px rgba(102, 126, 234, 0.15);
    transform: translateY(-12px);
    border-color: rgba(102, 126, 234, 0.3);
}

.business-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.business-card:hover .business-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.business-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.business-card ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.business-card ul li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    transition: all 0.3s ease;
}

.business-card ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.business-card:hover ul li::before {
    transform: scale(1.3);
}

/* CNOL Platform - 강조된 섹션 */
.cnol-platform-section {
    background: linear-gradient(180deg, #f8f9ff 0%, white 100%);
    padding: 120px 0;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-gradient);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-top: 16px;
    font-weight: 500;
}

.cnol-intro {
    max-width: 1000px;
    margin: 60px auto;
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.08);
}

.cnol-intro p {
    font-size: 19px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.cnol-intro strong {
    color: var(--primary-color);
    font-weight: 800;
}

.cnol-stats {
    margin-top: 80px;
}

.cnol-stats h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 60px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.cnol-stats h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.stat-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 16px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
    background: var(--primary-gradient);
    color: white;
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-number.infinity {
    font-size: 56px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.6));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.9));
    }
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* CTA Section - 강력한 마무리 */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

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

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-4px);
}

.btn-glow {
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

/* Active menu item */
.nav-menu a.active {
    color: var(--primary-color);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
}

/* Responsive */
@media (max-width: 1024px) {
    .company-hero-content h1 {
        font-size: 42px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-card {
        padding: 25px 35px;
        min-width: 180px;
    }
    
    .hero-stat-number {
        font-size: 40px;
    }
    
    .company-info-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vm-card {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .company-hero {
        min-height: 70vh;
    }
    
    .company-hero-content {
        padding: 60px 0;
    }
    
    .company-hero-content h1 {
        font-size: 32px;
    }
    
    .company-hero-content .hero-description {
        font-size: 17px;
    }
    
    .hero-stats {
        gap: 15px;
        margin-top: 40px;
    }
    
    .hero-stat-card {
        padding: 20px 25px;
        min-width: 150px;
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .hero-stat-icon {
        font-size: 28px;
    }
    
    .hero-stat-number {
        font-size: 32px;
    }
    
    .hero-stat-label {
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .company-info-card {
        padding: 32px 24px;
    }
    
    .company-description {
        padding: 35px 28px;
    }
    
    .vm-card {
        padding: 40px 30px;
    }
    
    .vm-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .vm-card h4 {
        font-size: 24px;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .business-card {
        padding: 40px 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .company-hero-content h1 {
        font-size: 26px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stat-card {
        max-width: 100%;
        flex: 1 1 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cnol-intro {
        padding: 30px 20px;
    }
    
    .cnol-intro p {
        font-size: 16px;
    }
    
    .keyword-tags {
        gap: 10px;
    }
    
    .tag {
        padding: 10px 20px;
        font-size: 13px;
    }
}
