/* Dark Header Style - Same as index.html */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 36px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #F5F5F5;
    margin-left: 12px;
}

header nav {
    display: flex;
    gap: 45px;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    padding: 10px 0;
    display: block;
}

.nav-item>a:hover,
.nav-item>a.active {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(229, 57, 53, 0.6);
}

/* 2-Depth Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(20, 20, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-dropdown a i {
    font-size: 12px;
    width: 16px;
    text-align: center;
    color: var(--primary-color);
    opacity: 0.7;
}

.nav-dropdown a:hover {
    background: rgba(229, 57, 53, 0.1);
    color: #fff;
}

.nav-dropdown a:hover i {
    opacity: 1;
}

@media (max-width: 1024px) {
    .nav-dropdown {
        display: none;
    }
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-cta .btn-primary {
    padding: 12px 28px;
    background: var(--primary-color);
    color: #F5F5F5;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-cta .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(229, 57, 53, 0.4);
}

@media (max-width: 1024px) {
    .header-cta {
        display: none;
    }
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #F5F5F5;
    transition: all 0.3s ease;
    display: block;
}

/* Mobile line break - hidden by default */
.mobile-br {
    display: none;
}

@media (max-width: 768px) {
    .mobile-br {
        display: inline;
    }

    .header-inner {
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    header nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: #0a0a0f;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    header nav.active {
        opacity: 1;
        visibility: visible;
    }

    header nav .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    header nav .nav-item > a {
        display: block;
        padding: 20px;
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
    }

    header nav .nav-item > a:hover {
        color: var(--primary-color);
        background: rgba(229, 57, 53, 0.1);
    }

    header nav .nav-dropdown {
        display: none !important;
    }
}

/* Page Hero - Dark Premium Style */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0a0a0f 0%, #14141a 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 20%, rgba(229, 57, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 179, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-hero h1 span {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero .subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb span:last-child {
    color: var(--primary-color);
}

/* Company Overview Section */
.overview-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #05050a 0%, #0a0a15 50%, #0f0a1a 100%);
    position: relative;
    overflow: hidden;
}

.overview-section .stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 250px 160px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 300px 100px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 350px 60px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 400px 200px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 450px 140px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 500px 80px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 550px 180px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 600px 30px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 650px 220px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 700px 150px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 750px 90px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 800px 250px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 850px 50px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 900px 180px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 950px 120px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 1000px 70px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 1100px 200px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 1200px 100px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 1300px 160px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 1400px 40px, rgba(255, 255, 255, 0.5), transparent);
    background-size: 100% 100%;
    animation: twinkle 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.overview-section::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

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

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(255, 179, 0, 0.1) 100%);
    border: 1px solid rgba(229, 57, 53, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    color: #fff;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
}

.overview-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.overview-main-card {
    flex: 0 0 320px;
    background: linear-gradient(145deg, rgba(229, 57, 53, 0.15) 0%, rgba(229, 57, 53, 0.05) 100%);
    border: 1px solid rgba(229, 57, 53, 0.3);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.overview-main-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.2) 0%, transparent 70%);
}

.overview-main-card .company-logo-area {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B35 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
}

.overview-main-card .company-logo-area i {
    font-size: 36px;
    color: #fff;
}

.overview-main-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.overview-main-card .company-eng {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.overview-main-card .established {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
}

.overview-main-card .established i {
    color: var(--primary-color);
    font-size: 18px;
}

.overview-main-card .established span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.overview-main-card .capital-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.overview-main-card .capital-info .amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview-main-card .capital-info .unit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.overview-main-card .capital-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
}

.overview-details {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.overview-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #FF6B35 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(229, 57, 53, 0.3);
}

.overview-card:hover::before {
    opacity: 1;
}

.overview-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(229, 57, 53, 0.05) 100%);
    border: 1px solid rgba(229, 57, 53, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.overview-card .card-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.overview-card .label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.overview-card .value {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.6;
}

.overview-card .value small {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-top: 5px;
}

.overview-card.full-width {
    grid-column: span 2;
}

.overview-timeline {
    grid-column: span 2;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
}

.overview-timeline .label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-timeline .label i {
    color: var(--primary-color);
    font-size: 16px;
}

.timeline-items {
    display: flex;
    gap: 0;
    position: relative;
}

.timeline-items::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(229, 57, 53, 0.3) 10%,
            var(--primary-color) 30%,
            var(--primary-color) 70%,
            rgba(229, 57, 53, 0.3) 90%,
            transparent 100%);
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-item .year {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.timeline-item .desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .overview-content {
        flex-direction: column;
    }

    .overview-main-card {
        flex: none;
    }

    .overview-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .overview-details {
        grid-template-columns: 1fr;
    }

    .overview-card.full-width,
    .overview-timeline {
        grid-column: span 1;
    }

    .timeline-items {
        flex-direction: column;
        gap: 20px;
    }

    .timeline-items::before {
        top: 0;
        bottom: 0;
        left: 25px;
        right: auto;
        width: 2px;
        height: auto;
        transform: none;
    }

    .timeline-item {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }

    .timeline-item .year {
        margin: 0;
        flex-shrink: 0;
    }
}

/* CEO Message Section */
.ceo-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0f0f13 0%, #1a1a22 100%);
    position: relative;
    overflow: hidden;
}

.ceo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(229, 57, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 179, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.ceo-section .section-header h2 {
    color: #fff;
}

.ceo-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.ceo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ceo-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}

/* 배경 레이어 - 우측 하단으로 살짝 */
.ceo-image .layer-back {
    position: absolute;
    top: calc(50% + 20px);
    left: 50%;
    transform: translate(-38%, -45%);
    width: 340px;
    height: 340px;
    background: linear-gradient(145deg, rgba(229, 57, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid rgba(229, 57, 53, 0.18);
    border-radius: 24px;
    z-index: 0;
    animation: layerFloat 6s ease-in-out infinite;
}

@keyframes layerFloat {

    0%,
    100% {
        transform: translate(-38%, -45%);
    }

    50% {
        transform: translate(-38%, -47%);
    }
}

.ceo-image .img-main {
    position: relative;
    z-index: 2;
    width: 360px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: imgFloat 5s ease-in-out infinite;
}

@keyframes imgFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.ceo-quote-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    position: relative;
}

.ceo-quote-box::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
    font-family: Georgia, serif;
}

.ceo-quote-content {
    position: relative;
    z-index: 1;
    display: block !important;
}

.ceo-quote-content p {
    font-size: 1.15rem;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    display: block !important;
    width: 100% !important;
    column-count: unset !important;
    columns: unset !important;
}

.ceo-quote-content .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.ceo-quote-content .chinese {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    display: block !important;
}

.ceo-signature {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.ceo-signature .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c62828 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.ceo-signature .info .name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.ceo-signature .info .title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Organization Section - Restored & Fixed */
.org-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.org-chart-container {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.org-chart-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1a22 0%, #0f0f13 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 30% 30%, rgba(229, 57, 53, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 70% 70%, rgba(255, 179, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.team-section .section-header h2 {
    color: #fff;
}

.team-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.org-section .section-header h2 {
    color: #1a1a22;
}

.org-section .section-header p {
    color: #666;
}

.org-section .section-badge {
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.08) 0%, rgba(255, 179, 0, 0.08) 100%);
    border: 1px solid rgba(229, 57, 53, 0.15);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.team-grid.executives {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-grid.staff {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(229, 57, 53, 0.3);
}

.team-member .avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
}

.team-member h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.team-member .position {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Footer */
footer {
    background: #0a0a0f;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
    opacity: 0.8;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-info strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.registration-info {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .ceo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ceo-image {
        order: -1;
        min-height: 400px;
    }

    .ceo-image .img-main {
        width: 300px;
    }

    .ceo-image .layer-back {
        width: 280px;
        height: 280px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid.staff {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 350px;
    }

    .ceo-quote-box {
        padding: 40px 30px;
    }

    .team-grid,
    .team-grid.staff {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .org-chart-container {
        padding: 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links a {
        margin: 0 10px;
    }
}