/* ============================================
   2026 Premium Corporate Design
   건우파워텍 - 전문적이고 신뢰감 있는 디자인
   ============================================ */

/* Scroll Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.opacity-0 {
    opacity: 0;
}

/* CSS Variables - Premium Color Palette */
:root {
    --primary-color: #0f172a;
    --primary-dark: #020617;
    --primary-light: #1e293b;
    --accent-color: #3b82f6;
    --accent-hover: #2563eb;
    --secondary-color: #f59e0b;
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --border-color: #e2e8f0;
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* 한국어 단어 단위 줄바꿈 (전역 설정) */
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   Premium Header Styles
   ============================================ */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

/* Top Bar - Premium Design */
.top-bar {
    background: var(--bg-gradient);
    color: white;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    max-height: 200px;
    opacity: 1;
    overflow: hidden;
}

.top-bar.hidden {
    max-height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    border-bottom: none;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.top-bar-item:hover {
    transform: translateX(2px);
}

.top-bar-item i {
    color: var(--secondary-color);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.top-bar-item a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.top-bar-item a:hover {
    color: var(--secondary-color);
}

.language-switcher {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 6px;
}

.lang-btn {
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-weight: 500;
}

.lang-btn.active,
.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Main Navigation - Premium Design */
.main-nav {
    background-color: var(--bg-white);
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.02);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 10px;
    cursor: pointer;
    z-index: 999;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    margin-left: auto;
}

body.menu-open .mobile-menu-toggle {
    z-index: 1002;
    position: fixed;
    right: 340px;
    top: 20px;
}

.mobile-menu-toggle:hover {
    background: var(--primary-color);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle:hover span {
    background: white;
}

.mobile-menu-toggle.active {
    background: var(--primary-color);
}

.mobile-menu-toggle.active span {
    background: white;
}

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

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

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

.nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    border-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.nav-item.active > .nav-link {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    animation: activeMenuFadeIn 0.3s ease-in-out;
}

.nav-item.active > .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px 3px 0 0;
    animation: activeMenuUnderline 0.3s ease-in-out;
}

@keyframes activeMenuFadeIn {
    from {
        background: transparent;
        color: var(--text-dark);
    }
    to {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
        color: var(--primary-color);
    }
}

@keyframes activeMenuUnderline {
    from {
        width: 0;
        left: 50%;
        right: 50%;
    }
    to {
        width: auto;
        left: 18px;
        right: 18px;
    }
}

.dropdown-toggle::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    margin-left: 4px;
    transition: var(--transition);
    border: none;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Premium Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 200px;
    box-shadow: var(--shadow-xl);
    border-radius: 12px;
    padding: 8px;
    border: 1px solid var(--border-color);
    z-index: 1000;
}

/* Desktop Hover Effect */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Hide dropdown by default */
.dropdown-menu {
    display: none;
}

.dropdown-menu li {
    padding: 0;
    list-style: none;
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: var(--text-medium);
    font-size: 14px;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
    text-decoration: none;
}

.dropdown-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--accent-color);
    transform: translateX(4px);
}

/* ============================================
   Premium Hero Section
   ============================================ */

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.hero-slide.active .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 100%);
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 24px;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0.95;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.hero-title strong {
    color: var(--secondary-color);
    display: block;
    margin-top: 12px;
    font-size: 56px;
}

.hero-description {
    font-size: 22px;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: none;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 3;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    pointer-events: all;
    font-size: 18px;
}

.hero-prev:hover,
.hero-next:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background-color: white;
    width: 36px;
    border-radius: 18px;
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Quick Links Section
   ============================================ */

.quick-links-section {
    padding: 40px 0;
    background: var(--bg-white);
    position: relative;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.quick-link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(245, 158, 11, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.1);
    border-color: var(--accent-color);
    color: var(--text-dark);
}

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

.quick-link-card:hover::after {
    opacity: 1;
}

.quick-link-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    margin-bottom: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-link-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.quick-link-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.quick-link-card p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.quick-link-contact {
    cursor: default;
}

.quick-link-contact:hover {
    transform: translateY(-4px);
}

.quick-link-contact .quick-link-arrow {
    display: none;
}

.quick-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition);
    margin-top: auto;
}

.quick-link-card:hover .quick-link-arrow {
    transform: translateX(6px);
    background: var(--accent-hover);
}

/* ============================================
   Company Info Section
   ============================================ */

.company-info-section {
    padding: 80px 0;
    background: var(--bg-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.company-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.company-info-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: 1;
}

.company-info-compact {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.company-stats-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-box-compact {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.stat-box-compact:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

.stat-box-compact .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.stat-box-compact .stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-info-text {
    color: white;
}

.company-info-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.company-info-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

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

.company-info-text .btn:hover {
    background: var(--secondary-color);
    color: white;
}

/* ============================================
   Premium Products Section
   ============================================ */

.products-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

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

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

.section-subtitle-small {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 12px;
    font-weight: 400;
    opacity: 0.7;
    line-height: 1.6;
}

.section-title-simple {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title-simple::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-light);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.product-categories {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--accent-color);
    position: relative;
    letter-spacing: -0.5px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
    z-index: 1;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 16px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.15);
    border-color: var(--accent-color);
}

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

.product-card:hover::after {
    opacity: 1;
}

.product-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-zoom {
    color: white;
    font-size: 28px;
    padding: 18px;
    background: var(--accent-color);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.product-zoom:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--accent-hover);
}

/* 메인 페이지 제품 카드용 */
.product-card .product-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 130px;
    padding: 24px 20px 28px 20px;
}

/* 메인 페이지 제품 카드용 */
.product-card .product-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.product-card .product-info h4 a {
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
}

.product-card .product-info h4 a:hover {
    color: var(--accent-color);
}

/* 메인 페이지 제품 카드용 */
.product-card .product-subtitle {
    font-size: 13px;
    color: var(--text-medium);
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    flex: 1;
    padding-bottom: 8px;
    min-height: 20px;
}

.product-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-color);
    background: transparent;
    border: 1.5px solid var(--accent-color);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 0;
    letter-spacing: 0.02em;
    align-self: flex-start;
}

/* Product Carousel - 부드러운 슬라이드 */
.product-carousel-wrapper {
    position: relative;
    margin-bottom: 20px;
    padding: 0 80px;
}

.product-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.product-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.product-slide {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
}

.product-grid-slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    width: 100%;
    padding: 0 20px;
}

.product-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
    z-index: 10;
}

.product-prev,
.product-next {
    position: absolute;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    pointer-events: all;
    box-shadow: var(--shadow-lg);
    z-index: 11;
}

.product-prev {
    left: 0;
}

.product-next {
    right: 0;
}

.product-prev:hover,
.product-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.product-prev:active,
.product-next:active {
    transform: scale(0.95);
}

/* Product Inquiry CTA */
.product-inquiry-cta {
    text-align: center;
    margin-top: 24px;
    padding: 0;
}

.product-inquiry-cta .cta-text-small {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

.product-inquiry-cta .cta-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.product-inquiry-cta .cta-link:hover {
    color: var(--accent-hover);
    gap: 8px;
}

.product-inquiry-cta .cta-link i {
    font-size: 12px;
    transition: var(--transition);
}

.product-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.product-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-indicator:hover {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

.product-indicator.active {
    background-color: var(--accent-color);
    width: 36px;
    border-radius: 18px;
}

.product-more {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   Premium Services Section
   ============================================ */

.services-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

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

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon::after {
    opacity: 0.3;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.service-card h3 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.service-card h3 a:hover {
    color: var(--accent-color);
}

.service-card > p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.service-contact {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.service-contact p {
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-medium);
    font-weight: 500;
}

.service-contact i {
    color: var(--accent-color);
    font-size: 16px;
}

/* ============================================
   Premium Footer
   ============================================ */

.main-footer {
    background: var(--bg-gradient);
    color: white;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.company-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.company-info {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-stats {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    flex: 1;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -1px;
    line-height: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Back to Top Button - Premium */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-xl);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.3);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Quick Links & Company Info Responsive */
@media (max-width: 991px) {
    .quick-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .company-info-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .company-stats {
        justify-content: space-around;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .container {
        padding: 0 20px;
    }
    
    body.menu-open .mobile-menu-toggle {
        right: calc(320px + 20px);
    }
    
    .hero-section {
        height: 550px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-title strong {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .products-section,
    .services-section {
        padding: 40px 0;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }
    
    .product-grid-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .company-info-compact {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-stats-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-stats {
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 30px;
    }
    
    .footer-stats {
        flex-direction: row;
        gap: 12px;
    }
    
    .stat-item {
        padding: 14px 16px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 12px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* 모바일 드롭다운 메뉴 아코디언 스타일 */
    .nav-menu .dropdown {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu .dropdown-menu {
        position: static !important;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        background: rgba(0, 0, 0, 0.03);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        display: none;
    }
    
    .nav-menu .dropdown.show .dropdown-menu {
        display: block !important;
        max-height: 500px; /* 충분히 큰 값 */
        padding: 8px 0;
    }
    
    .nav-menu .dropdown-menu .dropdown-item {
        padding: 14px 24px 14px 56px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--text-medium);
        font-size: 14px;
        display: block;
        line-height: 1.5;
        position: relative;
    }
    
    .nav-menu .dropdown-menu .dropdown-item.active {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        font-weight: 600;
    }
    
    .nav-menu .dropdown-menu .dropdown-item.active::before {
        content: '▸';
        position: absolute;
        left: 32px;
        color: white;
        font-size: 12px;
    }
    
    .nav-menu .dropdown-menu .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .nav-menu .dropdown-toggle {
        padding: 16px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-menu .dropdown-toggle::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        border: none;
        margin-left: auto;
        transition: transform 0.3s ease;
        font-size: 12px;
    }
    
    .nav-menu .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    /* Mobile Menu Overlay - Hidden by default */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        display: none !important;
        pointer-events: none;
    }
    
    body.menu-open .mobile-menu-overlay {
        display: block !important;
        pointer-events: auto;
    }
    
    /* Hide mobile menu overlay on desktop */
    @media (min-width: 992px) {
        .mobile-menu-overlay {
            display: none !important;
            pointer-events: none;
        }
        
        body.menu-open .mobile-menu-overlay {
            display: none !important;
        }
    }
    
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1000;
        animation: fadeIn 0.3s;
    }
    
    .mobile-menu-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        visibility: hidden;
    }
    
    body.menu-open .mobile-menu-sidebar {
        right: 0;
        visibility: visible;
    }
    
    /* Hide mobile menu sidebar on desktop */
    @media (min-width: 992px) {
        .mobile-menu-sidebar {
            display: none !important;
            visibility: hidden !important;
        }
    }
    
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24px 20px;
        background: var(--bg-gradient);
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .mobile-menu-header img {
        height: 40px;
        width: auto;
    }
    
    .mobile-menu-close {
        background: transparent;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: var(--transition);
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .mobile-nav-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        flex: 1;
    }
    
    .mobile-nav-item {
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-nav-item:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-item > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        color: var(--text-dark);
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        transition: var(--transition);
    }
    
    .mobile-nav-item > a:hover {
        background: var(--bg-light);
    }
    
    .mobile-nav-item.active > a {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(37, 99, 235, 0.08) 100%);
        color: var(--primary-color);
        font-weight: 600;
        border-left: 4px solid var(--primary-color);
        padding-left: 16px;
    }
    
    .mobile-dropdown-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        background: #f8f9fa;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    }
    
    .mobile-dropdown.active .mobile-dropdown-menu {
        max-height: 500px;
        padding: 4px 0;
    }
    
    .mobile-dropdown-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .mobile-dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .mobile-dropdown-menu a {
        display: block;
        padding: 13px 20px 13px 40px;
        font-size: 14px;
        color: var(--text-medium);
        text-decoration: none;
        position: relative;
        transition: var(--transition);
    }
    
    .mobile-dropdown-menu a::before {
        content: '•';
        position: absolute;
        left: 26px;
        color: var(--accent-color);
        font-weight: bold;
        font-size: 16px;
    }
    
    .mobile-dropdown-menu a:hover {
        background: rgba(59, 130, 246, 0.1);
        color: var(--primary-color);
    }
    
    /* Mobile Menu - Sidebar Overlay (Legacy Support) */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1001;
        align-items: stretch;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Mobile Menu Header */
    .nav-menu::before {
        content: '메뉴';
        display: block;
        padding: 24px 20px;
        background: var(--bg-gradient);
        color: white;
        font-size: 20px;
        font-weight: 700;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        justify-content: space-between;
        padding: 18px 20px;
        border-radius: 0;
        font-size: 16px;
        background: white;
        display: flex;
        align-items: center;
    }
    
    .nav-link:hover {
        background: var(--bg-light);
    }
    
    .nav-item.active > .nav-link {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(37, 99, 235, 0.08) 100%);
        color: var(--primary-color);
        font-weight: 600;
        border-left: 4px solid var(--primary-color);
        padding-left: 16px;
    }
    
    .nav-item.active > .nav-link::after {
        display: none;
    }
    
    /* Mobile Dropdown - Accordion Style */
    .dropdown-menu {
        display: block !important;
        position: static;
        box-shadow: none;
        border: none;
        margin: 0;
        padding: 0;
        background: #f8f9fa;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
    }
    
    .dropdown.show .dropdown-menu {
        max-height: 500px;
        padding: 4px 0;
    }
    
    .dropdown-item {
        padding: 13px 20px 13px 40px;
        font-size: 14px;
        border-radius: 0;
        color: var(--text-medium);
        position: relative;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item::before {
        content: '•';
        position: absolute;
        left: 26px;
        color: var(--accent-color);
        font-weight: bold;
        font-size: 16px;
    }
    
    .dropdown-item:hover,
    .dropdown-item:active {
        background: rgba(59, 130, 246, 0.1);
        color: var(--primary-color);
    }
    
    /* Mobile Menu Backdrop */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1000;
        animation: fadeIn 0.3s;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .hero-section {
        height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title strong {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 0;
    }
    
    .hero-controls {
        padding: 0 20px;
    }
    
    .hero-prev,
    .hero-next {
        width: 48px;
        height: 48px;
    }
    
    .products-section,
    .services-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-title-simple {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .section-header-simple {
        margin-bottom: 32px;
    }
    
    .product-categories {
        gap: 60px;
    }
    
    .category-title {
        font-size: 26px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-grid-slide {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-carousel-wrapper {
        padding: 0 50px;
    }
    
    .product-carousel-controls {
        padding: 0 10px;
    }
    
    .product-prev,
    .product-next {
        width: 44px;
        height: 44px;
    }
    
    .company-stats-compact {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .company-info-text h3 {
        font-size: 26px;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .company-actions {
        flex-direction: column;
    }
    
    .company-actions .btn {
        width: 100%;
    }
    
    .nav-actions {
        order: -1;
    }
    
    .lang-switch-btn span {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-card {
        padding: 40px 24px;
    }
    
    .footer-stats {
        flex-direction: row;
        gap: 10px;
    }
    
    .stat-item {
        padding: 12px 14px;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 24px;
    }
    
    .footer-bottom {
        padding-top: 24px;
    }
    
    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 50px;
        height: 50px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        height: 450px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-title strong {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-title-simple {
        font-size: 20px;
    }
    
    .section-header-simple {
        margin-bottom: 24px;
    }
    
    .category-title {
        font-size: 22px;
    }
    
    .product-carousel-wrapper {
        padding: 0 40px;
    }
    
    .product-prev,
    .product-next {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   Company Pages Styles
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: white;
    padding: 30px 0 24px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.page-header-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 0;
}

/* Company Content Section */
.company-content-section {
    padding: 40px 0 80px 0;
    background: var(--bg-light);
    min-height: 600px;
}

.company-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Company Sidebar */
.company-sidebar {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 120px;
}

.sidebar-header {
    padding: 0 24px 24px;
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: 16px;
}

.sidebar-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-menu a i {
    width: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
}

.sidebar-menu li.active a,
.sidebar-menu a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
    border-left-color: var(--accent-color);
}

.sidebar-menu li.active a i,
.sidebar-menu a:hover i {
    color: var(--accent-color);
}

/* Company Main Content */
.company-main-content {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.content-card {
    padding: 40px 80px;
    margin-bottom: 24px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
    /* 한국어 단어 단위 줄바꿈 */
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

/* 게시판이 있는 content-card는 스타일 제거 */
.content-card .board-wrapper {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.content-card:has(.board-wrapper),
.content-card.board-card {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.content-section {
    margin-bottom: 48px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-divider {
    height: 1px;
    background: var(--border-color);
    margin: 48px 0;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-color);
    letter-spacing: -0.5px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.content-image {
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* Management Policy */
.management-policy {
    margin-top: 32px;
}

.policy-statement {
    background: #fff9e6;
    padding: 24px 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
    border: 2px solid #ffd700;
}

.policy-statement p {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.8;
}

.policy-table {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.policy-flow-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 20px;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.policy-flow-table td {
    padding: 0;
    vertical-align: middle;
    text-align: center;
    position: relative;
}

.policy-top-cell {
    padding-bottom: 40px !important;
    position: relative;
}

.policy-top-cell::after {
    content: '↓';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    color: var(--accent-color);
    font-weight: bold;
    line-height: 1;
}

.policy-left-cell,
.policy-right-cell {
    width: 35%;
    padding: 0 20px !important;
    position: relative;
}

.policy-left-cell::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--accent-color);
    font-weight: bold;
    z-index: 10;
}

.policy-right-cell::before {
    content: '←';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--accent-color);
    font-weight: bold;
    z-index: 10;
}

.policy-center-cell {
    width: 30%;
    padding: 0 20px !important;
}

.policy-cell-content {
    background: #4a4a4a;
    border: 3px solid #8a8a8a;
    border-radius: 10px;
    padding: 24px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-cell-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.policy-cell-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
    text-align: center;
}

.policy-cell-desc {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    background: white;
    padding: 12px 14px;
    border-radius: 6px;
    border: 2px solid #8a8a8a;
    width: 100%;
    text-align: center;
}

.policy-center-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2563eb 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
    margin: 0 auto;
    border: 4px solid white;
    position: relative;
    z-index: 5;
}

.diagram-center {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.center-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.diagram-node {
    position: absolute;
}

.diagram-node.customer-service {
    left: 11%;
    transform: translate(-50%, -100%);
    z-index: 15;
}

.diagram-node.breaker-as {
    left: 10%;
    top: 80%;
    transform: translateY(-50%);
}

.diagram-node.ship-as {
    right: 10%;
    top: 80%;
    transform: translateY(-50%);
}

.node-box {
    background: #4a4a4a;
    border: 2px solid #8a8a8a;
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 200px;
    text-align: center;
}

.node-box-main {
    position: relative;
    padding-bottom: 12px;
}

.node-box-inner {
    margin-top: 12px;
    padding: 10px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #8a8a8a;
}

.node-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 0;
}

.node-desc {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

/* 자동 화살표 생성 - 고객 서비스 센터 왼쪽 중앙에서 중저압 차단기 A/S 위 중앙으로 */
.diagram-node.customer-service[data-arrow-to-left]::before {
    content: '';
    position: absolute;
    top: 130%;
    left: 0%;
    width: 2px;
    height: 200px;
    background: #8a8a8a;
    transform-origin: top center;
    transform: translateY(-50%) rotate(30deg);
    z-index: 5;
}

.diagram-node.customer-service[data-arrow-to-left]::after {
    content: '';
    position: absolute;
    top: 40%;
    left: -52%;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #8a8a8a;
    transform-origin: top center;
    transform: translateY(-50%) translateY(180px) rotate(30deg);
    z-index: 5;
}

/* 자동 화살표 생성 - 고객 서비스 센터 오른쪽 중앙에서 선박 유상점검 및 수리 위 중앙으로 */
.diagram-node.customer-service[data-arrow-to-right] {
    position: relative;
}

.diagram-node.customer-service[data-arrow-to-right] .node-box-main::before {
    content: '';
    position: absolute;
    top: 120%;
    right: -1%;
    width: 2px;
    height: 183px;
    background: #8a8a8a;
    transform-origin: top center;
    transform: translateY(-50%) rotate(-30deg);
    z-index: 5;
}

.diagram-node.customer-service[data-arrow-to-right] .node-box-main::after {
    content: '';
    position: absolute;
    top: 40%;
    right: -54px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #8a8a8a;
    transform-origin: top center;
    transform: translateY(-50%) translateY(180px) rotate(-30deg);
    z-index: 5;
}

/* 자동 화살표 생성 - 중저압 차단기 A/S에서 고객만족으로 (오른쪽) */
.diagram-node[data-arrow-to="center"][data-arrow-side="right"] .node-box-main::after {
    content: '';
    position: absolute;
    right: -46%;
    top: 50%;
    width: 90px;
    height: 2px;
    background: #8a8a8a;
    transform: translateY(-50%);
    z-index: 5;
}

.diagram-node[data-arrow-to="center"][data-arrow-side="right"] .node-box-main::before {
    content: '';
    position: absolute;
    right: -46%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #8a8a8a;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    z-index: 5;
}

/* 자동 화살표 생성 - 선박 유상점검 및 수리에서 고객만족으로 (왼쪽) */
.diagram-node[data-arrow-to="center"][data-arrow-side="left"] .node-box-main::after {
    content: '';
    position: absolute;
    left: -46%;
    top: 50%;
    width: 90px;
    height: 2px;
    background: #8a8a8a;
    transform: translateY(-50%);
    z-index: 5;
}

.diagram-node[data-arrow-to="center"][data-arrow-side="left"] .node-box-main::before {
    content: '';
    position: absolute;
    left: -46%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 8px solid #8a8a8a;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    z-index: 5;
}

/* Organization Structure */
.organization-structure {
    margin-top: 32px;
}

.org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.org-level {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
}

.org-top {
    margin-bottom: 0;
}

.org-middle {
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
}

.org-box {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 28px;
    text-align: center;
    min-width: 180px;
    box-shadow: var(--shadow-sm);
}

.org-box.org-ceo {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.org-box.org-ceo h3 {
    color: white;
    font-size: 20px;
    margin: 0;
}

.org-box.org-team-header {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    margin-bottom: 12px;
}

.org-box.org-team-header h3 {
    color: white;
    font-size: 18px;
    margin: 0;
}

.org-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
}

.org-functions {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.org-function {
    font-size: 14px;
    color: var(--text-medium);
    padding: 8px;
    background: white;
    border-radius: 4px;
    text-align: center;
}

.org-connector {
    width: 2px;
    height: 32px;
    background: var(--border-color);
    position: relative;
}

.org-connector::before,
.org-connector::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.org-connector::before {
    top: -8px;
    border-bottom: 8px solid var(--border-color);
}

.org-connector::after {
    bottom: -8px;
    border-top: 8px solid var(--border-color);
}

/* CEO Section */
.greeting-header {
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.greeting-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.greeting-intro {
    font-size: 18px;
    color: var(--text-medium);
}

.greeting-intro strong {
    color: var(--accent-color);
    font-weight: 700;
}

.ceo-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: start;
}

.ceo-image {
    text-align: center;
}

.ceo-image img {
    width: 100%;
    max-width: 280px;
    border-radius: 16px;
    box-shadow: none;
}

.ceo-message {
    flex: 1;
}

.message-content {
    line-height: 2;
    font-size: 16px;
    color: var(--text-medium);
}

.message-content p {
    margin-bottom: 24px;
}

.message-closing {
    margin-top: 32px;
    font-weight: 600;
    color: var(--text-dark);
}

.ceo-signature {
    margin-top: 48px;
    text-align: right;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.sign-date {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.sign-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.business-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.business-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.business-image {
    width: 100%;
    height: 180px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.business-image::before {
    content: '이미지 준비중';
    position: absolute;
    color: var(--text-light);
    font-size: 14px;
    z-index: 0;
}

.business-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.business-image img[style*="display: none"] {
    display: none !important;
}

.business-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    padding: 16px;
    margin: 0;
    text-align: center;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Record Gallery */
.record-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.record-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.record-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.record-image {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    display: block;
    padding: 0;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
}

.record-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(30, 64, 175, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.record-item:hover .record-image::before {
    opacity: 1;
}

.record-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
    transition: transform 0.3s ease;
}

.record-item:hover .record-image img {
    transform: scale(1.05);
}

.record-image img[style*="display: none"] {
    display: none !important;
}

.record-item h4 {
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin: 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    background: white;
}

/* Record Table */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.record-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    margin: 0;
}

.record-table thead {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.record-table th {
    padding: 14px 18px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.record-table th:last-child {
    border-right: none;
}

.record-table th:first-child {
    text-align: left;
    padding-left: 24px;
}

.record-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.record-table tbody tr:hover {
    background: #f8f9fa;
}

.record-table tbody tr:last-child {
    border-bottom: none;
}

.record-table td {
    padding: 14px 18px;
    color: var(--text-medium);
    font-size: 14px;
    text-align: center;
}

.record-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
    padding-left: 24px;
}

/* Location Page */
/* Office Building Image */
.office-building-image {
    width: 100%;
    margin-bottom: 48px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: white;
}

.office-building-image img {
    width: 100%;
    height: auto;
    display: block;
}

.office-image-caption {
    padding: 24px 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-top: 3px solid var(--accent-color);
}

.office-image-caption h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.office-image-caption p {
    font-size: 15px;
    color: var(--text-medium);
    margin: 0;
}

.location-info {
    margin-bottom: 40px;
}

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.location-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.location-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.location-item i {
    font-size: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.location-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.location-item p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 12px;
    line-height: 1.6;
}

.location-item a {
    color: var(--accent-color);
    font-weight: 500;
}

.btn-outline-small {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-small:hover {
    background: var(--accent-color);
    color: white;
}

.map-container {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    max-width: 100%;
}

/* Roughmap 스타일 조정 */
.root_daum_roughmap {
    width: 100% !important;
    max-width: 100% !important;
}

.root_daum_roughmap .wrap_map {
    width: 100% !important;
}

.daum-roughmap {
    width: 100%;
    height: 500px;
}

/* ============================================
   Product Pages Styles - Note Style
   ============================================ */

/* Product Content Section */
.product-content-section {
    padding: 40px 0 80px 0;
    background: var(--bg-light);
    min-height: 600px;
}

.product-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* Product Sidebar */
.product-sidebar {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 32px 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 120px;
}

.product-sidebar .sidebar-header {
    padding: 0 24px 24px;
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: 16px;
}

.product-sidebar .sidebar-header h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
}

.product-sidebar .sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-sidebar .sidebar-menu li {
    margin: 0;
}

.product-sidebar .sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.product-sidebar .sidebar-menu a i {
    width: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
}

.product-sidebar .sidebar-menu li.active a,
.product-sidebar .sidebar-menu a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
    border-left-color: var(--accent-color);
}

.product-sidebar .sidebar-menu li.active a i,
.product-sidebar .sidebar-menu a:hover i {
    color: var(--accent-color);
}

/* Product Main Content */
.product-main-content {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
}

/* Product Submenu - Tabs Style */
.product-submenu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 20px 24px;
    background: linear-gradient(to bottom, white 0%, #fafafa 100%);
    border-bottom: 2px solid #f0f0f0;
    border-radius: 12px 12px 0 0;
}

.submenu-tab {
    padding: 12px 16px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.submenu-tab:hover {
    background: #e8e8e8;
    color: var(--text-dark);
}

.submenu-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
}

/* Product Items */
.product-items {
    padding: 0;
    background: transparent;
}

.product-item {
    margin-bottom: 48px;
    position: relative;
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.product-item:last-child {
    margin-bottom: 0;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent-color);
    position: relative;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.5px;
}


.product-divider {
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%,
        #e0e0e0 10%,
        #e0e0e0 90%,
        transparent 100%
    );
    margin: 40px 0;
}

.product-details {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
}

/* 이미지가 없을 때 full width */
.product-details:not(:has(.product-image-wrapper)) {
    grid-template-columns: 1fr;
}

.product-image-wrapper {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

/* 제품 소개 페이지용 - 특징/사양 박스 컨테이너 */
.product-content-section .product-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
}

.product-features-box,
.product-specs-box {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 28px 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.product-features-box:hover,
.product-specs-box:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.info-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.feature-list,
.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li,
.specs-list li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    padding: 2px 0 10px 32px;
    position: relative;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    color: white;
    background: var(--accent-color);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.feature-list li.feature-sub-item {
    padding-left: 48px;
    font-size: 14px;
    color: var(--text-medium);
    margin-top: 2px;
}

.feature-list li.feature-sub-item::before {
    content: '→';
    background: var(--text-light);
    width: 18px;
    height: 18px;
    font-size: 10px;
    top: 4px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.specs-list li::before {
    content: '\f0ae';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 6px;
    color: white;
    background: var(--primary-color);
    width: 22px;
    height: 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    line-height: 1;
}

.specs-list li.spec-model-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);
    padding-left: 32px;
    margin-top: 12px;
    margin-bottom: 4px;
}

.specs-list li.spec-model-name:first-child {
    margin-top: 0;
}

.specs-list li.spec-model-name::before {
    content: '■';
    font-family: Arial, sans-serif;
    font-weight: 900;
    background: transparent;
    width: 24px;
    height: 24px;
    font-size: 16px;
    color: var(--primary-color);
    border-radius: 0;
}

.specs-list li.spec-sub-item {
    padding-left: 56px;
    font-size: 14px;
    color: var(--text-medium);
    margin-top: 2px;
}

.specs-list li.spec-sub-item::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    background: transparent;
    width: 18px;
    height: 18px;
    font-size: 12px;
    top: 4px;
    left: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--accent-color);
    border-radius: 0;
}

/* Product Downloads Section */
.product-downloads {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.download-section {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    transition: var(--transition);
}

.download-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.download-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-title i {
    color: var(--accent-color);
    font-size: 18px;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    transition: var(--transition);
}

.download-item:hover {
    background: #f8f9fa;
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.download-item > i {
    color: #dc3545;
    font-size: 18px;
    flex-shrink: 0;
}

.download-link {
    flex: 1;
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.5;
    transition: var(--transition);
}

.download-item:hover .download-link {
    color: var(--primary-color);
    font-weight: 500;
}

.download-icon {
    color: var(--accent-color);
    font-size: 16px;
    opacity: 0.7;
    transition: var(--transition);
}

.download-item:hover .download-icon {
    opacity: 1;
    transform: translateY(-2px);
}

.download-date {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 400;
}

.external-badge {
    display: inline-block;
    font-size: 10px;
    padding: 2px 6px;
    background: var(--accent-color);
    color: white;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 600;
    vertical-align: middle;
}

/* Product Pages Responsive */
@media (max-width: 991px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-sidebar {
        position: static !important;
        order: -1 !important;
        width: 100% !important;
        padding: 12px 0 !important;
        border-radius: 12px !important;
    }
    
    .product-sidebar .sidebar-header {
        padding: 0 !important;
    }
    
    .product-sidebar .sidebar-header h3 {
        font-size: 16px !important;
        padding: 12px 16px !important;
        margin: 0 !important;
    }
    
    .product-sidebar .sidebar-menu {
        display: flex !important;
        flex-direction: column !important;
        overflow-x: hidden !important;
        padding: 8px 12px 12px 12px !important;
        gap: 4px !important;
    }
    
    .product-sidebar .sidebar-menu li {
        flex-shrink: 0 !important;
        width: 100% !important;
    }
    
    .product-sidebar .sidebar-menu a {
        padding: 10px 16px !important;
        white-space: normal !important;
        border-left: 3px solid transparent !important;
        border-bottom: none !important;
        font-size: 14px !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    
    .product-sidebar .sidebar-menu a i {
        font-size: 14px !important;
    }
    
    .product-sidebar .sidebar-menu li.active a {
        background: rgba(59, 130, 246, 0.1) !important;
        border-left-color: var(--accent-color) !important;
        color: var(--accent-color) !important;
    }
    
    .product-sidebar .sidebar-menu a:hover {
        background: var(--bg-light) !important;
        color: var(--accent-color) !important;
        border-left-color: var(--accent-color) !important;
    }
    
    .product-details {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .product-downloads {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-content-section {
        padding: 20px 0 !important;
    }
    
    .product-content-section .container {
        padding: 0 16px !important;
        max-width: 100% !important;
    }
    
    .product-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }
    
    .product-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 0 !important;
        border-radius: 12px !important;
    }
    
    .product-main-content {
        width: 100% !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .product-items {
        padding: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .product-item {
        padding: 20px !important;
        margin: 0 0 20px 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .product-submenu {
        padding: 16px;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .submenu-tab {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .product-name {
        font-size: 19px;
    }
}

/* Company Pages Responsive */
@media (max-width: 991px) {
    .company-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-sidebar {
        position: static;
        order: -1;
        width: 100%;
        padding: 12px 0;
        border-radius: 12px;
    }
    
    .sidebar-header {
        padding: 0;
    }
    
    .sidebar-header h3 {
        font-size: 16px;
        padding: 12px 16px;
        margin: 0;
    }
    
    .sidebar-menu {
        display: flex;
        flex-direction: column;
        padding: 8px 12px 12px 12px;
        gap: 4px;
    }
    
    .sidebar-menu li {
        width: 100%;
    }
    
    .sidebar-menu a {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 8px;
        border-left: 3px solid transparent;
        border-bottom: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .sidebar-menu a i {
        font-size: 14px;
        width: 18px;
        text-align: center;
    }
    
    .sidebar-menu li.active a {
        background: rgba(59, 130, 246, 0.1);
        border-left-color: var(--accent-color);
        color: var(--accent-color);
    }
    
    .company-main-content {
        width: 100%;
        padding: 0;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .sidebar-menu li.active a,
    .sidebar-menu a:hover {
        border-left: none;
        border-bottom-color: var(--accent-color);
    }
    
    .product-sidebar .sidebar-menu li.active a,
    .product-sidebar .sidebar-menu a:hover {
        border-left: none !important;
        border-bottom-color: var(--accent-color) !important;
    }
    
    .ceo-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .ceo-image {
        text-align: center;
    }
    
    .business-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .record-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .record-image {
        height: auto;
    }
    
    .record-item h4 {
        font-size: 14px;
        padding: 16px;
    }
    
    .location-details {
        grid-template-columns: 1fr;
    }
    
    .history-timeline {
        padding: 50px 0 50px 36px;
    }
    
    .history-timeline::before {
        left: 0;
        width: 3px;
    }
    
    .history-timeline::after {
        right: -80px;
        bottom: -80px;
        width: 300px;
        height: 300px;
        opacity: 0.06;
    }
    
    .timeline-year {
        padding-left: 40px;
    }
    
    .timeline-year::before {
        left: -9px;
        width: 18px;
        height: 18px;
        border-width: 3px;
        box-shadow: 0 0 0 2px #ffffff;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 30px;
    }
    
    .page-header-content h1 {
        font-size: 26px;
    }
    
    .page-header-content p {
        font-size: 15px;
        margin-bottom: 0;
    }
    
    .company-content-section {
        padding: 20px 0 !important;
    }
    
    .company-content-section .container {
        padding: 0 16px !important;
        max-width: 100% !important;
    }
    
    .company-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }
    
    .company-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 0 !important;
    }
    
    .company-main-content {
        width: 100% !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .content-card {
        padding: 20px !important;
        margin: 0 0 20px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .office-building-image {
        margin-bottom: 32px !important;
        border-radius: 12px !important;
    }
    
    .office-image-caption {
        padding: 20px !important;
    }
    
    .office-image-caption h3 {
        font-size: 18px !important;
    }
    
    .office-image-caption p {
        font-size: 14px !important;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .year-section-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .project-category-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .business-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    
    .business-item {
        width: 100% !important;
    }
    
    .business-item h4 {
        font-size: 13px;
        padding: 12px;
        min-height: 48px;
    }
    
    .record-gallery {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        width: 100% !important;
    }
    
    .record-item {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .record-image {
        height: auto !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .record-item h4 {
        font-size: 13px !important;
        padding: 14px 12px !important;
        min-height: auto;
    }
    
    .table-responsive {
        margin: 0 !important;
        width: 100% !important;
        border: none !important;
        border-radius: 0 !important;
        overflow: visible !important;
    }
    
    .policy-statement {
        padding: 20px 24px !important;
    }
    
    .policy-statement p {
        font-size: 18px !important;
        font-weight: 700 !important;
    }
    
    .policy-table {
        padding: 20px 15px !important;
    }
    
    .policy-flow-table {
        max-width: 100% !important;
        border-spacing: 15px !important;
        padding: 15px !important;
    }
    
    .policy-top-cell {
        padding-bottom: 30px !important;
    }
    
    .policy-top-cell::after {
        font-size: 24px !important;
        bottom: 5px !important;
    }
    
    .policy-left-cell,
    .policy-right-cell,
    .policy-center-cell {
        width: 33.33% !important;
        padding: 0 10px !important;
        display: table-cell !important;
    }
    
    .policy-left-cell::after,
    .policy-right-cell::before {
        font-size: 20px !important;
    }
    
    .policy-cell-content {
        padding: 18px 14px !important;
        min-height: 120px !important;
    }
    
    .policy-cell-title {
        font-size: 15px !important;
        margin-bottom: 12px !important;
    }
    
    .policy-cell-desc {
        font-size: 12px !important;
        padding: 10px 12px !important;
    }
    
    .policy-center-circle {
        width: 120px !important;
        height: 120px !important;
        font-size: 18px !important;
    }
    
    @media (max-width: 768px) {
        .policy-table {
            padding: 15px 10px !important;
            margin-top: 30px !important;
        }
        
        .policy-flow-table {
            border-spacing: 10px !important;
            padding: 15px 10px !important;
            max-width: 100% !important;
        }
        
        .policy-top-cell {
            padding-bottom: 25px !important;
        }
        
        .policy-top-cell::after {
            font-size: 24px !important;
            bottom: 5px !important;
        }
        
        .policy-left-cell,
        .policy-right-cell {
            width: 35% !important;
            padding: 0 8px !important;
        }
        
        .policy-left-cell::after {
            font-size: 18px !important;
            right: -8px !important;
        }
        
        .policy-right-cell::before {
            font-size: 18px !important;
            left: -8px !important;
        }
        
        .policy-center-cell {
            width: 30% !important;
            padding: 0 8px !important;
        }
        
        .policy-cell-content {
            padding: 14px 10px !important;
            min-height: 100px !important;
        }
        
        .policy-cell-title {
            font-size: 13px !important;
            margin-bottom: 10px !important;
        }
        
        .policy-cell-desc {
            font-size: 11px !important;
            padding: 8px 10px !important;
        }
        
        .policy-center-circle {
            width: 90px !important;
            height: 90px !important;
            font-size: 14px !important;
            border-width: 3px !important;
        }
    }
    
    @media (max-width: 480px) {
        .policy-flow-table {
            border-spacing: 8px !important;
            padding: 12px 8px !important;
        }
        
        .policy-top-cell {
            padding-bottom: 20px !important;
        }
        
        .policy-top-cell::after {
            font-size: 20px !important;
            bottom: 3px !important;
        }
        
        .policy-left-cell,
        .policy-right-cell {
            padding: 0 5px !important;
        }
        
        .policy-left-cell::after {
            font-size: 16px !important;
            right: -5px !important;
        }
        
        .policy-right-cell::before {
            font-size: 16px !important;
            left: -5px !important;
        }
        
        .policy-center-cell {
            padding: 0 5px !important;
        }
        
        .policy-cell-content {
            padding: 12px 8px !important;
            min-height: 90px !important;
        }
        
        .policy-cell-title {
            font-size: 12px !important;
            margin-bottom: 8px !important;
        }
        
        .policy-cell-desc {
            font-size: 10px !important;
            padding: 6px 8px !important;
        }
        
        .policy-center-circle {
            width: 80px !important;
            height: 80px !important;
            font-size: 12px !important;
        }
    }
    
    .arrow-to-center-left,
    .arrow-to-center-right {
        height: 120px !important;
    }
    
    .policy-diagram {
        min-height: 300px !important;
        padding: 20px 10px !important;
    }
    
    .center-circle {
        width: 120px !important;
        height: 120px !important;
        font-size: 16px !important;
    }
    
    .node-box {
        min-width: 160px !important;
        padding: 12px 16px !important;
    }
    
    .node-title {
        font-size: 14px !important;
    }
    
    .node-desc {
        font-size: 12px !important;
    }
    
    
    /* 자동 생성된 화살표 모바일 스타일 */
    .diagram-node.customer-service[data-arrow-to-left]::before {
        height: 150px !important;
    }
    
    .diagram-node.customer-service[data-arrow-to-right] .node-box-main::before {
        height: 150px !important;
    }
    
    .diagram-node[data-arrow-to="center"][data-arrow-side="right"] .node-box-main::after {
        width: 50px !important;
    }
    
    .diagram-node[data-arrow-to="center"][data-arrow-side="left"] .node-box-main::after {
        width: 50px !important;
    }
    
    .org-level {
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .org-team {
        min-width: 100% !important;
    }
    
    .org-box {
        min-width: 100% !important;
        padding: 16px 20px !important;
    }
    
    .org-box.org-ceo h3 {
        font-size: 18px !important;
    }
    
    .org-box.org-team-header h3 {
        font-size: 16px !important;
    }
    
    .org-function {
        font-size: 13px !important;
        padding: 6px !important;
    }
    
    .record-table {
        font-size: 12px !important;
        width: 100% !important;
        min-width: auto !important;
        display: block !important;
    }
    
    .record-table thead {
        display: none !important;
    }
    
    .record-table tbody {
        display: block !important;
        width: 100% !important;
    }
    
    .record-table tbody tr {
        display: block !important;
        width: 100% !important;
        margin-bottom: 16px !important;
        padding: 16px !important;
        background: white !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
    }
    
    .record-table tbody tr:last-child {
        margin-bottom: 0 !important;
    }
    
    .record-table tbody td {
        display: block !important;
        width: 100% !important;
        padding: 8px 0 !important;
        text-align: left !important;
        border: none !important;
        white-space: normal !important;
        font-size: 13px !important;
    }
    
    .record-table tbody td:before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        color: var(--primary-color) !important;
        display: inline-block !important;
        width: 80px !important;
        margin-right: 12px !important;
    }
    
    .record-table tbody td:first-child {
        padding-top: 0 !important;
        font-weight: 600 !important;
        font-size: 15px !important;
        color: var(--primary-color) !important;
        border-bottom: 2px solid var(--accent-color) !important;
        padding-bottom: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .record-table tbody td:first-child:before {
        content: '' !important;
        display: none !important;
    }
    
    .record-table tbody td:not(:first-child) {
        padding: 10px 0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .record-table tbody td:not(:first-child):last-of-type {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
}

/* ============================================
   Company History Timeline Styles
   ============================================ */

/* Modern Horizontal Timeline Design */
.history-timeline {
    position: relative;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}

/* 상단 가로 타임라인 */
.timeline-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 40px 60px;
    border-radius: 12px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.timeline-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/company/office.png') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.timeline-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 40px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.timeline-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 20px 0 60px 0;
    z-index: 1;
}

.timeline-horizontal::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 32px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.timeline-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.node-circle {
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 4px solid #3b82f6;
    border-radius: 50%;
    margin-bottom: 12px;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.node-year {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
}

.node-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.5;
    font-weight: 500;
}

/* 하단 상세 정보 - 심플 리스트 */
.timeline-details {
    background: #f8fafc;
    border-radius: 12px;
    padding: 40px 50px;
}

.detail-section {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    padding: 20px 0;
    border-bottom: 1px solid #e2e8f0;
    align-items: start;
}

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

.detail-year {
    font-size: 32px;
    font-weight: 700;
    color: #3b82f6;
    margin: 0;
    text-align: left;
    line-height: 1.2;
}

.detail-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    padding: 0;
}

.detail-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}

.detail-item p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .timeline-header {
        padding: 32px 40px;
    }
    
    .timeline-main-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .node-desc {
        font-size: 12px;
    }
    
    .timeline-details {
        padding: 36px 40px;
    }
    
    .detail-section {
        grid-template-columns: 90px 1fr;
        gap: 24px;
    }
    
    .detail-year {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .timeline-header {
        padding: 24px 20px;
        margin-bottom: 40px;
    }
    
    .timeline-main-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .timeline-horizontal {
        flex-direction: column;
        gap: 32px;
        padding: 20px 0 40px 0;
    }
    
    .timeline-horizontal::before {
        display: none;
    }
    
    .timeline-node {
        width: 100%;
        padding: 0;
    }
    
    .node-circle {
        width: 20px;
        height: 20px;
        border-width: 3px;
    }
    
    .node-year {
        font-size: 18px;
    }
    
    .node-desc {
        font-size: 13px;
    }
    
    .timeline-details {
        padding: 32px 24px;
    }
    
    .detail-section {
        grid-template-columns: 70px 1fr;
        gap: 20px;
        padding: 16px 0;
    }
    
    .detail-year {
        font-size: 24px;
    }
    
    .detail-item p {
        font-size: 14px;
        padding-left: 16px;
    }
}

/* ============================================
   Media / Video Page Styles
   ============================================ */

.media-content {
    max-width: 100%;
    margin: 0;
}

.media-content .section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-color);
    letter-spacing: -0.5px;
    position: relative;
    text-align: left;
}

.media-content .section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.media-description {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    text-align: left;
    margin-bottom: 40px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    padding-bottom: 50.625%; /* 16:9 비율, max-width 적용 시 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: #000;
    margin: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .media-content .section-title {
        font-size: 20px;
    }
    
    .media-description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .video-container {
        border-radius: 8px;
    }
}

/* ============================================
   Project Page Styles
   ============================================ */

/* Project Year Section - Clean Vertical Layout */
.year-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-color);
    letter-spacing: -0.5px;
    position: relative;
}

.year-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.project-category {
    margin-bottom: 50px;
}

.project-category:last-child {
    margin-bottom: 0;
}

.project-category-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
    display: block;
    letter-spacing: -0.5px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.project-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.project-category .table-responsive {
    margin-top: 0;
}

.project-category .record-table {
    width: 100%;
    margin-bottom: 0;
}

.project-category .record-table thead {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.project-category .record-table thead th {
    color: white;
    font-weight: 600;
    padding: 16px;
    text-align: left;
}

.project-category .record-table tbody tr {
    transition: background-color 0.2s ease;
}

.project-category .record-table tbody tr:hover {
    background-color: #f1f5f9;
}

.project-category .record-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
}

/* Project Image Styles */
.project-with-image {
    background: transparent !important;
}

.project-image-wrapper {
    padding: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.project-image-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 16px;
}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    max-height: 400px;
}

.project-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-info {
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 14px;
    color: #475569;
    text-align: center;
    border-left: 3px solid #3b82f6;
}

.project-info strong {
    color: #1e40af;
    font-weight: 600;
}

@media (max-width: 768px) {
    .project-image-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .project-image-wrapper {
        padding: 16px;
    }
}

/* Customer Center - Board Wrapper */
.board-wrapper {
    width: 100%;
    overflow: hidden;
    background: transparent;
}

.board-wrapper iframe {
    width: 100%;
    min-height: 600px;
    border: none;
    display: block;
    background: transparent;
}

/* Customer Center Responsive */
@media (max-width: 768px) {
    .board-wrapper iframe {
        min-height: 500px;
    }
}
