@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}

/* 공통 스타일 */
html {
    font-size: clamp(14px, 1vw, 20px);
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8fafb;
    color: #2c3e50;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    letter-spacing: -0.03em;
    font-weight: 700;
}

p {
    line-height: 1.8;
    font-weight: 400;
}

.container {
    max-width: min(1600px, 96vw);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
    width: 100%;
}

/* 반응형 폰트 크기 - 화면 크기에 따라 확실하게 적용 */
@media (min-width: 2560px) {
    html { font-size: 22px; }
    .container { max-width: 2000px; }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    html { font-size: 20px; }
    .container { max-width: 1800px; }
}

@media (min-width: 1600px) and (max-width: 1919px) {
    html { font-size: 18px; }
    .container { max-width: 1600px; }
}

@media (min-width: 1400px) and (max-width: 1599px) {
    html { font-size: 17px; }
    .container { max-width: 1500px; }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    html { font-size: 16px; }
    .container { max-width: 1400px; }
}

.header {
    background: transparent;
    backdrop-filter: none;
    color: white;
    padding: 1.5rem 0;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding-bottom 0.3s ease;
    overflow: visible;
    min-height: 80px;
    will-change: transform, background-color;
}

.header.revealed {
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
}

.header:hover,
.header.has-dropdown-open {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}

.header.revealed:hover,
.header.revealed.has-dropdown-open,
.header.header-light:hover,
.header.header-light.has-dropdown-open {
    background: rgba(255, 255, 255, 0.94) !important;
    color: #0f172a !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

/* 드롭다운이 열릴 때 헤더 자동 확장 */
.header:hover:has(.dropdown:hover),
.header.has-dropdown-open:has(.dropdown:hover) {
    padding-bottom: 4rem;
}

/* 메인 페이지 전용 투명 헤더 - 항상 투명 유지 (최우선) */
.header.header-transparent:not(.header-light):not(.revealed),
.header.header-transparent:not(.header-light).scrolled:not(.revealed),
.header.header-transparent:not(.header-light).hidden {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
    color: white !important;
    padding: 1.5rem 0 !important;
    min-height: 80px !important;
}

.header.header-transparent:not(.header-light):not(.revealed):not(:hover),
.header.header-transparent:not(.header-light).scrolled:not(.revealed):not(:hover) {
    background: transparent !important;
}

.header.header-transparent:not(.header-light):not(.revealed):hover,
.header.header-transparent:not(.header-light).scrolled:not(.revealed):hover {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1rem !important;
}

/* 밝은 배경 페이지용 헤더 (header-light 클래스 추가) - 처음에는 투명 */
.header.header-transparent.header-light:not(.revealed) {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    color: #1a1a1a !important;
    padding: 1.5rem 0 !important;
    min-height: 80px !important;
}

.header.header-transparent.header-light:not(.revealed):hover {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

/* 스크롤 시에만 흰색 배경 */
.header.header-transparent.header-light.scrolled:not(.revealed) {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    color: #1a1a1a !important;
    padding: 1.25rem 0 !important;
    min-height: 75px !important;
}

.header.header-transparent.header-light.scrolled:not(.revealed):hover {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

/* 일반 헤더 스크롤 시 (header-transparent가 없는 경우) */
.header.scrolled:not(.header-transparent):not(.revealed) {
    background: transparent !important;
.header.header-transparent:not(.header-light).revealed {
    background: rgba(255, 255, 255, 0.94) !important;
    color: #101828 !important;
    backdrop-filter: blur(14px) !important;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.header.header-transparent.header-light.revealed {
    background: rgba(248, 248, 252, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.header.scrolled.revealed:not(.header-transparent) {
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(14px) !important;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.12) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
}

.header.revealed .nav a,
.header.revealed .lang-btn,
.header.revealed .header-contact-item {
    color: #0f172a !important;
}

.header.revealed .nav a::after,
.header.revealed .lang-btn::after {
    background: #0f172a !important;
}

    backdrop-filter: none !important;
    color: #1a1a1a !important;
    padding: 1.25rem 0 !important;
    box-shadow: none !important;
    border-bottom: none !important;
    min-height: 75px !important;
}

.header.hidden {
    transform: translateY(-100%);
}

.header .container {
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
    padding-left: clamp(2rem, 5vw, 6rem);
    padding-right: clamp(2rem, 5vw, 6rem);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 3.5rem);
    width: 100%;
    max-width: min(1600px, 90vw);
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 60px;
}

.logo {
    flex-shrink: 0;
    margin: 0;
    margin-right: clamp(2rem, 4vw, 5rem);
    width: auto;
    z-index: 1;
}

.logo img {
    height: 50px;
    filter: none;
    transition: all 0.4s ease;
}

/* 투명 헤더일 때 로고 흰색으로 (어두운 배경용 - 메인페이지) */
.header-transparent:not(.header-light) .logo img {
    filter: brightness(0) invert(1);
}

/* 밝은 배경용 투명 헤더 (About, Product, Facilities) */
.header-transparent.header-light .logo img {
    filter: none;
}

/* 스크롤 시 로고 - 기본 (header-light가 있는 경우만) */
.header.scrolled:not(.header-transparent) .logo img,
.header-transparent.header-light.scrolled .logo img {
    filter: none;
}

/* 메인 페이지 헤더는 항상 로고 흰색 유지 (가장 높은 우선순위) */
.header.header-transparent:not(.header-light) .logo img,
.header.header-transparent:not(.header-light).scrolled .logo img,
.header.header-transparent:not(.header-light).hidden .logo img {
    filter: brightness(0) invert(1) !important;
}

.logo img:hover {
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.header-transparent:not(.header-light) .logo img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 107, 53, 0.8));
}

.header-transparent.header-light .logo img:hover {
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.header.scrolled .logo img:hover {
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.nav {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin: 0;
    margin-right: clamp(1.5rem, 3vw, 4rem);
    z-index: 2;
    pointer-events: auto;
}

.nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: clamp(1.5rem, 2.5vw, 2.8rem);
    align-items: center;
    white-space: nowrap;
    min-height: 60px;
    justify-content: center;
    position: relative;
}

.nav-buttons {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    min-height: 60px;
    margin-left: clamp(1.5rem, 3vw, 4rem);
    z-index: 1;
}

.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    line-height: 1.3;
    text-align: right;
    max-width: clamp(160px, 18vw, 260px);
}

.header-contact-item {
    font-size: clamp(0.75rem, 0.95vw, 0.85rem);
    font-weight: 500;
    color: white;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.header-contact-address {
    white-space: normal;
    line-height: 1.4;
    word-break: keep-all;
}

.header-transparent.header-light .header-contact-item,
.header.scrolled:not(.header-transparent) .header-contact-item {
    color: #1a1a1a;
}

.nav > ul > li {
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    min-width: clamp(90px, 6vw, 140px);
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem clamp(0.25rem, 0.8vw, 1rem);
}

.nav-buttons .lang-btn {
    margin-left: 0;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.nav-buttons .lang-btn:last-of-type {
    margin-right: 0;
}

.nav-buttons .menu-btn {
    margin-left: 0;
    flex-shrink: 0;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    line-height: 1.5;
    padding: 0.75rem 0;
    display: block;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.25s ease, left 0.25s ease;
}

.header-transparent.header-light .nav a::after,
.header.scrolled .nav a::after {
    background: #ff6b35 !important;
}

.nav a:hover::after,
.nav a:focus-visible::after {
    width: 100%;
    left: 0;
}

.header a {
    color: white;
}

/* 투명 헤더에서는 흰색 텍스트 */
.header-transparent:not(.header-light) .nav a {
    color: white !important;
}

.header-transparent.header-light .nav a {
    color: #1a1a1a !important;
}

.header-transparent:not(.header-light) .lang-btn {
    color: white !important;
    border-color: white !important;
}

.header-transparent.header-light .lang-btn {
    color: #1a1a1a !important;
    border-color: #1a1a1a !important;
}

/* 스크롤 시 헤더 텍스트 - 기본 (header-light가 있는 경우만) */
.header.scrolled:not(.header-transparent) .nav a,
.header-transparent.header-light.scrolled .nav a {
    color: #1a1a1a !important;
}

.header.scrolled:not(.header-transparent) .lang-btn,
.header-transparent.header-light.scrolled .lang-btn {
    color: #1a1a1a !important;
    border-color: #1a1a1a !important;
}

/* 메인 페이지 헤더는 항상 흰색 텍스트 유지 (가장 높은 우선순위) */
.header.header-transparent:not(.header-light) .nav a,
.header.header-transparent:not(.header-light).scrolled .nav a,
.header.header-transparent:not(.header-light).hidden .nav a {
    color: white !important;
}

.header.header-transparent:not(.header-light) .lang-btn,
.header.header-transparent:not(.header-light).scrolled .lang-btn,
.header.header-transparent:not(.header-light).hidden .lang-btn {
    color: white !important;
    border-color: white !important;
}

/* 호버 효과 */
.nav a:hover {
    color: #ff6b35 !important;
}

.header.scrolled .nav a:hover {
    color: #ff6b35 !important;
}

/* Main menu hover underline effect */
.nav > ul > li > a {
    position: relative;
    display: inline-block;
    text-align: center;
}

.nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .nav > ul > li > a::after {
    background: #1a1a1a;
}

.nav > ul > li > a:hover::after,
.nav > ul > li.dropdown:hover > a::after {
    width: 100%;
}

/* 확장형 드롭다운 */
.dropdown {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 60px;
}

.dropdown > a {
    cursor: pointer;
    display: block;
    padding: 0;
    white-space: nowrap;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-menu {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
    background: transparent;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 150px;
    text-align: center;
    width: 100%;
    z-index: 10;
}

.header:hover .dropdown:hover > .dropdown-menu,
.header.has-dropdown-open .dropdown:hover > .dropdown-menu {
    max-height: 500px;
    padding: 0.8rem 0;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu > li > a {
    display: block;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: transparent;
    text-align: center;
}

.header:hover .dropdown-menu > li > a,
.header.has-dropdown-open .dropdown-menu > li > a {
    color: rgba(255, 255, 255, 0.9);
}

.header.scrolled .dropdown-menu > li > a {
    color: rgba(26, 26, 26, 0.8);
}

.dropdown-menu > li > a:hover {
    color: #ff6b35;
}

.header.scrolled .dropdown-menu > li > a:hover {
    color: #ff6b35;
}

/* 2단계 드롭다운 (서브메뉴) */
.dropdown-submenu {
    display: flex;
    flex-direction: column;
}

.dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-menu-level2 {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-submenu:hover > .dropdown-menu-level2 {
    max-height: 250px;
}

.dropdown-menu-level2 li {
    margin: 0;
}

.dropdown-menu-level2 a {
    display: block;
    padding: 8px 0 8px 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: transparent;
}

.header-transparent.header-light .dropdown-menu-level2 a {
    color: rgba(26, 26, 26, 0.75);
}

.header.scrolled .dropdown-menu-level2 a {
    color: rgba(26, 26, 26, 0.75);
}

.dropdown-menu-level2 a:hover {
    color: #ff6b35;
    padding-left: 16px;
}

.header.scrolled .dropdown-menu-level2 a:hover {
    color: #ff6b35;
}

/* 언어 전환 버튼 */
.lang-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 0.75rem 0;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    margin-left: 0;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    min-height: 60px;
    overflow: visible;
}

.lang-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.25s ease, left 0.25s ease;
}

.header-transparent.header-light .lang-btn::after,
.header.scrolled .lang-btn::after {
    background: #ff6b35 !important;
}

.header.scrolled .lang-btn {
    background: transparent;
    color: #1a1a1a;
    border: none;
}

.lang-btn:hover {
    color: #ff6b35 !important;
}

.lang-btn:hover::after,
.lang-btn:focus-visible::after,
.lang-btn.active::after {
    width: 100%;
    left: 0;
}

.lang-btn.active {
    color: #ff6b35 !important;
    font-weight: 600;
}

.lang-btn.active:hover {
    color: #ff6b35 !important;
}

/* Hamburger Menu Button */
.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
    z-index: 10;
}

.menu-btn span {
    width: 100%;
    height: 2px;
    background-color: #000000;
    border-radius: 0;
    transition: all 0.3s ease;
}

.menu-btn:hover span {
    background-color: #666666;
}

/* 투명 헤더에서는 흰색 */
.header-transparent:not(.header-light) .menu-btn span {
    background-color: white !important;
}

.header-transparent:not(.header-light) .menu-btn:hover span {
    background-color: rgba(255, 255, 255, 0.8) !important;
}

.header-transparent.header-light .menu-btn span {
    background-color: #1a1a1a !important;
}

/* 스크롤 시 메뉴 버튼 - 기본 (header-light가 있는 경우만) */
.header.scrolled:not(.header-transparent) .menu-btn span,
.header-transparent.header-light.scrolled .menu-btn span {
    background-color: #1a1a1a !important;
}

/* 메인 페이지 헤더는 항상 흰색 메뉴 버튼 유지 (가장 높은 우선순위) */
.header.header-transparent:not(.header-light) .menu-btn span,
.header.header-transparent:not(.header-light).scrolled .menu-btn span,
.header.header-transparent:not(.header-light).hidden .menu-btn span {
    background-color: white !important;
}

.menu-btn:hover span {
    background-color: #ff6b35 !important;
}

.header.scrolled .menu-btn:hover span {
    background-color: #ff6b35 !important;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem 1rem 1.5rem;
    background: rgba(26, 26, 26, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    margin: 0;
    padding: 0;
    display: block;
    object-fit: contain;
}

.sidebar-header h2 {
    display: none;
}

.sidebar-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0;
}

.sidebar-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.sidebar-section {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.sidebar-section h3 {
    display: none;
}

.sidebar-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-section li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.sidebar-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 1rem 1.5rem 1rem 2.25rem;
    margin: 0;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

.sidebar-section a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   Simple Design for ATES 소개 페이지
   ======================================== */

/* Company Overview - Simple Design */
/* 조직도 섹션 - 한 화면에 footer까지 보이도록 */
.organization-section {
    min-height: calc(100vh - 420px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(1.5rem, 3vh, 2.5rem) 0 0 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.organization-section .section-main-title {
    margin-bottom: clamp(0.3rem, 0.6vh, 0.5rem);
    padding-top: clamp(0.5rem, 1vh, 0.8rem);
    font-size: clamp(1.8rem, 3.5vw, 3rem) !important;
}

.company-overview-simple {
    padding: clamp(0.7rem, 1.5vw, 1rem) 0;
    padding-top: clamp(0.7rem, 1.5vw, 1rem);
    background: #fafafa;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.company-overview-simple .container {
    padding-left: clamp(0.8rem, 2vw, 1.5rem);
    padding-right: clamp(0.8rem, 2vw, 1.5rem);
}

.section-title-simple {
    font-size: clamp(1.75rem, 4vw, 4rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    text-align: center;
}

.section-subtitle-simple {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #666;
    text-align: center;
    margin-bottom: clamp(0.8rem, 1.8vw, 1.5rem);
    line-height: 1.6;
}

.company-content-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    max-width: min(1400px, 95vw);
    margin: 0 auto;
}

.company-info-simple {
    background: white;
    padding: clamp(1.3rem, 2.5vw, 2rem);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-info-list li {
    display: flex;
    align-items: flex-start;
    padding: clamp(1rem, 2vw, 1.25rem) 0 clamp(1rem, 2vw, 1.25rem) clamp(1.5rem, 3vw, 2rem);
    border: solid 1px #e1e1e1;
    border-bottom: none;
}

.company-info-list li:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.company-info-list li:last-child {
    border-bottom: solid 1px #e1e1e1;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.company-info-list li + li {
    margin-top: 0;
}

.company-info-list li strong {
    flex: none;
    width: clamp(100px, 15vw, 140px);
    font-size: clamp(0.95rem, 1.3vw, 1rem);
    font-weight: 600;
    color: #000;
    line-height: 1.6;
}

.company-info-list li span {
    flex: 1;
    font-size: clamp(0.9rem, 1.2vw, 0.95rem);
    color: #636363;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.company-info-list li span em.info-detail-simple {
    display: block;
    color: #999;
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    margin-top: 0.25rem;
    font-style: normal;
}

.info-table-simple {
    width: 100%;
    border-collapse: collapse;
}

.info-table-simple tr {
    border-bottom: 1px solid #e5e7eb;
}

.info-table-simple tr:last-child {
    border-bottom: none;
}

.info-table-simple th {
    text-align: left;
    padding: 1rem 0;
    font-weight: 600;
    color: #1a1a1a;
    width: 35%;
    background: #f8f9fa;
    padding-left: 1rem;
}

.info-table-simple td {
    padding: clamp(0.7rem, 1.2vw, 0.9rem);
    color: #333;
}

.info-detail-simple {
    color: #999;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.company-image-simple {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.company-image-simple img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: clamp(0.7rem, 1.5vw, 1rem);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.company-address-simple {
    text-align: center;
    padding: clamp(0.6rem, 1.2vw, 0.8rem);
    background: #1a1a1a;
    color: white;
    border-radius: 8px;
    margin-bottom: clamp(0.7rem, 1.5vw, 1rem);
    font-size: clamp(0.9rem, 1.2vw, 0.95rem);
    letter-spacing: -0.01em;
}

.company-area-info {
    display: flex;
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
    padding: clamp(0.9rem, 2vw, 1.3rem);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.area-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(0.4rem, 0.8vw, 0.6rem);
}

.area-label {
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    color: #666;
    margin-bottom: clamp(0.4rem, 0.8vw, 0.6rem);
    letter-spacing: -0.01em;
}

.area-value {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

/* CEO 메시지 섹션 - 한 화면에 footer까지 보이도록 */
.ceo-message-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(1rem, 2vh, 1.5rem) 0 clamp(1.5rem, 3vh, 2rem) 0;
    background-color: #fafafa;
    margin-top: 0;
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

.ceo-message-section .section-main-title {
    margin-bottom: clamp(3rem, 6vh, 5rem);
    padding-top: clamp(0.3rem, 0.6vh, 0.5rem);
    font-size: clamp(1.8rem, 3.5vw, 3rem) !important;
}

.ceo-message-container {
    display: grid;
    grid-template-columns: minmax(260px, 28%) minmax(0, 72%);
    gap: clamp(1.2rem, 2vw, 1.8rem);
    align-items: start;
    max-width: min(2000px, 96vw);
    width: 100%;
    margin: 0 auto;
    margin-bottom: clamp(0.8rem, 1.5vh, 1.2rem);
}

.ceo-photo-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.ceo-message-photo {
    width: 100%;
    height: auto;
    min-height: clamp(400px, 50vh, 500px);
    max-height: clamp(500px, 60vh, 600px);
    aspect-ratio: 3 / 4;
    border-radius: 0;
    object-fit: cover;
    display: block;
    box-shadow: none;
}

.ceo-message-content {
    display: flex;
    flex-direction: column;
}

.ceo-message-text {
    background: white;
    padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.8rem, 2.5vw, 2.2rem) clamp(1rem, 1.5vw, 1.3rem) clamp(1.8rem, 2.5vw, 2.2rem);
    border-radius: 10px;
    line-height: 1.7;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: #333;
    border: 1px solid #e0e0e0;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: left;
    min-width: 0;
    width: 100%;
    margin-bottom: 0;
}

.ceo-message-text p {
    margin-bottom: clamp(1.2rem, 2vh, 1.6rem);
    color: #333;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
    text-indent: 0;
    line-height: 1.7;
    text-align: left;
}

.ceo-message-text p:first-of-type {
    margin-top: 0;
}

.ceo-message-text p:last-of-type {
    margin-bottom: 0;
}

.ceo-signature {
    text-align: right;
    margin-top: clamp(0.8rem, 1.5vh, 1.2rem);
    padding-top: clamp(0.8rem, 1.5vh, 1.2rem);
    border-top: 2px solid #e0e0e0;
    margin-bottom: 0;
}

.ceo-signature span {
    font-weight: 700;
    color: #1f2a63;
    font-size: 1.3rem;
}

/* Organization Chart - Modern Grid Design */
.organization-chart-grid {
    max-width: min(1000px, 85vw);
    margin: 0 auto;
    margin-bottom: 0;
    background: white;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(0.5rem, 1vh, 0.8rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.org-header-grid {
    text-align: center;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    padding-bottom: clamp(0.5rem, 1vw, 0.7rem);
    border-bottom: solid 1px #e1e1e1;
}

.org-company-name-grid {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: clamp(0.3rem, 0.6vw, 0.5rem);
    letter-spacing: -0.02em;
}

.org-company-info-grid {
    font-size: clamp(0.65rem, 0.9vw, 0.75rem);
    color: #636363;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.org-ceo-section-grid {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
}

.org-ceo-card-grid {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: clamp(0.8rem, 1.8vw, 1.2rem) clamp(1.8rem, 3.5vw, 2.5rem);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.org-ceo-card-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.org-ceo-card-grid:hover::before {
    opacity: 0;
}

.org-ceo-card-grid:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.org-ceo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: clamp(0.55rem, 0.8vw, 0.65rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: clamp(0.3rem, 0.6vw, 0.5rem);
    backdrop-filter: blur(10px);
}

.org-ceo-name-grid {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    font-weight: 700;
    margin-bottom: clamp(0.25rem, 0.5vw, 0.4rem);
    letter-spacing: -0.02em;
}

.org-ceo-role {
    font-size: clamp(0.65rem, 0.95vw, 0.75rem);
    opacity: 0.9;
    letter-spacing: -0.01em;
}

.org-dept-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.7rem, 1.5vw, 1rem);
}

.org-dept-card-grid {
    background: white;
    border-radius: 8px;
    padding: clamp(0.7rem, 1.5vw, 1rem);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #e1e1e1;
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.org-dept-card-grid.org-dept-direct-grid {
    border-top: 3px solid #f59e0b;
}

.org-dept-card-grid.org-dept-indirect-grid {
    border-top: 3px solid #64748b;
}

.org-dept-header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(0.6rem, 1.2vw, 0.9rem);
    gap: 0.4rem;
    min-width: 0;
    flex-wrap: wrap;
}

.org-dept-header-grid .org-dept-badge-grid {
    flex-basis: auto;
    width: auto;
    align-self: flex-start;
}

/* 영어일 때만 세로 배치 */
body.lang-en .org-dept-header-grid {
    flex-direction: column;
    align-items: flex-start;
}

.org-dept-name-grid {
    font-size: clamp(0.75rem, 1.3vw, 0.9rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    min-width: 0;
    flex: 1 1 auto;
    word-break: normal;
    overflow-wrap: break-word;
}

.org-dept-badge-grid {
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: clamp(0.55rem, 0.75vw, 0.65rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    flex-shrink: 0;
}

.org-dept-badge-grid.org-direct-badge {
    background: #fffbeb;
    color: #d97706;
}

.org-dept-badge-grid.org-indirect-badge {
    background: #f1f5f9;
    color: #475569;
}

.org-dept-count-grid {
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: clamp(0.7rem, 1.5vw, 1rem);
    padding-bottom: clamp(0.6rem, 1.2vw, 0.9rem);
    border-bottom: 1px solid #e1e1e1;
    letter-spacing: -0.03em;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: nowrap;
}

/* 영어일 때 조직도 글씨 크기 조정 */
body.lang-en .org-dept-count-grid {
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
}

body.lang-en .team-count {
    font-size: clamp(0.6rem, 0.85vw, 0.7rem);
}

body.lang-en .team-name {
    font-size: clamp(0.65rem, 0.95vw, 0.75rem);
}

body.lang-en .org-dept-name-grid {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

body.lang-en .org-dept-badge-grid {
    font-size: clamp(0.55rem, 0.8vw, 0.65rem);
    padding: 0.2rem 0.5rem;
}

body.lang-en .org-company-info-grid {
    font-size: clamp(0.7rem, 0.95vw, 0.8rem);
}

body.lang-en .org-ceo-name-grid {
    font-size: clamp(1rem, 2vw, 1.4rem);
}

body.lang-en .org-ceo-role {
    font-size: clamp(0.7rem, 1vw, 0.8rem);
}

.org-teams-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.7rem);
}

.org-team-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.6rem, 1.2vw, 0.8rem);
    border-radius: 6px;
    min-width: 0;
    gap: 0.5rem;
}

.org-team-grid.org-team-direct-grid {
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
}

.org-team-grid.org-team-indirect-grid {
    background: #f8fafc;
    border-left: 3px solid #64748b;
}

.team-name {
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    color: #333;
    font-weight: 600;
    letter-spacing: -0.01em;
    min-width: 0;
    flex: 1;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.team-count {
    font-size: clamp(0.7rem, 0.95vw, 0.8rem);
    color: #636363;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.org-company-header-hierarchical {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
    border-bottom: solid 1px #e1e1e1;
}

.org-company-name-hierarchical {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    letter-spacing: -0.02em;
}

.org-company-info-hierarchical {
    font-size: clamp(0.9rem, 1.2vw, 0.95rem);
    color: #636363;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.org-structure-hierarchical {
    position: relative;
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.org-level-ceo {
    display: flex;
    justify-content: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.org-ceo-card-hierarchical {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(3rem, 6vw, 4rem);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.org-ceo-icon {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.org-ceo-title {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.org-ceo-name {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.org-connector-line {
    width: 2px;
    height: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(180deg, #1a1a1a 0%, transparent 100%);
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    position: relative;
}

.org-connector-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #1a1a1a;
}

.org-level-dept {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    position: relative;
}

.org-dept-card-hierarchical {
    background: white;
    border-radius: 12px;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: solid 1px #e1e1e1;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.org-dept-card-hierarchical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d97706, #f59e0b);
    transform: scaleX(1);
}

.org-dept-card-hierarchical.org-dept-direct-hierarchical {
    border-color: rgba(255, 107, 53, 0.3);
}

.org-dept-card-hierarchical.org-dept-direct-hierarchical::before {
    background: linear-gradient(90deg, #d97706, #f59e0b);
}

.org-dept-card-hierarchical.org-dept-indirect-hierarchical {
    border-color: rgba(71, 85, 105, 0.3);
}

.org-dept-card-hierarchical.org-dept-indirect-hierarchical::before {
    background: linear-gradient(90deg, #475569, #64748b);
}

.org-dept-icon-hierarchical {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.org-dept-name-hierarchical {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    letter-spacing: -0.02em;
}

.org-dept-count-hierarchical {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: #636363;
    font-weight: 600;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    padding-bottom: clamp(0.75rem, 1.5vw, 1rem);
    border-bottom: 1px solid #e1e1e1;
}

.org-teams-hierarchical {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.75rem);
}

.org-team-item-hierarchical {
    padding: clamp(0.6rem, 1.2vw, 0.8rem) clamp(0.75rem, 1.5vw, 1rem);
    font-size: clamp(0.8rem, 1.1vw, 0.85rem);
    color: #333;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #e5e7eb;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-align: left;
}

.org-team-item-hierarchical.org-team-direct-hierarchical {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

.org-team-item-hierarchical.org-team-indirect-hierarchical {
    border-left-color: #64748b;
    background: #f8fafc;
}

.org-legend-hierarchical {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: solid 1px #e1e1e1;
}

.legend-item-hierarchical {
    display: inline-flex;
    align-items: center;
    margin: 0 clamp(1rem, 2vw, 1.5rem);
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    color: #636363;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.legend-dot-hierarchical {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.legend-dot-hierarchical.org-direct-hierarchical {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

.legend-dot-hierarchical.org-indirect-hierarchical {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
}

.org-company-header-modern {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
    border-bottom: solid 1px #e1e1e1;
}

.org-company-name-modern {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    letter-spacing: -0.02em;
}

.org-company-info-modern {
    font-size: clamp(0.9rem, 1.2vw, 0.95rem);
    color: #636363;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.org-ceo-modern {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.org-ceo-box-modern {
    display: inline-block;
    padding: clamp(1rem, 2vw, 1.25rem) clamp(2.5rem, 5vw, 3.5rem);
    background: #1a1a1a;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.01em;
}

.org-departments-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.org-dept-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: solid 1px #e1e1e1;
    display: flex;
    flex-direction: column;
}

.org-dept-modern.org-dept-direct-modern {
    border-color: rgba(255, 107, 53, 0.2);
}

.org-dept-modern.org-dept-indirect-modern {
    border-color: rgba(0, 0, 0, 0.1);
}

.org-dept-header-modern {
    padding: clamp(1rem, 2vw, 1.25rem) clamp(0.75rem, 1.5vw, 1rem);
    text-align: center;
    font-weight: 700;
    color: white;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    letter-spacing: -0.01em;
}

.org-dept-header-modern.org-direct-modern {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

.org-dept-header-modern.org-indirect-modern {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
}

.org-teams-modern {
    padding: clamp(0.75rem, 1.5vw, 1rem);
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    min-height: 120px;
}

.org-team-modern {
    padding: clamp(0.75rem, 1.5vw, 0.9rem) clamp(0.75rem, 1.5vw, 1rem);
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    color: #333;
    background: white;
    border-radius: 6px;
    border-left: 4px solid #e5e7eb;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.org-team-modern.org-team-direct-modern {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

.org-team-modern.org-team-indirect-modern {
    border-left-color: #64748b;
    background: #f8fafc;
}

.org-legend-modern {
    text-align: center;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: solid 1px #e1e1e1;
}

.legend-item-modern {
    display: inline-flex;
    align-items: center;
    margin: 0 clamp(1rem, 2vw, 1.5rem);
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    color: #636363;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.legend-dot-modern {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.legend-dot-modern.org-direct-modern {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

.legend-dot-modern.org-indirect-modern {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
}

/* Vision & Strategy - Simple Design */
.vision-section-simple {
    padding: 5rem 0;
    background: #fafafa;
}

.vision-goal-simple {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #1a1a1a;
}

.goal-label-simple {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.goal-title-simple {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.strategy-section-simple {
    margin-bottom: 3rem;
}

.subsection-title-simple {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding: 1rem 0 1rem 1rem;
    background: white;
    border-radius: 6px;
    border-left: 4px solid #1a1a1a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.strategy-list-simple {
    display: flex;
    gap: 2rem;
}

.strategy-item-simple {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.strategy-num-simple {
    font-size: clamp(1.75rem, 4vw, 4rem);
    font-weight: 700;
    color: #1a1a1a;
    min-width: 60px;
}

.tasks-section-simple {
    margin-top: 3rem;
}

.tasks-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.task-card-simple {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.task-title-simple {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: #1a1a1a;
    margin: -2rem -2rem 1.5rem -2rem;
    padding: 1rem 2rem;
    border-radius: 8px 8px 0 0;
}

.task-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.task-list-simple li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.task-list-simple li:last-child {
    border-bottom: none;
}

.task-list-simple strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.task-detail-simple {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.3rem;
    padding-left: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-content-simple {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .company-info-simple {
        padding: 1.75rem 1.5rem;
    }
    
    .company-info-list li {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0 1rem 0;
    }
    
    .company-info-list li strong {
        width: 100%;
        font-size: 1rem;
    }
    
    .company-info-list li span {
        font-size: 0.9rem;
    }
    
    .org-departments-simple {
        grid-template-columns: 1fr;
    }
    
    .org-departments-modern {
        grid-template-columns: 1fr;
    }
    
    .organization-chart-modern {
        padding: 1.75rem 1.5rem;
    }
    
    .org-company-name-modern {
        font-size: 1.3rem;
    }
    
    .org-company-info-modern {
        font-size: 0.85rem;
    }
    
    .org-ceo-box-modern {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .org-teams-modern {
        min-height: 100px;
    }
    
    .organization-chart-hierarchical {
        padding: 2rem 1.5rem;
    }
    
    .org-level-dept {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .org-ceo-card-hierarchical {
        padding: 1.5rem 2.5rem;
    }
    
    .org-dept-card-hierarchical {
        padding: 1.25rem 1.5rem;
    }
    
    .org-connector-line {
        height: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .organization-chart-grid {
        padding: 2rem 1.5rem;
    }
    
    .org-dept-grid-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .org-ceo-card-grid {
        padding: 1.5rem 2.5rem;
    }
    
    .org-dept-card-grid {
        padding: 1.25rem 1.5rem;
    }
    
    .strategy-list-simple {
        flex-direction: column;
    }
    
    .tasks-grid-simple {
        grid-template-columns: 1fr;
    }
}

/* Footer - 대기업 스타일 통합 디자인 */
.footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 0 0 clamp(0.2rem, 0.4vh, 0.3rem) 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

/* CEO 한마디, 조직도 페이지 - footer 바로 붙이기 */
body:has(.ceo-message-section) .footer,
body:has(.organization-section) .footer {
    margin-top: 0;
}

.footer .container {
    text-align: left;
    position: relative;
}

.footer-logo-section {
    position: absolute;
    top: clamp(0.4rem, 0.8vh, 0.6rem);
    left: clamp(-20px, -2vw, -10px);
    z-index: 2;
}

.footer-logo {
    height: clamp(28px, 3.5vh, 32px);
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

/* Footer Menu Grid */
.footer-menu-grid {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: clamp(0.2rem, 0.4vh, 0.3rem);
    padding-bottom: clamp(0.2rem, 0.4vh, 0.3rem);
    padding-top: 0;
    padding-left: clamp(80px, 10vw, 120px);
    position: relative;
    border-top: none;
    border-bottom: none;
}

.footer-menu-grid::after {
    content: '';
    position: absolute;
    left: clamp(20px, 3vw, 40px);
    right: clamp(20px, 3vw, 40px);
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}


.footer-menu-column {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: clamp(0.3rem, 0.6vh, 0.4rem);
}

.footer-menu-title {
    font-size: clamp(0.75rem, 0.9vw, 0.85rem);
    font-weight: 700;
    color: white;
    margin-bottom: clamp(0.2rem, 0.4vh, 0.3rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(0.6rem, 1.2vw, 0.8rem);
    align-items: center;
}

.footer-menu-list li {
    margin-bottom: 0;
}

.footer-menu-list a {
    color: #999;
    text-decoration: none;
    font-size: clamp(0.75rem, 0.9vw, 0.8rem);
    font-weight: 400;
    display: block;
    padding: 0.2rem 0;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-menu-list a:hover {
    color: white;
}

.contact-info {
    padding: 0.2rem 0;
    color: #999;
    font-size: clamp(0.75rem, 0.9vw, 0.8rem);
    white-space: nowrap;
}

.footer-menu-list li .contact-info {
    padding: 0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: clamp(0.3rem, 0.6vh, 0.5rem);
    background: transparent;
    border: none;
    margin: 0;
}

.footer-bottom p {
    margin: clamp(0.2rem, 0.4vh, 0.3rem) 0;
    font-size: clamp(0.7rem, 0.85vw, 0.75rem);
    font-weight: 400;
    color: #999;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 400;
    color: #999;
}

/* 메인 페이지 스타일 */
main {
    padding-top: 60px;
    min-height: calc(100vh - 200px);
    margin-bottom: 0;
    padding-bottom: 0;
}

/* CEO 한마디, 조직도 페이지 - main 하단 여백 제거 */
body:has(.ceo-message-section) main,
body:has(.organization-section) main {
    margin-bottom: 0;
    padding-bottom: 0;
}


/* 메인 페이지의 main은 padding-top 제거 */
body.main-page > main {
    padding-top: 0;
}

.hero-section {
    position: relative;
    height: calc(100vh - 200px);
    min-height: 500px;
    max-height: calc(100vh - 200px);
    margin-top: 0;
    margin-bottom: 0;
    padding-top: clamp(100px, 15vh, 150px);
    padding-bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(45, 45, 45, 0.85)), url("Main new.png") no-repeat center center/cover;
    background-position: center center;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    will-change: auto;
}

/* 메인 페이지에서 hero-section 다음에 오는 footer가 보이도록 */
body.main-page main {
    position: relative;
    z-index: 1;
}

body.main-page .hero-section {
    z-index: 1;
}

body.main-page .footer {
    position: relative;
    z-index: 100;
    background: #1a1a1a;
    margin-top: 0;
    border-top: none;
}

body.main-page main {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* 메인 페이지 body 배경을 어둡게 (하얀 부분 제거) */
body.main-page {
    background-color: #1a1a1a;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15), transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    padding-top: clamp(40px, 6vh, 60px);
    animation: fadeInUp 1.5s ease-out;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h2 {
    font-size: clamp(2rem, 6vw, 5.5rem);
    font-weight: 800;
    margin: 0;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.04em;
    line-height: 1.35;
    position: relative;
}

.hero-content h2::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6b35, #ffa500, transparent);
    border-radius: 2px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; box-shadow: 0 0 15px rgba(255, 107, 53, 0.5); }
    50% { opacity: 1; box-shadow: 0 0 30px rgba(255, 107, 53, 0.8); }
}

.hero-logo {
    margin-top: 4rem;
    animation: fadeInUp 1.8s ease-out 0.5s backwards;
}

.hero-logo img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 10px 40px rgba(255, 255, 255, 0.4));
    transition: all 0.5s ease;
}

.hero-logo img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 15px 60px rgba(255, 107, 53, 0.8));
    transform: scale(1.05);
}

.intro-section-in-hero {
    position: absolute;
    bottom: 5%;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    animation: fadeInUp 1.5s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffa500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.intro-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.3);
}

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

.intro-card:nth-child(1) { animation-delay: 0.4s; }
.intro-card:nth-child(2) { animation-delay: 0.6s; }
.intro-card:nth-child(3) { animation-delay: 0.8s; }

.intro-card h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.02em;
}

.intro-card p span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    display: block;
    font-weight: 400;
}

/* About 페이지 스타일 */
.page-title {
    background: url("ATES building new.png") no-repeat center center;
    background-size: cover;
    padding: 1rem 0;
    padding-top: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
}

.page-title h2 {
    font-size: clamp(1.75rem, 4vw, 4rem);
    color: white;
    font-weight: 800;
    position: relative;
    z-index: 2;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.page-title .container {
    position: relative;
    z-index: 2;
}

.about-content {
    margin-bottom: 3rem;
}

.profile-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.company-profile, .ceo-profile {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.company-profile:hover, .ceo-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.company-profile h3, .ceo-profile h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #ff6b35;
}

.company-profile table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.company-profile th, .company-profile td {
    border: 1px solid #ddd;
    padding: 0.75rem;
    text-align: left;
    font-size: 0.93rem;
    font-weight: 400;
}

.company-profile th {
    background-color: #f8f9fa;
    width: 30%;
    font-weight: 600;
}

.ceo-details-flex {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-direction: row-reverse;
}

.ceo-profile .ceo-photo {
    width: 220px;
    height: auto;
    border-radius: 5px;
}

.ceo-profile h4 {
    color: #1a1a1a;
    margin-top: 0;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ceo-profile ul {
    list-style: none;
    padding: 0;
}

.ceo-profile li {
    margin-bottom: 0.5rem;
    font-size: 0.93rem;
    font-weight: 400;
    line-height: 1.65;
}

/* CEO 프로필 섹션 - 새로운 디자인 */
.ceo-profile-simple-section {
    padding: 5rem 0 5rem 0;
    background: #fafafa;
    margin-top: 0;
}

.ceo-profile-content-simple {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.ceo-image-simple {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.ceo-photo-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.ceo-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.ceo-photo-main {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    display: block;
}

.ceo-name-badge {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid #ff6b35;
}

.ceo-name-badge h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.ceo-name-badge p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.ceo-info-simple {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ceo-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.ceo-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.ceo-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ff6b35;
}

.ceo-info-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ceo-info-list-simple li {
    margin: 0;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 1.05rem;
    font-weight: 400;
    color: #444;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

.ceo-career-highlight {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.career-item {
    background: white;
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border-left: 4px solid #ff6b35;
}

.career-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.career-icon {
    font-size: clamp(1.75rem, 4vw, 4rem);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff5f0, #ffe5d6);
    border-radius: 12px;
}

.career-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.career-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    letter-spacing: -0.01em;
}

/* 비전 & 전략 섹션 */
.vision-section {
    background-color: #fff;
    padding: 4rem 0;
}

.vision-goal {
    text-align: center;
    margin-bottom: 3rem;
}

.vision-goal-title, .vision-strategy-title, .vision-tasks-title {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.vision-goal-content {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 2rem 3rem;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
}

.vision-goal-content p {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.03em;
}

.vision-strategy {
    margin-bottom: 3rem;
}

.strategy-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.strategy-box {
    width: 100%;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.02em;
}

.strategy-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.strategy-secondary {
    background: linear-gradient(135deg, #ff6b35, #ffa500);
}

.strategy-arrow {
    font-size: 3rem;
    color: #ff6b35;
    font-weight: 700;
}

.vision-tasks {
    margin-top: 3rem;
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.task-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-top: 4px solid;
}

.task-tech {
    border-top-color: #92400e;
}

.task-standard {
    border-top-color: #fbbf24;
}

.task-auto {
    border-top-color: #3b82f6;
}

.task-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.task-card h4 {
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.task-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.task-card li {
    color: #555;
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 400;
}

.task-card li:last-child {
    margin-bottom: 0;
}

.task-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.2rem;
}

.task-card li small {
    display: block;
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    font-weight: 400;
}

/* 성장 스토리 섹션 */
.growth-story {
    background-color: #fafafa;
    padding: clamp(2rem, 4vw, 3.5rem) 0;
    position: relative;
    z-index: 1;
}

/* Facilities and Product sections - 한 화면에 보이도록 */
.facilities-section,
.product-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(2rem, 4vh, 3.5rem) 0;
}

.facilities-section .section-main-title {
    margin-bottom: clamp(0.3rem, 0.6vh, 0.5rem);
    padding-top: clamp(0.5rem, 1vh, 0.8rem);
    font-size: clamp(1.8rem, 3.5vw, 3rem) !important;
}

.product-section .section-main-title {
    margin-bottom: clamp(0.5rem, 1vh, 0.8rem);
    padding-top: 0;
    font-size: clamp(1.8rem, 3.5vw, 3rem) !important;
}


.section-main-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 4rem);
    color: #1a1a1a;
    margin-bottom: clamp(0.6rem, 1.5vw, 1rem);
    font-weight: 800;
    position: relative;
    padding-bottom: clamp(0.4rem, 0.8vw, 0.7rem);
    letter-spacing: -0.03em;
    line-height: 1.3;
}

.company-overview-simple.business-overview-section .section-main-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem) !important;
}

.section-main-title::after {
    display: none;
}

/* LIG 넥스원 스타일 참고 - 성장 스토리 */
.growth-story .container {
    padding-left: clamp(0.5rem, 1.5vw, 2rem);
    padding-right: clamp(0.5rem, 1.5vw, 2rem);
}

.history-timeline {
    max-width: 100%;
    margin: clamp(2rem, 4vw, 3.5rem) auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.5rem, 1vw, 1rem);
    align-items: stretch;
}

@media (max-width: 1200px) {
    .history-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .history-timeline .history-period:last-child {
        grid-column: 1 / -1;
    }
}

.history-period {
    margin-bottom: 0;
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: stretch;
}

.history-period:last-child {
    margin-bottom: 0;
}

.period-header {
    margin: 0;
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
    padding-bottom: clamp(1.2rem, 2.5vw, 1.8rem);
    border-radius: 12px 12px 0 0;
    position: relative;
    flex-shrink: 0;
    min-height: clamp(180px, 22vw, 240px);
    height: clamp(180px, 22vw, 240px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.period-header::after {
    display: none;
}

/* 첫 번째 기간 (2017-2019) - 초록색 */
.history-period:nth-child(1) .period-header {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-bottom: none;
}

.history-period:nth-child(1) .period-header em,
.history-period:nth-child(1) .period-header strong {
    color: white;
}

/* 두 번째 기간 (2020-2022) - 파란색 */
.history-period:nth-child(2) .period-header {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-bottom: none;
}

.history-period:nth-child(2) .period-header em,
.history-period:nth-child(2) .period-header strong {
    color: white;
}

/* 세 번째 기간 (2023-현재) - 주황색 */
.history-period:nth-child(3) .period-header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c1a 100%);
    border-bottom: none;
}

.history-period:nth-child(3) .period-header em,
.history-period:nth-child(3) .period-header strong {
    color: white;
}

.period-header em {
    display: block;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: clamp(0.5rem, 1vw, 0.7rem);
    font-style: normal;
}

.period-header strong {
    display: block;
    font-size: clamp(1rem, 2vw, 1.4rem);
    line-height: 1.5;
    color: #000;
    font-weight: 700;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    min-height: auto;
    margin-top: 0;
    padding: 0;
}

.history-list {
    list-style: none !important;
    list-style-type: none !important;
    padding: clamp(1rem, 2vw, 1.5rem) !important;
    padding-left: clamp(1rem, 2vw, 1.5rem) !important;
    padding-right: clamp(1rem, 2vw, 1.5rem) !important;
    margin: 0 !important;
    flex: 1;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start;
    min-height: clamp(300px, 35vw, 400px);
}

.history-list li {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    padding: clamp(0.5rem, 1vw, 0.7rem) 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    gap: clamp(0.8rem, 1.5vw, 1.2rem) !important;
    flex-shrink: 0;
    position: relative;
    width: 100%;
}

.history-list li:last-child {
    border-bottom: none !important;
}

.history-list li .year {
    display: block !important;
    flex: 0 0 clamp(60px, 6vw, 75px) !important;
    width: clamp(60px, 6vw, 75px) !important;
    font-size: clamp(0.9rem, 1.1vw, 1rem) !important;
    line-height: 1.6 !important;
    color: #555 !important;
    font-weight: 600 !important;
    text-align: left !important;
    white-space: nowrap !important;
    letter-spacing: -0.01em !important;
    padding: 0 !important;
    margin: 0 !important;
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    float: none !important;
}

.history-list li .date {
    display: block !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    top: 0 !important;
}

.history-list li .date p {
    font-size: clamp(0.88rem, 1.2vw, 0.95rem) !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin: 0 !important;
    padding: 0 !important;
    letter-spacing: -0.01em !important;
    font-weight: 400 !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    display: block !important;
}

.history-list li .date p {
    font-size: clamp(0.88rem, 1.2vw, 0.95rem) !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin: 0 !important;
    letter-spacing: -0.01em !important;
    font-weight: 400 !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    display: block !important;
}

.history-list li .date p.long-text {
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
}

/* 매출 성장 추이 섹션 */
.sales-chart-section {
    padding: clamp(2rem, 4vw, 3.5rem) 0;
    text-align: center;
    background-color: #fafafa;
    margin-top: 0;
}

.chart-header {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.chart-header h3 {
    color: #1f2a63;
    font-size: 1.5rem;
    margin: 0;
}

.chart-header .unit {
    font-size: 0.9rem;
    color: #666;
    margin-left: 0.5rem;
    padding-bottom: 0.1rem;
}

.chart-wrapper {
    position: relative;
    max-width: 1100px;
    height: 380px;
    margin: 0 auto;
    padding: 20px 20px 70px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bar-chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    position: relative;
    padding-top: 40px;
}

.bar-chart-container::after {
    content: '';
    position: absolute;
    bottom: 35px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #333;
    z-index: 1;
}

.chart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 9%;
    position: relative;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 35px;
}

.bar {
    width: 100%;
    transition: height 0.5s ease-in-out;
    border-radius: 0;
    position: relative;
}

.bar-2017 { height: calc(7.7 / 122.6 * 50%); background-color: #a0a0a0; }
.bar-2018 { height: calc(18.0 / 122.6 * 50%); background-color: #a0a0a0; }
.bar-2019 { height: calc(20.4 / 122.6 * 50%); background-color: #a0a0a0; }
.bar-2020 { height: calc(14.4 / 122.6 * 50%); background-color: #6a95ed; }
.bar-2021 { height: calc(21.6 / 122.6 * 50%); background-color: #6a95ed; }
.bar-2022 { height: calc(35.4 / 122.6 * 50%); background-color: #6a95ed; }
.bar-2023 { height: calc(56.6 / 122.6 * 50%); background-color: #1f2a63; }
.bar-2024 { height: calc(87.8 / 122.6 * 50%); background-color: #1f2a63; }
.bar-2025 { height: calc(122.6 / 122.6 * 50%); background-color: #1f2a63; }

.value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2a63;
    position: relative;
    margin-bottom: 5px;
    order: -1;
}

.year {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}

.cagr-box {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(150px, 18vw, 160px);
    height: clamp(150px, 18vw, 160px);
    border-radius: 50%;
    border: 3px solid #6a95ed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    font-size: clamp(0.55rem, 0.7vw, 0.65rem);
    color: #1f2a63;
    text-align: center;
    line-height: 1.4;
    z-index: 3;
}

.cagr-box strong {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: #4a63f7;
    margin-top: 5px;
    font-weight: 700;
}

.section-subtitle-simple {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: #666;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

.sales-chart-wrapper-simple {
    max-width: min(1400px, 95vw);
    margin: 0 auto;
    background: white;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 16px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}



.sales-chart-meta {
    display: flex;
    justify-content: flex-end;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.sales-cagr-pill {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 0.75rem);
    padding: clamp(0.45rem, 0.9vw, 0.65rem) clamp(0.9rem, 1.8vw, 1.2rem);
    border-radius: 999px;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: white;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
    letter-spacing: -0.01em;
}

.sales-cagr-pill strong {
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 700;
}

.sales-chart-visual {
    position: relative;
    padding-top: clamp(0.3rem, 0.5vw, 0.5rem);
    padding-bottom: 0;
    min-height: clamp(380px, 48vw, 480px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: visible;
}

.chart-unit-note {
    position: absolute;
    top: clamp(0.3rem, 0.5vw, 0.5rem);
    left: 0;
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    color: #666;
    z-index: 10;
}

.growth-arrow-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.growth-arrow-path {
    fill: none;
    stroke-width: clamp(10px, 1.2vw, 14px);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cagr-badge-modern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: clamp(3px, 0.4vw, 4px) solid #ff6b35;
    border-radius: 50%;
    width: clamp(150px, 18vw, 160px);
    height: clamp(150px, 18vw, 160px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    z-index: 3;
    padding: clamp(0.6rem, 1.2vw, 1rem);
    pointer-events: none;
}

.cagr-label {
    font-size: clamp(0.65rem, 0.85vw, 0.8rem);
    color: #666;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: clamp(0.25rem, 0.4vw, 0.4rem);
}

.cagr-value {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 700;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: clamp(0.15rem, 0.3vw, 0.25rem);
}

.cagr-period {
    font-size: clamp(0.6rem, 0.75vw, 0.7rem);
    color: #999;
    font-weight: 400;
}

.growth-path {
    position: absolute;
    left: 3%;
    right: 5%;
    top: clamp(1.2rem, 2vw, 2.2rem);
    height: clamp(110px, 12vw, 150px);
    pointer-events: none;
    z-index: 1;
}

.growth-path svg {
    width: 100%;
    height: 100%;
}

.growth-path path {
    fill: none;
    stroke-width: clamp(6px, 0.7vw, 10px);
    stroke-linecap: round;
    stroke: url(#growthGradient);
    filter: drop-shadow(0 8px 20px rgba(249, 115, 22, 0.35));
}

.growth-path .path-arrow {
    fill: url(#growthGradientEnd);
    filter: drop-shadow(0 4px 12px rgba(249, 115, 22, 0.35));
}

.growth-path .cagr-badge {
    fill: rgba(15, 23, 42, 0.95);
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 1;
    filter: drop-shadow(0 6px 18px rgba(15, 23, 42, 0.4));
}

.growth-path text {
    fill: white;
    font-weight: 600;
    font-size: clamp(12px, 1vw, 14px);
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    letter-spacing: 0.05em;
}

.chart-unit-note {
    position: absolute;
    top: clamp(0.3rem, 0.5vw, 0.5rem);
    left: clamp(1rem, 2vw, 1.5rem);
    text-align: left;
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    color: #666;
    letter-spacing: -0.01em;
    z-index: 10;
}

.chart-bars-simple {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(0.5rem, 1.5vw, 1.2rem);
    height: clamp(260px, 35vw, 330px);
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    bottom: clamp(-0.8rem, -1.2vw, -0.5rem);
    left: 0;
    right: 0;
    z-index: 2;
}

.chart-bar-item-simple {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.2rem, 0.5vw, 0.4rem);
    height: 100%;
    position: relative;
}


.bar-simple {
    width: 100%;
    max-width: 60px;
    min-width: 35px;
    min-height: 0 !important;
    max-height: none !important;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    flex-shrink: 0;
}

.bar-value-simple {
    font-size: clamp(0.9rem, 1.2vw, 0.95rem);
    color: #1a1a1a;
    line-height: 1.6;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.bar-year-simple {
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    color: #999;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.chart-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1rem, 2vw, 1.5rem) 0;
    pointer-events: none;
}

.grid-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 0, 0, 0.08) 5%,
        rgba(0, 0, 0, 0.08) 95%,
        transparent 100%);
}

.chart-bars-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: calc(100% - clamp(4rem, 8vw, 6rem));
    padding: clamp(2rem, 4vw, 2.5rem) 0 clamp(3.5rem, 6vw, 4.5rem);
    gap: clamp(0.5rem, 1.5vw, 1.5rem);
    min-height: 300px;
}

.chart-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    gap: 0.75rem;
    min-height: 350px;
}

.bar-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 300px;
}

.bar {
    width: 100%;
    max-width: 70px;
    min-width: 40px;
    min-height: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px 8px 0 0;
    position: relative;
    cursor: default;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.bar-value {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    font-weight: 700;
    color: #1a1a1a;
    background: white;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.bar-year {
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    font-weight: 600;
    color: #666;
    letter-spacing: -0.01em;
}


/* 막대 높이를 정확한 비율로 설정 (2025년 = 100% 기준) */
.bar-simple.bar-2017 { 
    height: 6.28% !important; /* 7.7 / 122.6 */
    background: linear-gradient(180deg, #e5e7eb 0%, #d1d5db 100%); 
}
.bar-simple.bar-2018 { 
    height: 14.68% !important; /* 18.0 / 122.6 */
    background: linear-gradient(180deg, #d1d5db 0%, #9ca3af 100%); 
}
.bar-simple.bar-2019 { 
    height: 16.64% !important; /* 20.4 / 122.6 */
    background: linear-gradient(180deg, #9ca3af 0%, #6b7280 100%); 
}
.bar-simple.bar-2020 { 
    height: 11.75% !important; /* 14.4 / 122.6 */
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%); 
}
.bar-simple.bar-2021 { 
    height: 17.63% !important; /* 21.6 / 122.6 */
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%); 
}
.bar-simple.bar-2022 { 
    height: 28.87% !important; /* 35.4 / 122.6 */
    background: linear-gradient(180deg, #fb923c 0%, #f97316 100%); 
}
.bar-simple.bar-2023 { 
    height: 46.17% !important; /* 56.6 / 122.6 */
    background: linear-gradient(180deg, #f97316 0%, #ea580c 100%); 
}
.bar-simple.bar-2024 { 
    height: 71.62% !important; /* 87.8 / 122.6 */
    background: linear-gradient(180deg, #ea580c 0%, #dc2626 100%); 
}
.bar-simple.bar-2025 { 
    height: 100% !important; /* 122.6 / 122.6 */
    background: linear-gradient(180deg, #ff6b35 0%, #dc2626 100%); 
}

.chart-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    border-radius: 18px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b35, #ff8c1a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-card.highlight {
    background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
    border: 2px solid rgba(255, 107, 53, 0.25);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.15);
}

.stat-card.highlight::before {
    opacity: 1;
}

.stat-label {
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    color: #666;
    font-weight: 600;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: -0.01em;
}

.stat-value {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    letter-spacing: -0.04em;
}

.stat-card.highlight .stat-value {
    background: linear-gradient(135deg, #ff6b35, #ff8c1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-unit {
    font-size: 0.5em;
    font-weight: 600;
    color: #999;
    margin-left: 0.2em;
}

.stat-period {
    font-size: clamp(0.8rem, 1.1vw, 0.95rem);
    color: #999;
    font-weight: 400;
    margin-top: clamp(0.5rem, 1vw, 0.75rem);
}


/* 사업장 소개 섹션 */
.location-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.location-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.7;
}

.location-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 2rem;
    align-items: start;
}

.location-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-text h3 {
    color: #1a1a1a;
    font-size: 1.45rem;
    line-height: 1.6;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.location-maps {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.map-combined {
    width: 80%;
    max-width: 480px;
    height: auto;
}

.location-right {
    width: 100%;
}

.facility-box {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.facility-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(255, 107, 53, 0.18);
}

.facility-header {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 1.2rem;
    text-align: center;
    border-bottom: 2px solid #ff6b35;
}

.facility-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.facility-main {
    background-color: #e8f0f8;
}

.facility-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.facility-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.facility-basic-info {
    width: 100%;
    border-collapse: collapse;
}

.facility-basic-info th,
.facility-basic-info td {
    border: 1px solid #ccc;
    padding: 0.75rem;
    text-align: left;
    background-color: white;
    font-size: 0.9rem;
    font-weight: 400;
}

.facility-basic-info th {
    background-color: #f0f4f8;
    font-weight: 600;
    width: 25%;
    vertical-align: middle;
}

.product-capacity-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.product-capacity-table thead {
    background-color: #1f2a63;
    color: white;
}

.product-capacity-table th {
    padding: 0.75rem;
    text-align: center;
    font-weight: 700;
    border: 1px solid #1f2a63;
    font-size: 0.93rem;
    letter-spacing: -0.01em;
}

.product-capacity-table tbody td {
    padding: 0.75rem;
    text-align: center;
    background-color: white;
    border: 1px solid #ccc;
    font-size: 0.9rem;
    font-weight: 400;
}

.product-capacity-table tbody tr:nth-child(odd) td {
    background-color: #f8f9fa;
}

/* Product 페이지 스타일 - Modern */
.business-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.2rem, 2vw, 1.8rem);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    grid-auto-rows: 1fr;
    align-items: stretch;
    justify-items: stretch;
    justify-content: center;
}

@media (max-width: 1200px) {
    .business-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-overview-clean {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facility-detail-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .business-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-items-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facility-detail-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-overview-clean {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-items-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .facility-detail-grid-new {
        grid-template-columns: 1fr;
    }
    
    .facilities-overview-clean {
        grid-template-columns: 1fr;
    }
    
    .business-grid-modern {
        grid-template-columns: 1fr;
    }
}

.business-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    height: 100%;
    position: relative;
    min-height: clamp(380px, 45vw, 480px);
}

.business-card-modern[data-scroll-to="aviation"]::before {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.85) 0%, rgba(59, 130, 246, 0.75) 100%);
}

.business-card-modern[data-scroll-to="defense"]::before {
    background: linear-gradient(180deg, rgba(5, 150, 105, 0.85) 0%, rgba(16, 185, 129, 0.75) 100%);
}

.business-card-modern[data-scroll-to="rotating"]::before {
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.85) 0%, rgba(239, 68, 68, 0.75) 100%);
}

.business-card-modern[data-scroll-to="other"]::before {
    background: linear-gradient(180deg, rgba(217, 119, 6, 0.85) 0%, rgba(245, 158, 11, 0.75) 100%);
}
.business-card-modern.business-card-cadcam::before {
    background: linear-gradient(180deg, rgba(180, 83, 9, 0.85) 0%, rgba(217, 119, 6, 0.75) 100%);
}

.business-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.business-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.12);
}

.business-card-modern:hover::before {
    opacity: 1;
}

.business-card-header-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 2;
    border: none;
}

.business-card-header-modern h3 {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.business-card-image-modern {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: #f8fafc;
    border-radius: 0;
    margin: 0;
}

.business-card-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 75%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.business-card-modern:hover .business-card-image-modern img {
    transform: scale(1.1);
}

.business-card-image-modern.business-card-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px;
}

.business-card-image-modern.business-card-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 하단 두 박스를 왼쪽으로 배치 */
.business-card-modern[data-scroll-to="other"] {
    grid-column: 1;
}

.business-card-modern.business-card-cadcam {
    grid-column: 2;
}

.business-card-content-modern {
    position: absolute;
    bottom: clamp(4.5rem, 6vw, 5.5rem);
    left: 0;
    right: 0;
    padding: 0 clamp(1.5rem, 2.5vw, 2rem);
    background-color: transparent;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.business-card-modern:hover .business-card-content-modern {
    opacity: 1;
    transform: translateY(0);
}

.business-card-content-modern p {
    margin: 0;
    color: white;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.business-overview-section {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

#aviation {
    margin-top: clamp(2rem, 3vw, 3rem);
    scroll-margin-top: 180px;
    padding-top: 40px;
}

#defense {
    margin-top: clamp(2rem, 3vw, 3rem);
    scroll-margin-top: 180px;
    padding-top: 40px;
}

#rotating {
    margin-top: clamp(2rem, 3vw, 3rem);
    scroll-margin-top: 180px;
    padding-top: 40px;
}

#other {
    margin-top: clamp(2rem, 3vw, 3rem);
    margin-bottom: clamp(2rem, 3vw, 3rem);
    padding-bottom: clamp(2rem, 3vw, 3rem);
    scroll-margin-top: 180px;
    padding-top: 40px;
}

.product-carousel-wrapper {
    position: relative;
    margin-top: clamp(1.2rem, 2.4vw, 1.6rem);
    padding: 0 clamp(2rem, 4vw, 3rem);
    box-sizing: border-box;
}

.product-items-grid-modern {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(0.6rem, 1vw, 0.8rem);
    margin-top: clamp(0.8rem, 1.5vw, 1.2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}


.product-item-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.product-item-modern img {
    width: 100%;
    height: clamp(100px, 12vw, 120px);
    object-fit: contain;
    display: block;
    background-color: #f8fafc;
    padding: clamp(0.4rem, 0.8vw, 0.6rem);
}

.product-info-modern {
    padding: clamp(0.6rem, 1.2vw, 0.9rem);
}

.product-info-modern h4 {
    color: #1a1a1a;
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    font-weight: 700;
    margin: 0 0 clamp(0.3rem, 0.6vw, 0.5rem) 0;
    letter-spacing: -0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.product-detail-modern {
    color: #636363;
    font-size: clamp(0.65rem, 0.85vw, 0.75rem);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.01em;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Facilities 페이지 스타일 - Clean Design */
.facilities-overview-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.45rem, 0.8vw, 0.65rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-left: -clamp(0.4rem, 0.8vw, 0.8rem);
    margin-right: -clamp(0.4rem, 0.8vw, 0.8rem);
    padding: 0 clamp(0.4rem, 0.8vw, 0.8rem);
    grid-auto-rows: 1fr;
    align-items: stretch;
    justify-content: center;
}

.facility-category-clean {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    min-height: clamp(190px, 22vw, 240px);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.facility-category-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.facility-category-clean:nth-child(6n+1)::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.facility-category-clean:nth-child(6n+2)::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.facility-category-clean:nth-child(6n+3)::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.facility-category-clean:nth-child(6n+4)::before {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.facility-category-clean:nth-child(6n+5)::before {
    background: linear-gradient(90deg, #ec4899, #f472b6);
}

.facility-category-clean:nth-child(6n)::before {
    background: linear-gradient(90deg, #eab308, #fde047);
}

.facility-category-clean:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.facility-category-header-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1.3rem, 2.5vw, 2rem);
    padding-bottom: clamp(0.8rem, 1.2vw, 1rem);
    margin-bottom: clamp(0.8rem, 1.2vw, 1rem);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.facility-category-header-clean h3 {
    margin: 0;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.facility-count {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    font-weight: 600;
    color: #4b5563;
    background: #f3f6fb;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    letter-spacing: -0.01em;
}

.facility-list-clean {
    list-style: none;
    padding: 0 clamp(1.3rem, 2.5vw, 2rem) clamp(1.3rem, 2.5vw, 2rem);
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.facility-list-clean li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.4rem, 0.6vw, 0.5rem) 0;
    border-bottom: solid 1px #eef0f2;
    flex: none;
}

.facility-list-clean li:last-child {
    border-bottom: none;
}

.facility-list-clean li span {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: #6b7280;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.facility-list-clean li strong {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.01em;
}

.facility-logos-clean {
    margin: clamp(0.3rem, 0.6vw, 0.5rem) auto 0;
    text-align: center;
    background: white;
    padding: clamp(0.3rem, 0.6vw, 0.5rem);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: min(1300px, 100%);
}

.facility-logos-clean img {
    width: 100%;
    height: auto;
    max-height: clamp(120px, 15vw, 180px);
    object-fit: contain;
    display: block;
    user-select: none;
    pointer-events: none;
    position: relative;
}

.facility-logo-img {
    cursor: default;
    position: relative;
}


.facility-subsection-title-clean {
    color: #1a1a1a;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2rem) 0;
    padding-bottom: clamp(0.75rem, 1.5vw, 1rem);
    letter-spacing: -0.02em;
}

.facility-subsection-title-clean:first-of-type {
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

/* Facility Detail Cards - New Design */
.facility-carousel-wrapper {
    position: relative;
    margin-top: clamp(1.2rem, 2.4vw, 1.6rem);
    padding: 0 clamp(1.2rem, 2.5vw, 2rem);
    box-sizing: border-box;
}

.facility-detail-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(0.4rem, 0.8vw, 0.6rem);
    margin-top: clamp(0.8rem, 1.5vw, 1.2rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}



.facility-detail-card-new {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.carousel-btn:hover {
    background: #f8fafc;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: clamp(0.5rem, 1vw, 1rem);
}

.carousel-btn-next {
    right: clamp(0.5rem, 1vw, 1rem);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.facility-card-image-wrapper {
    width: 100%;
    height: clamp(150px, 20vw, 200px);
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.2rem, 0.4vw, 0.35rem);
    border-bottom: solid 1px #e1e1e1;
}

.facility-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.facility-card-content {
    padding: clamp(0.3rem, 0.6vw, 0.5rem);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.facility-card-title {
    font-size: clamp(0.6rem, 0.8vw, 0.7rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 clamp(0.25rem, 0.5vw, 0.4rem) 0;
    padding-bottom: clamp(0.25rem, 0.5vw, 0.4rem);
    border-bottom: solid 1px #e1e1e1;
    letter-spacing: -0.02em;
    line-height: 1.3;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: none;
}

.facility-spec-list {
    display: flex;
    flex-direction: column;
    gap: clamp(0.15rem, 0.3vw, 0.25rem);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(0.25rem, 0.5vw, 0.4rem);
    padding: clamp(0.2rem, 0.4vw, 0.3rem) 0;
    border-bottom: solid 1px #e1e1e1;
}

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

.spec-item-full {
    flex-direction: column;
    align-items: flex-start;
}

.spec-label {
    font-size: clamp(0.6rem, 0.75vw, 0.65rem);
    font-weight: 600;
    color: #1a1a1a;
    flex-shrink: 0;
    min-width: clamp(50px, 7vw, 65px);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.spec-value {
    font-size: clamp(0.55rem, 0.7vw, 0.65rem);
    color: #636363;
    line-height: 1.4;
    letter-spacing: -0.01em;
    flex: 1;
    text-align: left;
    word-break: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
    min-width: 0;
    max-width: 100%;
    display: block;
}

.spec-item:not(.spec-item-full) .spec-value {
    word-break: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
    font-size: clamp(0.55rem, 0.7vw, 0.65rem);
    min-width: 0;
    flex-shrink: 1;
}

.spec-item-full .spec-value {
    text-align: left;
    width: 100%;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.spec-item-full .spec-value > div {
    margin-bottom: clamp(0.08rem, 0.15vw, 0.15rem);
    line-height: 1.25;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.spec-item-full .spec-value > div:last-child {
    margin-bottom: 0;
}

.spec-item-full .spec-value > div:has(br) {
    white-space: pre-line;
}

body.lang-en .spec-item-full .spec-value > div:has(br) {
    white-space: pre-line;
}

.facility-logos {
    margin-top: 2rem;
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.facility-logos img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    transition: opacity 0.3s ease;
}

.facility-logos img:hover {
    opacity: 0.9;
}

.facility-logos map area {
    cursor: pointer;
    outline: none;
}

.facility-details-section {
    padding: 4rem 0;
    background-color: #fff;
}

.facility-subsection-title {
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 1rem;
    position: relative;
    letter-spacing: -0.03em;
}

.facility-subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ffa500);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.facility-subsection-title:first-of-type {
    margin-top: 2rem;
}

.facility-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.facility-detail-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.facility-detail-card img {
    width: 100%;
    max-height: 150px;
    height: auto;
    object-fit: contain;
    background-color: #f8f9fa;
    padding: 10px;
}

.facility-detail-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 1.2rem !important;
}

.facility-spec-table {
    padding: 0;
}

.spec-header {
    background-color: #6BA3D4;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.spec-header-processing {
    background-color: #6BA3D4;
}

.spec-header-measuring {
    background-color: #7FB85E;
}

.facility-spec-table table {
    width: 100%;
    border-collapse: collapse;
}

.facility-spec-table th,
.facility-spec-table td {
    border: 1px solid #ddd;
    padding: 0.75rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 400;
}

.facility-spec-table th {
    background-color: #f0f4f8;
    font-weight: 600;
    width: 25%;
}

.facility-spec-table td {
    background-color: white;
}

/* Contact 페이지 스타일 */
.contact-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card, .contact-map-card, .inquiry-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.contact-info-card:hover, .contact-map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.contact-info-card h3, .contact-map-card h3, .inquiry-form-card h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #ff6b35;
    letter-spacing: -0.02em;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #ffa500);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.contact-details h4 {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.contact-details p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.map-container {
    text-align: center;
}

.contact-map {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.map-desc {
    color: #666;
    font-size: 0.93rem;
    font-weight: 500;
}

.inquiry-form-card {
    grid-column: 1 / -1;
}

.form-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Pretendard', sans-serif;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #ff6b35, #ffa500);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    letter-spacing: -0.02em;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* 반응형 */
/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h2 {
        font-size: 4rem;
    }
    
    .hero-content h2::after {
        width: 200px;
        height: 5px;
        bottom: -40px;
    }
    
    .hero-logo img {
        height: 150px;
    }
}

/* Tablet & Small Desktop */
@media (max-width: 1024px) {
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .hero-content h2::after {
        width: 120px;
        height: 3px;
        bottom: -25px;
    }
    
    .hero-logo img {
        height: 100px;
    }
    
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav > ul {
        gap: 2.5rem;
    }
    
    .nav > ul > li {
        width: auto;
        min-width: 75px;
    }
    
    .nav a {
        font-size: 0.9rem;
    }
    
    .header-top {
        gap: 1rem;
    }
    
    .header .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .ceo-message-container {
        grid-template-columns: 320px 1fr;
        gap: clamp(2.5rem, 5vw, 4rem);
    }
    
    .ceo-photo-card {
        padding: 1.25rem;
    }
    
    .ceo-message-text {
        padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
    }
    
    .ceo-message-text p {
        margin-bottom: 1.3rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
        padding: 0 20px;
    }
    
    .hero-content h2::after {
        width: 100px;
        height: 3px;
        bottom: -20px;
    }
    
    .hero-logo {
        margin-top: 3rem;
    }
    
    .hero-logo img {
        height: 80px;
    }
    
    .company-profile h3, .ceo-profile h3 {
        font-size: 1.3rem;
    }
    
    .profile-container {
        flex-direction: column;
    }
    
    .ceo-profile-content-simple {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .ceo-photo-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .ceo-name-badge h3 {
        font-size: 1.5rem;
    }
    
    .ceo-name-badge p {
        font-size: 1rem;
    }
    
    .ceo-info-card {
        padding: 2rem 1.5rem;
    }
    
    .ceo-info-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
    
    .info-value {
        font-size: 1rem;
    }
    
    .career-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .career-icon {
        margin: 0 auto;
    }
    
    .career-content h4 {
        font-size: 1.05rem;
        text-align: center;
    }
    
    .career-content p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .growth-timeline-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .timeline-column {
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .timeline-header {
        padding: 1.5rem 1.25rem;
        font-size: 1.05rem;
        min-height: 80px;
    }
    
    .timeline-content {
        padding: 1.75rem 1.5rem;
    }
    
    .timeline-list li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        padding-left: 1.25rem;
    }
    
    .section-main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .section-main-title::after {
        width: 80px;
    }
    
    .chart-header {
        justify-content: center;
        padding-left: 0;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .chart-header h3 {
        font-size: 2rem;
        padding-bottom: 1rem;
    }
    
    .chart-header h3::after {
        width: 80px;
    }
    
    .chart-header .unit {
        padding-bottom: 0;
    }
    
    .chart-wrapper {
        height: auto;
        padding: 2rem 1.5rem 4rem;
        max-width: 100%;
    }
    
    .bar-chart-container {
        flex-wrap: wrap;
        height: auto;
        position: static;
        padding-top: 30px;
        gap: 1rem;
        justify-content: center;
        padding-bottom: 0;
    }
    
    .chart-item {
        width: 28%;
        margin-bottom: 50px;
        min-width: 80px;
    }
    
    .value {
        position: static;
        margin-bottom: 8px;
        font-size: 1rem;
    }
    
    .sales-chart-section .year {
        bottom: -25px;
        font-size: 0.85rem;
    }
    
    .sales-chart-wrapper-simple {
        padding: 1.75rem 1.5rem;
    }
    
    .chart-info-simple {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .chart-bars-simple {
        height: 280px;
        gap: 0.4rem;
        padding-bottom: 2.5rem;
    }
    
    .bar-simple {
        max-width: 30px;
        min-width: 25px;
    }
    
    .bar-value-simple {
        font-size: 0.85rem;
    }
    
    .bar-year-simple {
        font-size: 0.75rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .growth-path {
        display: none;
    }
    
    .sales-chart-section {
        padding: 3.5rem 0;
    }
    
    .growth-story {
        padding: 3.5rem 0;
    }
    
    .history-timeline {
        padding: 0 1.5rem;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .history-period {
        margin-bottom: 0;
    }
    
    .period-header em {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .period-header strong {
        font-size: 1.8rem;
    }
    
    .history-list li {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: clamp(0.8rem, 1.5vw, 1.2rem) !important;
    }
    
    .history-list li .year {
        flex: 0 0 auto !important;
        width: clamp(60px, 6vw, 75px) !important;
        font-size: 1rem !important;
    }
    
    .history-list li .date {
        flex: 1 1 auto !important;
    }
    
    .facilities-overview-clean {
        grid-template-columns: 1fr;
    }
    
    .business-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .product-items-grid-modern {
        gap: clamp(0.6rem, 1.2vw, 0.8rem);
    }
    
    .product-item-modern {
        flex: 0 0 calc(100% - clamp(0.5rem, 1vw, 0.6rem)); /* 1 card on mobile */
    }
    
    .product-carousel-wrapper {
        padding: 0 clamp(1rem, 2vw, 1.5rem);
    }
    
    .facility-detail-grid-clean {
        grid-template-columns: 1fr;
    }
    
    .facility-detail-grid-new {
        gap: clamp(1rem, 2vw, 1.2rem);
    }
    
    .facility-detail-card-new {
        flex: 0 0 calc(100% - clamp(0.5rem, 1vw, 0.6rem));
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .facility-carousel-wrapper {
        padding: 0 clamp(1rem, 2vw, 1.5rem);
    }
    
    .carousel-btn-prev {
        left: clamp(0.25rem, 0.5vw, 0.5rem);
    }
    
    .carousel-btn-next {
        right: clamp(0.25rem, 0.5vw, 0.5rem);
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .facility-card-image-wrapper {
        height: 160px;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
    
    .spec-label {
        min-width: auto;
    }
    
    .spec-value {
        text-align: left;
    }
    
    .facility-category-content-modern {
        min-height: 150px;
    }
    
    .business-card-image-modern {
        height: 200px;
    }
    
    .history-list li .date em {
        width: auto;
        text-align: left;
        font-size: 0.9rem;
    }
    
    .history-list li .date p {
        font-size: 0.9rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-items-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .facility-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .product-items-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facility-detail-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-title h2 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tasks-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-goal-content p {
        font-size: 1.5rem;
    }
    
    .strategy-box {
        font-size: 1.1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-section {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-content h2::after {
        width: 80px;
        height: 2px;
        bottom: -15px;
    }
    
    .hero-logo {
        margin-top: 2rem;
    }
    
    .hero-logo img {
        height: 60px;
    }
    
    .section-main-title {
        font-size: 1.6rem;
    }
    
    .nav > ul {
        gap: 2rem;
    }
    
    .nav > ul > li {
        width: 80px;
    }
    
    .nav a {
        font-size: 0.85rem;
    }
    
    .header .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .ceo-message-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .ceo-photo-card {
        max-width: 400px;
        margin: 0 auto;
        padding: 1.25rem;
    }
    
    .ceo-message-text {
        padding: clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2rem);
        font-size: clamp(0.9rem, 2vw, 1rem);
        line-height: 1.85;
    }
    
    .ceo-message-text p {
        margin-bottom: 1.3rem;
        line-height: 1.85;
    }
    
    .ceo-signature {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .business-card-header h3 {
        font-size: 1.08rem;
    }
    
    .product-category-title {
        font-size: 1.6rem;
    }
    
    .facility-subsection-title {
        font-size: 1.5rem;
    }
    
    .company-profile h3, .ceo-profile h3 {
        font-size: 1.2rem;
    }
    
    .page-title {
        padding: 0.8rem 0;
        padding-top: 1rem;
    }
    
    .page-title h2 {
        font-size: 1.6rem;
    }
    
    .footer {
        padding: 0.8rem 0;
    }
}

/* ========================================
   각 페이지별 맞춤 디자인 스타일
   ======================================== */

/* COMPANY 페이지 - 신뢰성과 전문성 강조 */
body.company-page {
    --company-primary: #1e3a8a;
    --company-secondary: #3b82f6;
    --company-accent: #dbeafe;
}

body.company-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                url("ATES building new.png") center/cover;
    color: white;
    padding: 1rem 0 0.8rem 0;
    position: relative;
    overflow: hidden;
}

/* ATES 소개 페이지 배경 */
body.intro-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                url("ATES building new.png") center/cover no-repeat;
    background-attachment: fixed;
}

body.company-page .page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
    animation: bgScroll 30s linear infinite;
}

@keyframes bgScroll {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

body.company-page .page-title h2 {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 4rem);
    color: white;
}

/* CEO 페이지 전용 스타일 */
body.ceo-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                url('CEO.jpg') center/cover no-repeat;
}

body.ceo-page .ceo-profile {
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

body.ceo-page .ceo-photo {
    border: 5px solid #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease;
}

body.ceo-page .ceo-photo:hover {
    transform: scale(1.05);
}

/* 연혁 페이지 전용 스타일 */
body.history-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                url('map1.png') center/cover no-repeat;
}

body.history-page .timeline-header {
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

body.history-page .timeline-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

body.history-page .sales-chart-section {
    background-color: #fafafa;
    position: relative;
}

body.history-page .bar-chart-container .bar {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 오시는 길 페이지 전용 스타일 */
body.location-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                url('map1.png') center/cover no-repeat;
}

body.location-page .location-section {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
}

body.location-page .facility-box {
    border: 2px solid #3b82f6;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
}

body.location-page .facility-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
}

/* BUSINESS 페이지 - 기술력과 제품 강조 */
body.business-page {
    --business-primary: #059669;
    --business-secondary: #10b981;
    --business-accent: #d1fae5;
}

body.business-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    color: white;
    padding: 1rem 0 0.8rem 0;
    position: relative;
}

body.business-page .page-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
    background-size: 200% 100%;
    animation: slideGold 3s linear infinite;
}

@keyframes slideGold {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

body.business-page .page-title h2 {
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 4rem);
    color: white;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* 항공 엔진 부품 페이지 */
body.aviation-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                url('Product/Engine.jpg') center/cover no-repeat;
}

body.aviation-page .business-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.98);
}

body.aviation-page .business-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #6BA3D4;
    box-shadow: 0 20px 40px rgba(107, 163, 212, 0.3);
}

body.aviation-page .product-item {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
}

body.aviation-page .product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 163, 212, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

body.aviation-page .product-item:hover::before {
    left: 100%;
}

/* 방산 부품 페이지 */
body.defense-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                url('Product/Defence.jpg') center/cover no-repeat;
}

body.defense-page .product-item {
    border: 2px solid #fee2e2;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
}

body.defense-page .product-item:hover {
    border-color: #dc2626;
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.25);
    transform: scale(1.05);
}

/* 회전체 부품 페이지 */
body.rotating-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                url('Product/Rotating.jpg') center/cover no-repeat;
}

body.rotating-page .product-item {
    background: rgba(255, 255, 255, 0.98);
}

body.rotating-page .product-item img {
    transition: transform 0.5s ease;
}

body.rotating-page .product-item:hover img {
    transform: rotate(360deg) scale(1.1);
}

/* 기타 부품 페이지 */
body.other-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                url('Product/CAM.png') center/cover no-repeat;
}

body.other-page .product-item {
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.98), rgba(250, 245, 255, 0.98));
}

/* FACILITIES 페이지 - 첨단 설비 강조 */
body.facilities-page {
    --facilities-primary: #7c3aed;
    --facilities-secondary: #a78bfa;
    --facilities-accent: #ede9fe;
}

body.facilities-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    color: white;
    padding: 1rem 0 0.8rem 0;
    position: relative;
}

body.facilities-page .page-title::before {
    content: '⚙️';
    position: absolute;
    font-size: 10rem;
    opacity: 0.15;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

body.facilities-page .page-title h2 {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 4rem);
    color: white;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* 설비 현황 페이지 */
body.overview-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                url('Facilities/Logos.png') center/cover no-repeat;
}

body.overview-page .facility-category {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
}

body.overview-page .facility-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.2);
}

body.overview-page .facility-logos img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

body.overview-page .facility-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* 가공 설비 페이지 */
body.processing-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                url('Facilities/DMU100.png') center/cover no-repeat;
}

body.processing-page .facility-detail-card {
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.98), rgba(250, 245, 255, 0.98));
    border: 2px solid #e9d5ff;
}

body.processing-page .facility-detail-card img {
    transition: transform 0.5s ease;
    border-radius: 8px;
}

body.processing-page .facility-detail-card:hover img {
    transform: scale(1.1);
}

body.processing-page .spec-header-processing {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
}

/* 측정 설비 페이지 */
body.measuring-page .page-title {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), 
                url('Facilities/HERO8127S.png') center/cover no-repeat;
}

body.measuring-page .facility-detail-card {
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.98), rgba(240, 253, 244, 0.98));
    border: 2px solid #bbf7d0;
}

body.measuring-page .facility-detail-card img {
    border-radius: 8px;
}

body.measuring-page .spec-header-measuring {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

/* ========================================
   ATES 소개 페이지 - 모던 디자인
   ======================================== */

/* 모던 섹션 타이틀 */
.section-title-modern {
    font-size: clamp(1.75rem, 4vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 400;
}

/* Company Overview Split Layout */
.company-overview-split {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

/* Left Side - Company Info Table */
.company-info-side {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    position: relative;
}

.company-info-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 24px 24px 0 0;
}

.info-table-modern {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

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

.info-row:hover {
    background: #f8fafc;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 12px;
}

.info-row-highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 12px;
    border: 2px solid #93c5fd;
}

.info-row-highlight:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 140px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.label-icon {
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    border-radius: 10px;
}

.info-value {
    flex: 1;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.info-detail {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Right Side - Company Image */
.company-image-side {
    position: sticky;
    top: 100px;
}

.company-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.company-image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.company-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.company-image-wrapper:hover .company-main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.company-image-wrapper:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    font-size: 1.3rem;
}

.badge-text {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

/* Company Stats */
.company-stats {
    display: flex;
    margin-top: 1.5rem;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    gap: 1rem;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-number span {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e5e7eb, transparent);
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.info-card-wide {
    grid-column: span 2;
}

.info-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.info-card-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    stroke-width: 2;
}

.info-card-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

.info-card-detail {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Organization Chart Section - Interactive Design */
.organization-chart-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid #e5e7eb;
}

.org-chart-header {
    text-align: center;
    margin-bottom: 4rem;
}

.org-chart-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

.org-chart-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
}

.org-chart-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.org-chart-subtitle {
    font-size: 1rem;
    color: #666;
}

/* Interactive Organization Chart */
.org-chart-interactive {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.org-chart-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #3b82f6);
    background-size: 200% 100%;
    animation: gradientFlow 4s linear infinite;
    border-radius: 24px 24px 0 0;
}

/* Company Header */
.org-company-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.org-company-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.org-company-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.org-company-info strong {
    color: #3b82f6;
    font-size: 1.1rem;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Organization Levels */
.org-level {
    display: flex;
    justify-content: center;
    align-items: center;
}

.org-level-1 {
    margin-bottom: 2rem;
}

.org-level-2 {
    margin-bottom: 2rem;
}

/* Organization Nodes */
.org-node {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    cursor: default;
    position: relative;
}

/* CEO Node */
.org-node-ceo {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 2rem 3rem;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    border: 3px solid white;
    min-width: 250px;
}

.org-node-ceo .org-node-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.org-node-ceo .org-node-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    letter-spacing: 2px;
}

.org-node-ceo .org-node-name {
    font-size: 1.8rem;
    font-weight: 800;
}

/* Department Containers */
.org-branches {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.org-dept-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Department Nodes */
.org-node-dept {
    background: white;
    border: 3px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    position: relative;
}

.org-node-dept .org-node-icon {
    font-size: clamp(1.75rem, 4vw, 4rem);
    margin-bottom: 0.8rem;
}

.org-node-dept .org-node-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.org-node-dept .org-node-count {
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
}

/* 부서별 색상 - 일반관리부서 (녹색) */
.org-dept-management {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #86efac;
}

/* 부서별 색상 - 직접부서 (노란색) */
.org-dept-production {
    background: linear-gradient(135deg, #fef9c3 0%, #fde047 100%);
    border-color: #facc15;
}

/* 부서별 색상 - 간접부서 (주황색) */
.org-dept-quality, .org-dept-tech {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    border-color: #fb923c;
}

/* Team Vertical Layout */
.org-team-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-width: 200px;
}

/* Connectors */
.org-connector-vertical {
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
    margin: 0 auto;
    border-radius: 10px;
}

/* Team Nodes */
.org-node-team {
    background: white;
    border: 2px solid #e5e7eb;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    text-align: center;
}

.org-node-team .org-node-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.org-node-team .org-node-count {
    font-size: 0.85rem;
    font-weight: 600;
}

/* 팀 색상 - 일반관리부서 (녹색 계열) */
.org-team-management {
    background: linear-gradient(to bottom, #f0fdf4, #dcfce7);
    border-color: #86efac;
}

.org-team-management .org-node-count {
    color: #16a34a;
}

/* 팀 색상 - 직접부서 (노란색 계열) */
.org-team-production {
    background: linear-gradient(to bottom, #fefce8, #fef9c3);
    border-color: #fde047;
}

.org-team-production .org-node-count {
    color: #ca8a04;
}

/* 팀 색상 - 간접부서 (주황색 계열) */
.org-team-quality, .org-team-tech {
    background: linear-gradient(to bottom, #fff7ed, #fed7aa);
    border-color: #fdba74;
}

.org-team-quality:hover, .org-team-tech:hover {
    background: linear-gradient(to bottom, #fed7aa, #fdba74);
    border-color: #f97316;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.25);
}

.org-team-quality .org-node-count, .org-team-tech .org-node-count {
    color: #ea580c;
}

/* Legend */
.org-legend {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed #e5e7eb;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

.legend-color {
    width: 40px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.legend-management {
    background: linear-gradient(135deg, #bbf7d0 0%, #86efac 100%);
}

.legend-production {
    background: linear-gradient(135deg, #fde047 0%, #facc15 100%);
}

.legend-indirect {
    background: linear-gradient(135deg, #fdba74 0%, #fb923c 100%);
}

/* Vision Section Modern */
.vision-section-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #dbeafe 100%);
    position: relative;
}

.vision-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233b82f6' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Vision Hero */
.vision-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.vision-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
}

.vision-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vision-hero-title {
    font-size: clamp(1.75rem, 4vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.vision-hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.decoration-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.decoration-circle {
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Strategy Flow Modern */
.strategy-flow-modern {
    margin-bottom: 4rem;
}

.strategy-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.strategy-cards-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.strategy-card-modern {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.strategy-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.strategy-card-1::before {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.strategy-card-2::before {
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
}

.strategy-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(59, 130, 246, 0.2);
}

.strategy-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e0e7ff;
    margin-bottom: 1rem;
    line-height: 1;
}

.strategy-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.strategy-icon {
    font-size: 3rem;
    text-align: right;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.strategy-card-modern:hover .strategy-icon {
    opacity: 1;
    transform: scale(1.2);
}

.strategy-connector {
    width: 50px;
    color: #3b82f6;
    opacity: 0.6;
}

.strategy-connector svg {
    width: 100%;
    height: auto;
}

/* Strategic Tasks Modern */
.strategic-tasks-modern {
    margin-top: 4rem;
}

.tasks-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.task-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
}

.task-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.task-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.task-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.task-icon-tech {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.task-icon-standard {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.task-icon-auto {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.task-card-modern:hover .task-icon {
    transform: scale(1.1) rotate(-5deg);
}

.task-card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.task-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.task-list-modern li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.task-list-modern li:hover {
    background: #eff6ff;
    transform: translateX(5px);
}

.task-bullet {
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0.2rem;
}

.task-list-modern strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.task-list-modern small {
    display: block;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* 공통 향상된 애니메이션 효과 */
.page-title {
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 섹션 등장 애니메이션 */
section {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 호버 시 빛나는 효과 */
.company-profile, .ceo-profile, .business-card, .product-item {
    position: relative;
    overflow: hidden;
}

.company-profile::after, .ceo-profile::after, .business-card::after, 
.product-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.company-profile:hover::after, .ceo-profile:hover::after, .business-card:hover::after,
.product-item:hover::after {
    opacity: 1;
}

/* 모바일 환경에서 배경 이미지 최적화 */
@media (max-width: 768px) {
    /* 모바일에서는 parallax 효과 비활성화 */
    body.intro-page .page-title,
    body.company-page .page-title,
    body.business-page .page-title,
    body.facilities-page .page-title {
        background-attachment: scroll !important;
    }
    
    /* 모바일에서 배경 이미지 가독성 향상 (어두운 오버레이 강화) */
    body.company-page .page-title,
    body.business-page .page-title,
    body.facilities-page .page-title {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                    var(--bg-image, none) center/cover !important;
    }
    
    /* 모바일에서 애니메이션 간소화 (성능 향상) */
    body.company-page .page-title::before,
    body.facilities-page .page-title::before {
        animation: none;
    }
    
    /* 모바일에서 페이지 타이틀 폰트 크기 조정 */
    body.company-page .page-title h2,
    body.business-page .page-title h2,
    body.facilities-page .page-title h2 {
        font-size: clamp(1.75rem, 4vw, 4rem);
    }
    
    /* 모던 디자인 모바일 최적화 */
    .section-title-modern {
        font-size: clamp(1.75rem, 4vw, 4rem);
    }
    
    /* Split Layout 모바일 */
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-info-side {
        padding: 2rem 1.5rem;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1.2rem 0;
    }
    
    .info-label {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .info-value {
        font-size: 0.95rem;
        padding-left: 2.8rem;
    }
    
    .company-image-side {
        position: relative;
        top: 0;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .vision-hero {
        padding: 3rem 1.5rem;
    }
    
    .vision-hero-title {
        font-size: 1.8rem;
    }
    
    .strategy-cards-container {
        flex-direction: column;
    }
    
    .strategy-connector {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .tasks-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .strategy-card-modern {
        max-width: 100%;
    }
    
    /* 조직도 모바일 최적화 */
    .organization-chart-section {
        margin-top: 3rem;
        padding-top: 3rem;
    }
    
    .org-chart-title {
        font-size: 1.5rem;
    }
    
    .org-chart-interactive {
        padding: 2rem 1rem;
    }
    
    .org-node-ceo {
        min-width: 200px;
        padding: 1.5rem 2rem;
    }
    
    .org-node-ceo .org-node-icon {
        font-size: clamp(1.75rem, 4vw, 4rem);
    }
    
    .org-node-ceo .org-node-name {
        font-size: 1.5rem;
    }
    
    .org-company-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .org-company-name {
        font-size: 1.3rem;
    }
    
    .org-company-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .org-branches {
        flex-direction: column;
        gap: 2rem;
    }
    
    .org-dept-container {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .org-node-dept {
        width: 100%;
    }
    
    .org-team-vertical {
        width: 100%;
    }
    
    .org-legend {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .vision-hero-title {
        font-size: 1.6rem;
    }
    
    /* 사이드바 모바일 */
    .sidebar {
        width: 280px;
        max-width: 85vw;
    }
    
    .sidebar-header {
        padding: 1rem 1.25rem;
    }
    
    .sidebar-logo {
        height: 30px;
    }
    
    .sidebar-section a {
        padding: 0.875rem 1.25rem 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    .sidebar-close {
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }
    
    .footer-logo-section {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        height: 32px;
    }
    
    .footer-menu-grid {
        padding-top: 0;
        align-items: center;
    }
    
    .sidebar-close {
        top: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    /* Footer 메뉴 모바일 */
    .footer {
        padding: 1rem 0 0.8rem 0;
    }
    
    .footer-menu-grid {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.8rem;
    }
    
    .footer-menu-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-menu-title {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        padding-top: 0.6rem;
    }
}

/* 저성능 기기 대응 - prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    body.company-page .page-title::before,
    body.facilities-page .page-title::before {
        animation: none;
    }
}