@charset "utf-8";

/* ======================================================================
   UNIMO Technology Subpages Design System
   ====================================================================== */

.unimo_sub_page {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    color: #333333;
    line-height: 1.6;
}

.unimo_sec_wrap {
    padding: 80px 0;
}

.bg_light {
    background-color: #f8fafc;
}

/* Hero Banner */
.unimo_hero_section {
    background: linear-gradient(135deg, #002266 0%, #0044cc 60%, #0099ff 100%);
    color: #ffffff;
    padding: 90px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.unimo_hero_section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.sub_badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.hero_title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 16px;
}

.hero_title span {
    color: #38bdf8;
}

.hero_desc {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 400;
}

/* Section Head */
.sec_head {
    margin-bottom: 60px;
}

.sec_badge {
    color: #003399;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.sec_title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.sec_subtitle {
    font-size: 16px;
    color: #64748b;
}

/* CEO Page Flex */
.ceo_intro_flex {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.ceo_img_card {
    flex: 0 0 380px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.ceo_img_card .img_wrapper {
    height: 420px;
    overflow: hidden;
}

.ceo_img_card .img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo_info_box {
    padding: 24px;
    text-align: center;
    background: #ffffff;
}

.ceo_info_box .role {
    font-size: 13px;
    color: #003399;
    font-weight: 700;
    display: block;
}

.ceo_info_box .name {
    font-size: 20px;
    font-weight: 700;
    margin-top: 4px;
    color: #1e293b;
}

.ceo_text_card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.quote_badge {
    color: #003399;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ceo_headline {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.4;
    color: #0f172a;
    margin-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
}

.ceo_headline strong {
    color: #003399;
}

.ceo_body_text p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.7;
}

.ceo_closing {
    font-weight: 700;
    color: #0f172a !important;
    margin-top: 24px;
}

/* Core Values Grid */
.core_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.core_card {
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.core_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #003399;
}

.icon_box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 auto 24px;
}

.bg_blue { background: linear-gradient(135deg, #0044cc, #0088ff); }
.bg_green { background: linear-gradient(135deg, #059669, #10b981); }
.bg_navy { background: linear-gradient(135deg, #0f172a, #334155); }
.bg_orange { background: linear-gradient(135deg, #ea580c, #f97316); }
.bg_teal { background: linear-gradient(135deg, #0d9488, #14b8a6); }

.core_card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.core_card p {
    font-size: 14px;
    color: #64748b;
}

/* History Timeline */
.history_timeline_wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.history_timeline_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 140px;
    width: 3px;
    background: #cbd5e1;
}

.timeline_item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.year_badge {
    flex: 0 0 120px;
    background: #003399;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,51,153,0.3);
}

.timeline_content {
    flex: 1;
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.era_title {
    font-size: 20px;
    font-weight: 800;
    color: #003399;
    margin-bottom: 16px;
}

.history_list li {
    font-size: 15px;
    color: #334155;
    margin-bottom: 10px;
    line-height: 1.5;
}

.history_list li strong {
    color: #0f172a;
    display: inline-block;
    width: 50px;
}

/* Org Chart */
.org_chart_wrapper {
    text-align: center;
}

.node_box {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

.ceo_box {
    background: linear-gradient(135deg, #002266, #0044cc);
    box-shadow: 0 8px 20px rgba(0,34,102,0.3);
}

.ceo_box i { margin-right: 8px; }

.node_line_v {
    width: 2px;
    height: 40px;
    background: #cbd5e1;
    margin: 0 auto;
}

.org_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.dept_box {
    width: 100%;
    padding: 16px 12px;
    font-size: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.dept_box i { display: block; font-size: 22px; margin-bottom: 6px; }

.sub_dept_list {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
}

.sub_dept_list li {
    font-size: 14px;
    color: #475569;
    padding: 8px 0;
    border-bottom: 1px dashed #f1f5f9;
}

.sub_dept_list li:last-child { border-bottom: none; }

/* CI Page */
.ci_logo_display_card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    gap: 50px;
    align-items: center;
}

.logo_preview_box {
    flex: 0 0 350px;
    text-align: center;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
}

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

.color_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.color_card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.color_box {
    height: 120px;
}

.color_info {
    padding: 20px;
}

.c_name { font-weight: 800; font-size: 16px; display: block; }
.c_hex { font-size: 13px; color: #64748b; display: block; margin-bottom: 8px; font-weight: 700; }
.color_info p { font-size: 13px; color: #475569; }

/* Location Page */
.loc_info_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.loc_card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 20px;
}

.loc_icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #e0f2fe;
    color: #003399;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc_detail h4 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: #0f172a; }
.loc_detail p { font-size: 14px; color: #475569; margin-bottom: 4px; }

/* PMS Page */
.pms_feature_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pms_card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.pms_icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    margin: 0 auto 20px;
}

.pms_card h4 { font-size: 18px; font-weight: 800; margin-bottom: 12px; color: #0f172a; }
.pms_card p { font-size: 14px; color: #64748b; line-height: 1.6; }

.pms_architecture_card {
    background: #0f172a;
    color: #ffffff;
    border-radius: 20px;
    padding: 50px;
}

.pms_architecture_card .sub_sec_title { color: #ffffff; margin-bottom: 40px; }

.architecture_diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.arch_node {
    background: #1e293b;
    border: 1px solid #334155;
    padding: 24px 28px;
    border-radius: 16px;
    text-align: center;
    flex: 1;
}

.arch_node.highlight {
    background: linear-gradient(135deg, #003399, #0055ff);
    border-color: #38bdf8;
}

.arch_node i { display: block; font-size: 32px; margin-bottom: 12px; color: #38bdf8; }
.arch_node span { font-size: 15px; font-weight: 700; }
.arch_arrow { color: #64748b; font-size: 20px; }

/* Responsive Rules */
@media (max-width: 1024px) {
    .ceo_intro_flex { flex-direction: column; }
    .ceo_img_card { flex: auto; }
    .core_grid, .pms_feature_grid { grid-template-columns: repeat(2, 1fr); }
    .org_grid { grid-template-columns: repeat(3, 1fr); }
    .color_grid { grid-template-columns: repeat(1, 1fr); }
    .architecture_diagram { flex-direction: column; }
    .arch_arrow { transform: rotate(90deg); }
}

@media (max-width: 640px) {
    .hero_title { font-size: 28px; }
    .core_grid, .pms_feature_grid, .loc_info_grid, .org_grid { grid-template-columns: 1fr; }
    .history_timeline_wrap::before { left: 20px; }
    .history_timeline_wrap { padding-left: 40px; }
    .timeline_item { flex-direction: column; gap: 12px; }
    .year_badge { width: fit-content; }
}
