/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}

html {
    font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

:root {
    /* Modern Color Palette */
    --primary-gradient: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --success-gradient: #43A845;
    --warning-gradient:  #EB6D32;
    --danger-gradient: #EB6D32;
    
    /* Neutral Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Neumorphism */
    --neu-light: #ffffff;
    --neu-dark: #d1d9e6;
    --neu-shadow-light: 20px 20px 60px #bebebe;
    --neu-shadow-dark: -20px -20px 60px #ffffff;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background: #FFFFFF;
    min-height: 100vh;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: keep-all; /* 한글 단어가 잘리지 않도록 설정 */
}

/* 모든 텍스트 요소에 Pretendard Variable 적용 */
h1, h2, h3, h4, h5, h6,
p, span, div, a, button, input, textarea, select,
li, ul, ol, dl, dt, dd,
table, th, td,
label, legend, caption,
strong, em, b, i, u, s,
blockquote, cite, code, pre,
small, sub, sup {
    font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Platform Impact Section */
.platform-impact-section {
    padding: 4rem 0;
    background: #EAF5FA;
}

.impact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin: 0 auto 2rem auto;
    line-height: 1.5;
    max-width: 100%;
    display: block;
}

.impact-description {
    font-size: 1.2rem;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.5;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #3498db;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.stat-description {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
}

/* Responsive Design for Platform Impact */
@media (max-width: 768px) {
    .impact-title {
        font-size: 2rem;
        margin: 0 auto 1.5rem auto;
        text-align: center;
        display: block;
    }
    
    .impact-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }
}

/* Modern Grid System */
.grid {
    display: grid;
    gap: var(--space-xl);
}

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

@media (max-width: 1024px) {
    .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-cols-4, .grid-cols-3, .grid-cols-2 { grid-template-columns: 1fr; }
}

/* Modern Card Components */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--glass-shadow);
    padding: var(--space-2xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-neu {
    background: var(--neu-light);
    border-radius: var(--radius-2xl);
    box-shadow: var(--neu-shadow-light), var(--neu-shadow-dark);
    padding: var(--space-2xl);
    transition: all 0.3s ease;
}

.card-neu:hover {
    box-shadow: 
        25px 25px 50px #bebebe,
        -25px -25px 50px #ffffff;
    transform: translateY(-4px);
}

/* Modern Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.btn::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 ease;
}

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

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

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

.btn-secondary {
    background: var(--secondary-gradient);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    box-shadow: var(--glass-shadow);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Modern Icon System */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.icon-gradient {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.icon-gradient:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.icon-neu {
    background: var(--neu-light);
    box-shadow: var(--neu-shadow-light), var(--neu-shadow-dark);
    border: none;
}

.icon-neu:hover {
    box-shadow: 
        25px 25px 50px #bebebe,
        -25px -25px 50px #ffffff;
    transform: scale(1.05);
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo img {
    height: 45px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    min-height: 80px;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
    filter: brightness(1) contrast(1);
}

.logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

.logo:active img {
    transform: scale(0.98);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem !important; /* 폰트 크기를 0.95rem에서 1rem으로 증가, 모든 페이지에서 일관되게 적용 */
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3498DB, #2980B9);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.nav-link.active {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(52, 152, 219, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    min-width: 160px;
    max-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    padding: 8px 0;
    overflow: hidden;
    z-index: 1000;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem; /* 데스크톱 드롭다운 메뉴 폰트 크기 증가 */
    transition: all 0.2s ease;
    position: relative;
    margin: 0 0.5rem;
    border-radius: 10px;
    white-space: nowrap;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #3498DB, #2980B9);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.08), rgba(41, 128, 185, 0.08));
    color: #3498DB;
    transform: translateX(2px);
}

.dropdown-menu a:hover::before {
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: #FEFEFE;
    backdrop-filter: blur(15px);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 80px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(52, 152, 219, 0.1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
    margin-bottom: 1rem;
}

.mobile-menu-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(52, 152, 219, 0.1);
    color: #3498DB;
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 0 1rem 2rem 1rem;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.875rem 1.25rem;
    color: #333333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(52, 152, 219, 0.05);
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(41, 128, 185, 0.2));
    transition: left 0.3s ease;
    z-index: -1;
}

.mobile-nav-link:hover {
    color: #3498DB;
    border-color: rgba(52, 152, 219, 0.3);
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.mobile-nav-link:hover::before {
    left: 0;
}

.mobile-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 0.25rem;
    margin-left: 0.75rem;
    display: none;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu li {
    margin-bottom: 0.25rem;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 0.625rem 1rem;
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(52, 152, 219, 0.03);
    border: 1px solid rgba(52, 152, 219, 0.08);
    position: relative;
    overflow: hidden;
}

.mobile-dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15), rgba(41, 128, 185, 0.15));
    transition: left 0.3s ease;
    z-index: -1;
}

.mobile-dropdown-menu a:hover {
    color: #3498DB;
    border-color: rgba(52, 152, 219, 0.2);
    transform: translateX(3px);
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.15);
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
    border-color: rgba(52, 152, 219, 0.3);
    color: #3498DB;
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.2);
}

.mobile-nav-link.active::before {
    left: 0;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
}

.mobile-menu-toggle:hover {
    background: rgba(52, 152, 219, 0.1);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #3498DB, #2980B9);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

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

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

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


/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    min-height: 50vh;
    overflow: hidden;
    background: #EAF5FA;
}

.hero-slider {
    position: relative;
    height: 50vh;
    min-height: 400px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    /* background: #FEFEFE; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.slide-text {
    flex: 1;
    color: #333333;
    padding: 1rem;
}

.slide-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: #333333;
}

.highlight {
    color: #333333;
    font-weight: 700;
}

.slide-description {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #666666;
}

.slide-image {
    flex: 1.2;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.slide-image img {
    width: auto;
    height: auto;
    max-width: 600px;
    max-height: 400px;
    object-fit: contain;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.05) contrast(1.1);
    box-sizing: border-box;
}

.slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.slide-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.slide-image:hover::before {
    opacity: 1;
}

.slide-nav {
    display: none;
}

.slide-btn {
    background-color: rgba(51, 51, 51, 0.1);
    border: none;
    color: #333333;
    font-size: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slide-btn:hover {
    background-color: rgba(51, 51, 51, 0.2);
    transform: scale(1.1);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(51, 51, 51, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #333333;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(51, 51, 51, 0.6);
}

/* 슬라이더 이미지 반응형 스타일 */
@media (max-width: 1024px) {
    .slide-image img {
        max-width: 500px;
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .slide-image {
        flex: 1;
        width: 100%;
        max-height: 300px;
    }
    
    .slide-image img {
        max-width: 100%;
        max-height: 300px;
        width: auto;
    }
    
    .slide-text {
        text-align: center;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 500px;
        padding: 0 1rem;
    }
    
    .slide-image img {
        max-width: 100%;
        max-height: 250px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
}

/* Main Slogan Section */
.main-slogan-section {
    background-color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
}

.main-slogan {
    background-color: #FFFFFF;
    padding: 2.5rem 0;
    text-align: center;
}

.slogan-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.slogan-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Modern Section Styles */
.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: #333333;
    position: relative;
    line-height: 1.5;
    letter-spacing: -0.02em;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #2598CD;
    border-radius: 2px;
    opacity: 0.8;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
    border-radius: 1px;
    opacity: 0.6;
} */

.section-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: var(--space-xl);
    color: #6b7280;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    letter-spacing: -0.01em;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

/* Modern Solution Section */
.solution-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    position: relative;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.solution-item {
    margin-bottom: var(--space-3xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl);
}

.solution-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.solution-text {
    padding: var(--space-lg);
}

.solution-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    line-height: 1.5;
}

.solution-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.solution-description {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    background-color: #F9FAFE;
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 4px solid #3498DB;
}

.feature-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-item h6 {
    font-size: 1rem;
    font-weight: 500;
    color: #3498DB;
    margin: 1rem 0 0.5rem 0;
}

.feature-item ul {
    list-style: none;
    padding-left: 0;
}

.feature-item li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.feature-item li::before {
    content: '●';
    color: #3498DB;
    position: absolute;
    left: 0;
}

.features-table {
    margin-top: 2rem;
}

.features-table h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.features-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features-table th,
.features-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E9ECEF;
}

.features-table th {
    background-color: #3498DB;
    color: white;
    font-weight: 600;
}

.features-table tr:hover {
    background-color: #F9FAFE;
}

.monitoring-scope {
    margin-top: 2rem;
}

.monitoring-scope h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.monitoring-item {
    background-color: #F9FAFE;
    padding: 1.5rem;
    border-radius: 10px;
}

.monitoring-item h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.core-concept {
    background-color: #E8F4FD;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #3498DB;
}

.core-concept h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.scenario-section {
    margin-top: 2rem;
}

.scenario-section h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.scenario-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scenario-item {
    background-color: #F9FAFE;
    padding: 1rem;
    border-radius: 8px;
}

.scenario-flow {
    font-weight: 500;
    color: #333;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.benefits-content {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.benefits-header h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #3498DB;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-category {
    background-color: #F9FAFE;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-category h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3498DB;
    margin-bottom: 1rem;
}

.benefit-category ul {
    list-style: none;
    text-align: left;
}

.benefit-category li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-category li::before {
    content: '✓';
    color: #3498DB;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.performance-section {
    margin: 3rem 0;
}

.performance-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.performance-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3498DB;
    margin-bottom: 1.5rem;
    text-align: center;
}

.performance-table {
    margin-bottom: 2rem;
}

.performance-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.performance-table th,
.performance-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #E9ECEF;
}

.performance-table th {
    background-color: #3498DB;
    color: white;
    font-weight: 600;
}

.performance-table tr:hover {
    background-color: #F9FAFE;
}

.roi-section {
    background-color: #F9FAFE;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.roi-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.roi-section p {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.roi-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #E9ECEF;
}

.roi-item.highlight {
    background-color: #3498DB;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.roi-label {
    font-weight: 500;
}

.roi-value {
    font-weight: 600;
    color: #3498DB;
}

.roi-item.highlight .roi-value {
    color: white;
}

.innovation-section {
    margin-top: 3rem;
}

.innovation-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.innovation-item {
    background-color: #F9FAFE;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.innovation-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.innovation-item ul {
    list-style: none;
}

.innovation-item li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.innovation-item li::before {
    content: '●';
    color: #3498DB;
    position: absolute;
    left: 0;
}

/* Q&A Section */
.qa-section {
    padding: 5rem 0;
    background-color: #F9FAFE;
}

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

.qa-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.qa-category {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.qa-category:hover {
    transform: translateY(-5px);
}

.qa-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3498DB;
    margin-bottom: 1rem;
}

.qa-category p {
    color: #666;
    font-size: 1.1rem;
}

.poc-button {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #3498DB;
    color: white;
}

.btn-primary:hover {
    background-color: #2980B9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* About Us Section */
.about-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.about-header p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-item {
    background-color: #F9FAFE;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.about-item p {
    color: #666;
    line-height: 1.5;
}

.about-item ul {
    list-style: none;
}

.about-item li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.about-item li::before {
    content: '●';
    color: #3498DB;
    position: absolute;
    left: 0;
}


/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: #F9FAFE;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.contact-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    background-color: #ffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #FFFFFF;
}

.service-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3498DB;
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.contact-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.company-info h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3498DB;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.contact-item i {
    color: #3498DB;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item span {
    color: #666;
}

/* .partnership-section - 다른 페이지용 스타일은 주석 처리 */
/* .partnership-section {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

.partnership-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.partnership-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #F9FAFE;
    border-radius: 10px;
}

.partnership-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3498DB;
    margin-bottom: 0.5rem;
}

.partnership-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #FFFFFF;
    color: #333;
    padding: 2rem 0;
    text-align: center;
    border-top: 0.5px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #3498DB;
    border-radius: 0 0 2px 2px;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-content p {
    opacity: 0.8;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498DB, #2980B9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #2980B9, #1F618D);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Page-specific Styles */

/* Page Header */
.page-header {
    background: #FFFFFF;
    color: #333;
    padding: 3rem 0 2rem 0;
    margin-top: 80px;
    border-bottom: 1px solid #E5E5E5;
}

.page-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.breadcrumb a {
    color: #1a1a1a;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-description {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto;
    color: #666;
}

/* Benefits Page Styles */
.platform-effects-section {
    padding: 4rem 0;
    background: #F9FAFE;
}

.effects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.effect-item {
    text-align: center;
    padding: 2rem;
    border-radius: 6px;
    background:#ffffff;
    border: 1px solid #E5E7EB;
    border-top: 2px solid #3498DB;
    transition: all 0.3s ease;
}

.effect-item:hover {
    transform: translateY(-5px);
}

.effect-icon {
    font-size: 2.5rem;
    color: #3498DB;
    margin-bottom: 1rem;
}

.effect-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.effect-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.effect-list li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.effect-list i {
    color: #27AE60;
    font-size: 0.9rem;
}

.performance-metrics-section {
    padding: 4rem 0;
    background: #F9FAFE;
}

.performance-metrics-section .metrics-table-container {
    margin-top: 3rem;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 2rem;
    border: 1px solid #E5E7EB;
    box-sizing: border-box;
}

.performance-metrics-section .metrics-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    box-sizing: border-box;
}

.performance-metrics-section .metrics-table td.improvement {
    border-radius: 6px;
}

.metrics-table th {
    background: #2DA3D9 !important;
    color: #FFFFFF;
    padding: 20px 24px;
    font-size: 1rem;
    border: none;
    text-align: left;
    box-sizing: border-box;
}

.metrics-table td {
    padding: 20px 24px;
    border-bottom: 1px solid #F3F4F6;
    background: #FFFFFF;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    min-width: 0;
}

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

.metrics-table tbody tr:hover {
    background: #F9FAFB;
}

.metric-name {
    color: #111827;
    gap: 12px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    min-width: 0;
}

.metric-name i {
    color: #6B7280;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.metric-before {
    color: #9CA3AF;
    font-size: 0.95rem;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    min-width: 0;
}

.metric-after {
    color: #111827;
    font-weight: 600;
    font-size: 0.95rem;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    min-width: 0;
}

.improvement {
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    min-width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    box-sizing: border-box;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    flex-shrink: 1;
}

/* 개선율 텍스트 스타일 (데스크톱) */
.metrics-table td.improvement .improvement-text {
    display: inline;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.improvement-high {
    background: #39B54A !important;
    color: #FFFFFF !important;
}

.improvement-medium {
    background: #F59E0B !important;
    color: #FFFFFF !important;
}

.improvement-low {
    background: #EB6D32 !important;
    color: #FFFFFF !important;
}

.roi-analysis-section {
    padding: 4rem 0;
    background: #F9FAFE;
}

.roi-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.roi-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.roi-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #F9FAFE;
    border-radius: 12px;
    border: 1px solid #E9ECEF;
}

.roi-icon {
    font-size: 2rem;
    color: #3498DB;
}

.roi-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.roi-label {
    font-size: 0.9rem;
    color: #666;
}

.roi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.roi-result {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #3498DB, #2980B9);
    border-radius: 16px;
    color: #FFFFFF;
}

.roi-result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.roi-result-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.roi-result-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.roi-result-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.innovation-points-section {
    padding: 4rem 0;
    background: #F9FAFE;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.innovation-points-section .innovation-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    border-top: 2px solid #3498DB;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.innovation-points-section .innovation-item:hover {
    transform: translateY(-5px);
    box-shadow: none !important;
}

.innovation-icon {
    font-size: 2.5rem;
    color: #3498DB;
    margin-bottom: 1rem;
}

.innovation-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.innovation-list {
    list-style: none;
    padding: 0;
}

.innovation-list li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.innovation-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2DA3D9;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Responsive Design for Benefits */
@media (max-width: 768px) {
    .effects-grid,
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .roi-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .metrics-table-container {
        padding: 0 16px;
        margin-left: -15px;
        margin-right: -15px;
        margin-top: 3rem;
        overflow-x: visible;
        width: calc(100% + 30px);
        max-width: calc(100% + 30px);
        box-sizing: border-box;
    }
    
    .metrics-table {
        display: block;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .metrics-table thead {
        display: none;
    }
    
    .metrics-table tbody {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .metrics-table tbody tr {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 1rem;
        background: #FFFFFF;
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
    }
    
    .metrics-table tbody tr:last-child {
        margin-bottom: 0;
    }
    
    /* 마지막 행의 셀들도 다른 행들과 동일하게 border-bottom 유지 */
    .metrics-table tbody tr:last-child td {
        border-bottom: 1px solid #F3F4F6 !important;
    }
    
    /* 마지막 행의 metric-name은 2px border 유지 */
    .metrics-table tbody tr:last-child td.metric-name {
        border-bottom: 2px solid #E5E7EB !important;
    }
    
    .metrics-table tbody tr:hover {
        background: #FFFFFF;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .metrics-table td {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid #F3F4F6;
        text-align: left;
        box-sizing: border-box;
        overflow-wrap: anywhere;
        word-wrap: break-word;
        min-width: 0;
        overflow: visible;
    }
    
    .metrics-table td:last-child {
        border-bottom: none;
    }
    
    .metrics-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: #6B7280;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        box-sizing: border-box;
    }
    
    .metrics-table td.metric-name::before {
        display: none;
    }
    
    /* 도입 전, 도입 후 항목을 라벨 옆에 표시 */
    .metrics-table td.metric-before::before,
    .metrics-table td.metric-after::before {
        content: attr(data-label);
        display: inline-block;
        font-weight: 600;
        color: #6B7280;
        font-size: 0.875rem;
        margin: 0;
        box-sizing: border-box;
        flex-shrink: 0;
    }
    
    /* 개선율 셀 내용이 표시되도록 보장 */
    .metrics-table td.improvement {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        position: relative;
        padding: 0.75rem 0 !important;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        flex-wrap: wrap;
        /* td.improvement 자체에 배지 스타일 제거 */
        background: transparent !important;
        border-radius: 0 !important;
        color: inherit !important;
        font-size: inherit !important;
        font-weight: inherit !important;
    }
    
    .metrics-table td.improvement::before {
        content: attr(data-label);
        display: inline-block;
        font-weight: 600;
        color: #6B7280;
        font-size: 0.875rem;
        margin: 0;
        box-sizing: border-box;
        flex-shrink: 0;
        /* 라벨에 배지 스타일 제거 */
        background: transparent !important;
        border-radius: 0 !important;
        padding: 0 !important;
    }
    
    /* 개선율 셀의 텍스트 내용을 배지 형태로 표시 */
    .metrics-table td.improvement .improvement-text {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #FFFFFF !important;
        text-align: center;
        margin: 0;
        width: auto;
        min-width: 100px;
        max-width: 100%;
        box-sizing: border-box;
        line-height: 1.5;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    /* 개선율 배지 배경색 적용 */
    .metrics-table td.improvement-high .improvement-text {
        background: #39B54A !important;
        color: #FFFFFF !important;
    }
    
    .metrics-table td.improvement-low .improvement-text {
        background: #EB6D32 !important;
        color: #FFFFFF !important;
    }
    
    .metrics-table td.improvement-medium .improvement-text {
        background: #F59E0B !important;
        color: #FFFFFF !important;
    }
    
    .metrics-table td.metric-name {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        text-align: left;
        padding: 0.75rem 0;
        padding-bottom: 1rem;
        border-bottom: 2px solid #E5E7EB;
        margin-bottom: 0.5rem;
        width: 100%;
        box-sizing: border-box;
        font-size: 1rem;
        font-weight: 600;
        color: #111827;
    }
    
    .metrics-table td.metric-name i {
        font-size: 1.2rem;
        flex-shrink: 0;
        width: 20px;
        text-align: center;
        color: #6B7280;
    }
    
    .metrics-table td.metric-before,
    .metrics-table td.metric-after {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 0.75rem 0;
        box-sizing: border-box;
        width: 100%;
        overflow-wrap: anywhere;
        word-wrap: break-word;
        min-width: 0;
    }
    
    .improvement {
        display: inline-flex !important;
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: 0;
        width: auto;
        max-width: 100%;
        height: auto;
        margin-top: 0.25rem;
        box-sizing: border-box;
        overflow-wrap: anywhere;
        word-wrap: break-word;
        align-items: center;
        justify-content: center;
        white-space: normal;
        flex-shrink: 1;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Extra small mobile (360px and below) */
@media (max-width: 360px) {
    .metrics-table-container {
        margin-left: -15px;
        margin-right: -15px;
        padding: 0 16px;
        width: calc(100% + 30px);
        max-width: calc(100% + 30px);
    }
}

/* Solution Hero */
.solution-hero {
    padding: 5rem 0;
    background-color: #F9FAFE;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background-color: #F9FAFE;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    border-top: 2px solid #3498DB;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    transition: all 0.3s ease;
}

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

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-item ul {
    list-style: none;
    text-align: left;
}

.feature-item li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.feature-item li::before {
    content: '●';
    color: #3498DB;
    position: absolute;
    left: 0;
}

/* Features Table */
.features-table-section {
    padding: 5rem 0;
    background-color: #F9FAFE;
}

.table-container {
    overflow-x: auto;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.features-table th,
.features-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E9ECEF;
}

.features-table th {
    background-color: #3498DB;
    color: white;
    font-weight: 600;
}

.features-table tr:hover {
    background-color: #F9FAFE;
}

/* Architecture Section */
.architecture-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.architecture-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.architecture-image {
    flex: 0.5;
}

.architecture-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.architecture-description {
    flex: 1;
}

.architecture-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.architecture-description p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.5rem;
}

.architecture-description ul {
    list-style: none;
}

.architecture-description li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.architecture-description li::before {
    content: '✓';
    color: #3498DB;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Core Features */
.core-features-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.core-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.core-feature-item {
    background-color: #F9FAFE;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    border-top: 2px solid #3498DB;
}

.core-feature-item .feature-icon {
    font-size: 2.5rem;
    background: var(--danger-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
    text-align: center;
}

.core-feature-item .feature-icon:hover {
    transform: scale(1.1) rotate(-5deg);
}

.core-feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.core-feature-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
}

/* Monitoring Scope */
.monitoring-scope-section {
    padding: 5rem 0;
    background-color: #F9FAFE;
}

.monitoring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.monitoring-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    text-align: center;
}

.monitoring-icon {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
}

.monitoring-icon:hover {
    transform: scale(1.1) rotate(10deg);
}

.monitoring-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    background: #EAF5FA;
    border-radius: 10px;
    padding: 20px;
}

.monitoring-item ul {
    list-style: none;
    text-align: left;
}

.monitoring-item li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.monitoring-item li::before {
    content: '●';
    color: #3498DB;
    position: absolute;
    left: 0;
}

/* Dashboard Section */
.dashboard-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.dashboard-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.dashboard-image {
    flex: 0.5;
}

.dashboard-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.dashboard-features {
    flex: 1;
}

.dashboard-features h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.dashboard-features ul {
    list-style: none;
}

.dashboard-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.dashboard-features li::before {
    content: '✓';
    color: #3498DB;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Core Concept */
.core-concept-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.concept-box {
    background-color: #EAF5FA;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    border-left: 2px solid #3498DB;
    text-align: center;
}

.concept-box p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* DIY Automation */
.diy-automation-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.automation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.automation-item {
    background-color: #F9FAFE;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    border-top: 2px solid #3498DB;
}

.automation-icon {
    font-size: 2.5rem;
    background: var(--warning-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
    text-align: center;
}

.automation-icon:hover {
    transform: scale(1.1) rotate(-10deg);
}

.automation-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.automation-item ul {
    list-style: none;
}

.automation-item li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.automation-item li::before {
    content: '●';
    color: #3498DB;
    position: absolute;
    left: 0;
}

/* Scenarios */
.scenarios-section {
    padding: 5rem 0;
    background-color: #F9FAFE;
}

.scenarios-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex-direction: row-reverse;
}

.scenario-item {
    background-color: white;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex:1;
}

.scenario-icon {
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.scenario-icon:hover {
    transform: scale(1.1) rotate(15deg);
}

.scenario-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    background: #EAF5FA;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.scenario-content p {
    color: #666;
    font-size: 1rem;
}

/* Integration Section */
.integration-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.integration-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.integration-image {
    flex: 0.5;
}

.integration-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.integration-description {
    flex: 1;
}

.integration-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.integration-description p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1.5rem;
}

.integration-description ul {
    list-style: none;
}

.integration-description li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.integration-description li::before {
    content: '✓';
    color: #3498DB;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Solution Overview */
.solution-overview-section {
    padding: 5rem 0;
    background-color: #F9FAFE;
}

.solution-overview {
    text-align: center;
}

.overview-description {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background-color: white;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3498DB;
    margin-bottom: 0.5rem;
}

.card-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.card-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-content .btn-outline {
    background-color: transparent;
    color: #3498DB;
    border: 2px solid #3498DB;
    margin-top: auto;
    align-self: center;
}

.card-content .btn-outline:hover {
    background-color: #3498DB;
    color: white;
}

/* Benefits Overview */
.benefits-overview-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.benefits-overview {
    text-align: center;
}

.benefits-summary h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.benefits-summary p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 2rem;
}

.benefits-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.benefits-highlights .highlight-item:nth-child(1) .highlight-number {
    color: #E74C3C;
}

.benefits-highlights .highlight-item:nth-child(2) .highlight-number {
    color: #2ECC71;
}

.benefits-highlights .highlight-item:nth-child(3) .highlight-number {
    color: #F39C12;
}

.highlight-text {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

.benefits-cta {
    margin-top: 2rem;
}

/* Q&A Overview */
.qa-overview-section {
    padding: 5rem 0;
    background-color: #F9FAFE;
}

.qa-overview {
    text-align: center;
}

.qa-summary h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.qa-summary p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 2rem;
}

.qa-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.qa-category {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qa-category h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3498DB;
    margin-bottom: 1rem;
}

.qa-category p {
    color: #666;
}

.qa-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* About Overview */
.about-overview-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.about-overview {
    text-align: center;
}

.about-summary h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.about-summary p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 2rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-highlights .highlight-item {
    background-color: #F9FAFE;
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
}

.about-highlights .highlight-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.about-highlights .highlight-item p {
    color: #666;
    font-style: italic;
}

.about-cta {
    margin-top: 2rem;
}

/* Contact Overview */
.contact-overview-section {
    padding: 5rem 0;
    background-color: #F9FAFE;
}

.contact-overview {
    text-align: center;
}

.contact-summary h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.contact-summary p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.contact-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3498DB;
    margin-bottom: 1rem;
}

.service-item p {
    color: #666;
}

.contact-cta {
    margin-top: 2rem;
}


/* About Us Page Specific Styles */

/* Company Overview */
.company-overview-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.overview-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.overview-text {
    flex: 1;
    position: relative;
}

.overview-text ::before {
    content: '';
    position: absolute;
    top: -20px;
    width: 60px;
    height: 4px;
    background: #2598CD;
    border-radius: 2px;
    opacity: 0.8;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
}

.overview-image {
    flex: 1;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
}

/* Mission Vision */
.mission-vision-section {
    padding: 5rem 0;
    background-color: #F9FAFE;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-item,
.vision-item {
    background-color:#fff;
    padding: 3rem;
    border-radius: 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
    align-items: center;
    gap: 20px;
    border: 1px solid #E5E7EB;
}

.mission-icon {
    font-size: 3rem;
    background: var(--warning-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    transition: all 0.3s ease;
}

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

.vision-icon {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    transition: all 0.3s ease;
}

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

.mission-item h3,
.vision-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2DA3D9;
    margin-bottom: 1rem;
    background: #EAF5FA;
    border-radius: 10px;
    padding: 0px 20px;
}

.mission-item p,
.vision-item p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
}

/* Core Values */
.core-values-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background-color: #F9FAFE;
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
    border-top: 2px solid #3498DB;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
}

.value-item:nth-child(1) .value-icon {
    background: var(--danger-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-item:nth-child(1) .value-icon:hover {
    transform: scale(1.1) rotate(-5deg);
}

.value-item:nth-child(2) .value-icon {
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-item:nth-child(2) .value-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.value-item:nth-child(3) .value-icon {
    background: var(--warning-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-item:nth-child(3) .value-icon:hover {
    transform: scale(1.1) rotate(-10deg);
}

.value-item:nth-child(4) .value-icon {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-item:nth-child(4) .value-icon:hover {
    transform: scale(1.1) rotate(10deg);
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.5;
}

/* Growth History */
/* Development Roadmap Section */
.development-roadmap-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 3rem;
}

.roadmap-subtitle {
    font-size: 1.3rem;
    margin-top: 1rem;
    font-weight: 500;
    display: inline-block;
    background: #EAF5FA;
    border-radius:6px;
    color: #3498DB;
    padding: 1rem 2rem;
}

.subtitle-platform {
    color: #3498DB ;
}

.subtitle-innovation {
    color: #EB6D32;
    font-weight: 600;
}

.roadmap-timeline-wrapper {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.roadmap-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #3498DB;
    transform: translateX(-50%);
    z-index: 1;
}

.roadmap-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    box-sizing: border-box;
}

.roadmap-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-sizing: border-box;
}

.roadmap-item-left {
    flex-direction: row-reverse;
    padding-right: calc(45% + 2rem);
}

.roadmap-item-right {
    flex-direction: row;
    padding-left: calc(45% + 2rem);
}

.roadmap-year-marker {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #3498DB;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.roadmap-content {
    flex: 1;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 2rem;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.roadmap-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.roadmap-year-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0rem;
}

.roadmap-year-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498DB;
    margin: 0;
}

.roadmap-architecture {
    margin-bottom: 1.5rem;
}

.roadmap-architecture h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75rem;
}

.architecture-content {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

.architecture-content p {
    margin-bottom: 0.5rem;
}

.architecture-content strong {
    color: #333;
}

.roadmap-features {
    margin-top: 1.5rem;
}

.roadmap-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75rem;
}

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

.features-list li {
    padding: 0.5rem 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.25rem;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #666;
    font-weight: bold;
}

.features-list li.feature-blue {
    color: #0077CC;
}

.features-list li.feature-blue::before {
    color: #0077CC;
}

.features-list li.feature-red {
    color: #EB6D32;
}

.features-list li.feature-red::before {
    color: #EB6D32;
}

.features-list li.feature-orange {
    color: #EB6D32;
    font-weight: 600;
    background: rgba(255, 102, 0, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.features-list li.feature-orange::before {
    color: #FF6600;
}

.features-list li.topology-detail {
    padding-left: 2rem;
    font-size: 0.9rem;
    color: #0077CC;
    font-style: italic;
}

.roadmap-patent-info {
    background: #F9FAFE;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    border-left: 2px solid #3498DB;
    box-sizing: border-box;
}

.patent-intro {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.patent-title {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.75rem;
}

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

.patent-list li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.patent-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498DB;
    font-weight: bold;
}

/* Responsive Design for Development Roadmap */
@media (max-width: 1199px) {
    .roadmap-timeline-wrapper {
        max-width: 100%;
        padding: 2rem 1rem;
    }
    
    .roadmap-item-left {
        padding-right: calc(50% + 1.5rem);
    }
    
    .roadmap-item-right {
        padding-left: calc(50% + 1.5rem);
    }
    
    .roadmap-year-marker {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1rem;
    }
    
    .roadmap-content {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .development-roadmap-section {
        padding: 3rem 0;
    }
    
    .roadmap-header {
        margin-bottom: 2rem;
    }
    
    .roadmap-subtitle {
        font-size: 1.1rem;
    }
    
    .roadmap-timeline-wrapper {
        padding: 1.5rem 16px;
        margin-bottom: 2rem;
    }
    
    .roadmap-timeline-line {
        left: 30px;
    }
    
    .roadmap-container {
        gap: 2rem;
    }
    
    .roadmap-item {
        flex-direction: row !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        gap: 1rem;
    }
    
    .roadmap-year-marker {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1rem;
        position: absolute;
        left: 5px;
        top: 0;
    }
    
    .roadmap-content {
        margin-left: 60px;
        padding: 1.5rem;
    }
    
    .roadmap-year-header h3 {
        font-size: 1.5rem;
    }
    
    .roadmap-architecture h4,
    .roadmap-features h4 {
        font-size: 1rem;
    }
    
    .architecture-content,
    .features-list li {
        font-size: clamp(14px, 2vw, 16px);
    }
    
    .roadmap-patent-info {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .patent-intro {
        font-size: 1rem;
    }
    
    .patent-list li {
        font-size: 0.9rem;
    }
}

/* Patents & Certifications Section */
.patents-certifications-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.patents-certifications-section .section-title {
    margin-bottom: 3rem;
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    box-sizing: border-box;
}

.portfolio-item {
    box-sizing: border-box;
}

.portfolio-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
    box-sizing: border-box;
}

.portfolio-wrap:hover {
    transform: translateY(-5px);
}

.portfolio-wrap img,
.portfolio-wrap .img-fluid {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.portfolio-wrap:hover img,
.portfolio-wrap:hover .img-fluid {
    transform: scale(1.05);
}

.portfolio-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 152, 219, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
    text-decoration: none;
    box-sizing: border-box;
}

.portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio-info h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

/* Responsive Design for Patents & Certifications */
@media (max-width: 1024px) {
    .portfolio-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .patents-certifications-section {
        padding: 3rem 0;
    }
    
    .patents-certifications-section .section-title {
        margin-bottom: 2rem;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-title {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    max-width: 90%;
    box-sizing: border-box;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: 300;
    color: #FFFFFF;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-close::before {
    content: '×';
    font-size: 50px;
    line-height: 1.5;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-nav:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-prev::before {
    content: '‹';
    font-size: 40px;
    line-height: 1.5;
}

.lightbox-next {
    right: 30px;
}

.lightbox-next::before {
    content: '›';
    font-size: 40px;
    line-height: 1.5;
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-nav:disabled:hover {
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .lightbox-close::before {
        font-size: 40px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-prev::before {
        font-size: 30px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-next::before {
        font-size: 30px;
    }

    .lightbox-title {
        font-size: 1rem;
        bottom: -40px;
        padding: 0.75rem;
    }
}

/* HoneyBee Agent Section */
.honeybee-agent-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.honeybee-agent-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.honeybee-agent-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.honeybee-overview {
    margin-bottom: 1rem;
}

.honeybee-overview h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
}

.honeybee-overview p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
}

.honeybee-table-container {
    background: #FFFFFF;
    border-radius: 6px;
    padding: 2rem;
    border: 1px solid #E5E7EB;
    box-sizing: border-box;
}

.honeybee-table-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
}

.honeybee-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    box-sizing: border-box;
}

.honeybee-table thead {
    background-color: #3498DB;
}

.honeybee-table th {
    background-color: #3498DB;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    box-sizing: border-box;
}

.honeybee-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E9ECEF;
    color: #333;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

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

.honeybee-table tbody tr:hover {
    background-color: #F9FAFE;
}

.honeybee-agent-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.honeybee-agent-right h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
}

.honeybee-feature-item {
    background-color: #F9FAFE;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    border-top: 2px solid #3498DB;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.honeybee-feature-item:hover {
    transform: translateY(-5px);
}

.honeybee-feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.honeybee-feature-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.honeybee-feature-item ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.honeybee-feature-item ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #3498DB;
    font-weight: bold;
    font-size: 1rem;
}

/* Responsive Design for HoneyBee Agent */
@media (max-width: 1199px) {
    .honeybee-agent-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .honeybee-agent-right {
        order: -1;
    }
}

@media (max-width: 767px) {
    .honeybee-agent-section {
        padding: 3rem 0;
    }

    .honeybee-agent-content {
        gap: 1.5rem;
        padding: 0 16px;
        display: flex;
        flex-direction: column;
    }

    .honeybee-agent-left {
        order: 1;
    }

    .honeybee-agent-right {
        order: 2;
    }

    .honeybee-overview h2,
    .honeybee-agent-right h2 {
        font-size: 1.5rem;
    }

    .honeybee-overview p {
        font-size: 1rem;
    }

    .honeybee-table-container {
        padding: 1.5rem;
        margin: 0;
    }

    .honeybee-table-container h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .honeybee-table {
        display: block;
        width: 100%;
    }

    .honeybee-table thead {
        display: none;
    }

    .honeybee-table tbody {
        display: block;
        width: 100%;
    }

    .honeybee-table tbody tr {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 1rem;
        background: #FFFFFF;
        border: 1px solid #E5E7EB;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
    }

    .honeybee-table tbody tr:last-child {
        margin-bottom: 0;
    }

    .honeybee-table td {
        display: block;
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid #F3F4F6;
        text-align: left;
        box-sizing: border-box;
    }

    .honeybee-table td:last-child {
        border-bottom: none;
    }

    .honeybee-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        color: #6B7280;
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        box-sizing: border-box;
    }

    .honeybee-table td:first-child::before {
        content: attr(data-label);
        font-size: 1rem;
        color: #0077CC;
        margin-bottom: 0.75rem;
    }

    .honeybee-feature-item {
        padding: 1.5rem;
    }

    .honeybee-feature-item h3 {
        font-size: 1.2rem;
    }

    .honeybee-feature-item ul li {
        font-size: 0.95rem;
        padding-left: 1.25rem;
    }
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.team-image-section {
    margin-bottom: 4rem;
}

.team-main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-main-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-main-image:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #F9FAFE;
    border-radius: 6px;
    transition: transform 0.3s ease;
    border: 1px solid #E5E7EB;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: var(--space-sm);
    transition: all 0.3s ease;
}

.stat-item:nth-child(1) .stat-number {
    background: var(--danger-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(1) .stat-number:hover {
    transform: scale(1.1);
}

.stat-item:nth-child(2) .stat-number {
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(2) .stat-number:hover {
    transform: scale(1.1);
}

.stat-item:nth-child(3) .stat-number {
    background: var(--warning-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(3) .stat-number:hover {
    transform: scale(1.1);
}

.stat-item:nth-child(4) .stat-number {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:nth-child(4) .stat-number:hover {
    transform: scale(1.1);
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.team-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-description h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.team-description p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1rem;
}

.team-description p:last-child {
    margin-bottom: 0;
}

/* Awards Section */
.awards-section {
    padding: 5rem 0;
    background-color: #F9FAFE;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.award-item {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-icon {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.award-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.award-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Benefits Page Specific Styles */
.platform-effects-section {
    padding: var(--space-3xl) 0;
    background: #F9FAFE;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.effects-overview {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-3xl);
}

.overview-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
    max-width: 500px;
    box-shadow: var(--glass-shadow);
}

.overview-icon {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.overview-card p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.effects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.effect-category {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.effect-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.effect-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.effect-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.effect-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    width: 100%;
}

.effect-category:nth-child(1) .effect-icon {
    background: var(--danger-gradient);
    color: white;
    border: none;
}

.effect-category:nth-child(2) .effect-icon {
    background: var(--success-gradient);
    color: white;
    border: none;
}

.effect-category:nth-child(3) .effect-icon {
    background: var(--warning-gradient);
    color: white;
    border: none;
}

.effect-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.effect-content {
    padding-left: 76px;
}

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

.effect-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.effect-list li i {
    color: var(--success-gradient);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.performance-metrics-section {
    padding: var(--space-3xl) 0;
    background: #ffffff;
}

.metrics-highlights {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-3xl);
}

.highlight-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
    max-width: 300px;
    box-shadow: var(--glass-shadow);
}

.highlight-icon {
    font-size: 3rem;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.highlight-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.highlight-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.highlight-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.table-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.table-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.table-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.metrics-table-container {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    box-sizing: border-box;
}

.metrics-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    background: #FFFFFF;
    box-sizing: border-box;
}

.metrics-table th {
    background: #374151;
    color: #FFFFFF;
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    box-sizing: border-box;
}

.metrics-table td {
    padding: 20px 24px;
    border-bottom: 1px solid #F3F4F6;
    vertical-align: middle;
    background: #FFFFFF;
    box-sizing: border-box;
    overflow-wrap: anywhere;
}

.metrics-table td .improvement {
    color: #FFFFFF !important;
    background: inherit !important;
}

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

.metrics-table tbody tr:hover {
    background: #F9FAFB;
}

.metric-name {
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    min-width: 0;
}

.metric-name i {
    color: #6B7280;
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.metric-before {
    color: #9CA3AF;
    text-decoration: line-through;
    font-size: 0.95rem;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    min-width: 0;
}

.metric-after {
    color: #111827;
    font-weight: 600;
    font-size: 0.95rem;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    min-width: 0;
}

.improvement {
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    text-align: center;
    font-size: 0.85rem;
    min-width: 120px;
    width: 120px;
    display: inline-flex;
    height: 50px;
    color: #FFFFFF !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    flex-shrink: 1;
}

.improvement-high {
    background: #43A845!important;
    color: #FFFFFF !important;
}

.improvement-medium {
    background: #F59E0B !important;
    color: #FFFFFF !important;
}

.improvement-low {
    background: #EB6D32 !important;
    color: #FFFFFF !important;
}

.roi-analysis-section {
    padding: var(--space-3xl) 0;
    background:  #F9FAFE;
}

.roi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: stretch;
}

.roi-chart-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--glass-shadow);
}

.roi-chart {
    text-align: center;
}

.chart-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.chart-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.chart-visual {
    position: relative;
    height: 200px;
    margin-bottom: var(--space-lg);
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-sm);
}

.bar {
    flex: 1;
    background: linear-gradient(180deg, #6DBCDB, #2697CD);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    min-height: 20px;
}

.bar:hover {
    background: linear-gradient(180deg, #2980B9, #1F618D);
    transform: scale(1.05);
}

.bar-value {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.chart-trend-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #8E44AD 20%, #8E44AD 80%, transparent 100%);
    opacity: 0.7;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
}

.chart-labels span {
    flex: 1;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
}

.roi-details {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--glass-shadow);
    
}

.roi-criteria {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    text-align: center;
}

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

.roi-list li {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.roi-highlight {
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    font-size: 1.1rem !important;
    padding: var(--space-md) var(--space-md) !important;
    border-radius: var(--radius-md);
    margin-top: var(--space-lg) !important;
    text-align: center;
    color: #FFFFFF !important;
    background-color: #21317D ;
}

.chart-header {
    margin-bottom: var(--space-xl);
}

.chart-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.chart-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.chart-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.chart-placeholder i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.chart-placeholder p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.innovation-points-section {
    padding: var(--space-3xl) 0;
    background: #ffffff;
}

.innovation-overview {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-3xl);
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.innovation-item {
    background: #F9FAFE;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #3498DB;
}

.innovation-item:hover {
    transform: translateY(-8px);
}

.innovation-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.innovation-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    width: 100%;
}

.innovation-item:nth-child(1) .innovation-icon {
    /* background: var(--primary-gradient); */
    color: white;
    border: none;
}

.innovation-item:nth-child(2) .innovation-icon {
    /* background: var(--danger-gradient); */
    color: white;
    border: none;
}

.innovation-item:nth-child(3) .innovation-icon {
    /* background: var(--accent-gradient); */
    color: white;
    border: none;
}

.innovation-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.innovation-content {
    padding-left: 76px;
}


.innovation-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.innovation-item:nth-child(1) .innovation-icon {
    color: #1a1a1a;
}

.innovation-item:nth-child(2) .innovation-icon {
    color: #1a1a1a;
}

.innovation-item:nth-child(3) .innovation-icon {
    color: #1ABC9C;
}

.story-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.story-item:nth-child(1) .story-icon {
    color: #E74C3C;
}

.story-item:nth-child(2) .story-icon {
    color: #2ECC71;
}

.story-item:nth-child(3) .story-icon {
    color: #F39C12;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.story-item:nth-child(1) .metric-number {
    color: #E74C3C;
}

.story-item:nth-child(2) .metric-number {
    color: #2ECC71;
}

.story-item:nth-child(3) .metric-number {
    color: #F39C12;
}

/* Q&A Page Specific Styles */
.case-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.case-item:nth-child(1) .case-icon {
    color: #E74C3C;
}

.case-item:nth-child(2) .case-icon {
    color: #2ECC71;
}

.case-item:nth-child(3) .case-icon {
    color: #F39C12;
}

.scenario-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.scenario-item:nth-child(1) .scenario-icon {
    color: #E74C3C;
}

.scenario-item:nth-child(2) .scenario-icon {
    color: #2ECC71;
}

.scenario-item:nth-child(3) .scenario-icon {
    color: #F39C12;
}

/* Contact Page Specific Styles */
.contact-main-section {
    padding: 4rem 0;
    background: #F9FAFE;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
}

.contact-left {
    padding-right: 2rem;
}

.consultation-section {
    margin-bottom: 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
}

.consultation-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.consultation-section h2::before {
    content: '';
    position: absolute;
    top: -20px;
    width: 60px;
    height: 4px;
    background: #2598CD;
    border-radius: 2px;
    opacity: 0.8;
}


.consultation-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3498DB;
    margin-bottom: 1rem;
    font-style: italic;
}

.consultation-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-main-section .service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    border-left: 2px solid #3498DB;
    transition: transform 0.3s ease;
    justify-content: center;
    box-shadow: none !important;
}

.contact-main-section .service-item:hover {
    transform: translateY(-5px);
    box-shadow: none !important;
}

.service-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-item:nth-child(1) .service-icon {
    background: #E74C3C;
    color: white;
}

.service-item:nth-child(2) .service-icon {
    background: #2ECC71;
    color: white;
}

.service-item:nth-child(3) .service-icon {
    background: #F39C12;
    color: white;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: #666;
    line-height: 1.5;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-image-section {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.team-image-section:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-info-section {
    background: white;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
}

.contact-info-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item:nth-child(1) .contact-icon {
    color: #E74C3C;
}

.contact-item:nth-child(2) .contact-icon {
    color: #2ECC71;
}

.contact-item:nth-child(3) .contact-icon {
    color: #F39C12;
}

.contact-item:nth-child(4) .contact-icon {
    color: #1ABC9C;
}

.contact-details strong {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.contact-details a {
    color: #3498DB;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.partnership-section {
    padding: 4rem 2rem;
    background: #FFFFFF !important;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: none !important;
}

.partnership-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partnership-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.partnership-header h2::before{
    content: '';
    position: absolute;
    top: -20px;
    width: 60px;
    height: 4px;
    background: #2598CD;
    border-radius: 2px;
    opacity: 0.8;
    left: 50%;
    transform: translateX(-50%)
}

.partnership-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partnership-item {
    text-align: center;
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-content: normal;
    justify-content: flex-end;
    height: 20vh;
    box-shadow: none !important;
}

.partnership-img{
    overflow: hidden;
}

.partnership-img img{
    position:absolute;
    top: 0;
    left: 0;
    z-index: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.partnership-item:hover {
    transform: translateY(-5px);
    box-shadow: none !important;
}

.partnership-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.partnership-item:nth-child(1) .partnership-icon {
    color: #E74C3C;
}

.partnership-item:nth-child(2) .partnership-icon {
    color: #2ECC71;
}

.partnership-item:nth-child(3) .partnership-icon {
    color: #F39C12;
}

.partnership-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;   
    color: #ffffff;
}

.partnership-item p {
    color: #666;
    line-height: 1.5;
    position: relative;
    z-index: 1; 
    color: #ffffff;
}

/* FAQ Section Styles */
.faq-section {
    padding: var(--space-3xl) 0;
    background: #FFFFFF;
}

.faq-category {
    margin-bottom: var(--space-3xl);
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    justify-content: center;
}

.faq-category-header .section-title {
    margin: 0;
    line-height: 1.5;
}

.faq-category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    background: #2DA3D9;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 6px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid #3498DB;
}

.faq-item:hover {
    transform: translateY(-2px);
}


.faq-icon{
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-content: flex-start;
    align-items: center;
    border: 1px solid #2DA3D9;
    color: #2DA3D9;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    background: #F9FAFE;
}

.faq-question:hover {
    background: rgba(52, 152, 219, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    padding-right: var(--space-md);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--space-lg) var(--space-xl) var(--space-xl) var(--space-xl);
    opacity: 1;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-left {
        padding-right: 0;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        align-self: center;
    }
    
    .team-image {
        height: 250px;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 2rem 0 1.5rem 0;
    }
    
    /* Benefits Page Responsive */
    .effects-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .effect-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .effect-content {
        padding-left: 0;
    }
    
    /* ROI Analysis Responsive */
    .roi-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .roi-item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .roi-result {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .roi-result-icon {
        font-size: 2rem;
    }
    
    .roi-result-value {
        font-size: 2rem;
    }
    
    /* Innovation Points Responsive */
    .innovation-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .innovation-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .innovation-content {
        padding-left: 0;
    }
    
    .page-header-content {
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: 1.8rem;
        color: #333;
    }
    
    .page-subtitle {
        font-size: 1rem;
        color: #1a1a1a;
    }
    
    .page-description {
        font-size: 0.9rem;
        max-width: 400px;
        color: #666;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding-left: 1rem;
        padding-right: 1rem;
        padding: 1rem 0;
        min-height: 70px;
    }
    
    .logo img {
        height: 45px;
        max-width: 150px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .nav-list {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.95rem; /* 모바일에서도 폰트 크기 약간 증가 */
    }
    
    .dropdown-menu {
        min-width: 140px;
        max-width: 180px;
        border-radius: 12px;
        padding: 6px 0;
    }
    
    .dropdown-menu a {
        padding: 0.7rem 1rem;
        font-size: 0.9rem; /* 드롭다운 메뉴 폰트 크기도 약간 증가 */
        margin: 0 0.25rem;
    }
    
    /* Hero Section Responsive */
    .hero {
        margin-top: 70px;
    }
    
    .hero-slider {
        width: 100% !important;
        max-width: 100% !important;
        height: 500px;
        min-height: 400px;
        padding: 0;
        box-sizing: border-box;
    }
    
    .hero-slider .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0.5rem 1rem;
        box-sizing: border-box;
        align-items: center;
        justify-content: center;
    }
    
    .slide-text {
        padding: 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .slide-title {
        font-size: 1.8rem;
        color: #333333;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }
    
    .slide-description {
        font-size: 0.95rem;
        color: #666666;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }
    
    .slide-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
        flex: none;
        max-height: none;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .slide-image img {
        max-height: 200px;
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        box-sizing: border-box;
    }
    
    /* Solution Hero Responsive */
    .solution-hero {
        padding: 3rem 0;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .hero-text {
        width: 100%;
    }
    
    .hero-text h3 {
        font-size: 1.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    /* Architecture Section Responsive */
    .architecture-section {
        padding: 3rem 0;
    }
    
    .architecture-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .architecture-image {
        width: 100%;
    }
    
    .architecture-description {
        width: 100%;
    }
    
    .architecture-description h3 {
        font-size: 1.5rem;
    }
    
    .architecture-description p {
        font-size: 1rem;
    }
    
    /* Dashboard Section Responsive */
    .dashboard-section {
        padding: 3rem 0;
    }
    
    .dashboard-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .dashboard-image {
        width: 100%;
    }
    
    .dashboard-features {
        width: 100%;
    }
    
    .dashboard-features h3 {
        font-size: 1.5rem;
    }
    
    /* Integration Section Responsive */
    .integration-section {
        padding: 3rem 0;
    }
    
    .integration-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .integration-image {
        width: 100%;
    }
    
    .integration-description {
        width: 100%;
    }
    
    .integration-description h3 {
        font-size: 1.5rem;
    }
    
    .integration-description p {
        font-size: 1rem;
    }
    
    /* Scenarios Section Responsive */
    .scenarios-section {
        padding: 3rem 0;
    }
    
    .scenarios-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .scenario-item {
        width: 100%;
        flex: none;
        flex-direction: column;
        padding: 1.5rem;
    }
    
    /* 모바일에서 순서 변경: 사용자 정의 이벤트 → 보안 위협 감지 → 운영 장애 감지 */
    .scenario-item:nth-child(1) {
        order: 3; /* 운영 장애 감지 시나리오를 마지막으로 */
    }
    
    .scenario-item:nth-child(2) {
        order: 2; /* 보안 위협 감지 시나리오를 중간으로 */
    }
    
    .scenario-item:nth-child(3) {
        order: 1; /* 사용자 정의 이벤트 시나리오를 첫 번째로 */
    }
    
    .scenario-content h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        padding: 15px;
    }
    
    .scenario-content p {
        font-size: 0.9rem;
    }
    
    /* Scroll to Top Button Responsive */
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0.8rem 1rem;
        min-height: 60px;
    }
    
    .logo img {
        height: 40px;
        max-width: 120px;
    }
    
    .hero {
        margin-top: 60px;
    }
    
    .hero-slider {
        padding: 0;
        min-height: 350px;
    }
    
    .hero-slider .container {
        padding: 0 0.75rem;
        width: 100%;
        max-width: 100%;
    }
    
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slide-content {
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        padding: 0.25rem 0.75rem;
    }
    
    .slide-text {
        padding: 0.5rem 0;
        width: 100%;
        max-width: 100%;
    }
    
    .slide-image {
        width: 100%;
        max-width: 100%;
    }
    
    .slide-image img {
        max-height: 150px;
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .slide-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .slide-description {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .main-slogan {
        padding: 2rem 0;
    }
    
    .slogan-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .solution-content {
        flex-direction: column;
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .qa-categories {
        grid-template-columns: 1fr;
    }
    
    .about-details {
        grid-template-columns: 1fr;
    }
    
    .contact-services {
        grid-template-columns: 1fr;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        align-items: flex-start;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .roi-details {
        gap: 0.5rem;
    }
    
    .roi-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    
    .overview-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-item,
    .vision-item {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .growth-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline::before {
        left: 0.5rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
    }
    
    .timeline-item::before {
        left: -1rem;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .team-main-image img {
        height: 300px;
    }
    
    .image-overlay {
        padding: 1.5rem;
    }
    
    .image-overlay h3 {
        font-size: 1.3rem;
    }
    
    .image-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .slide-title {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: var(--space-xl);
    }
    
    .section-title::before {
        width: 40px;
        height: 3px;
        top: -16px;
    }
    
    .section-title::after {
        width: 60px;
        height: 1.5px;
        bottom: -12px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }
    
    .solution-title {
        font-size: 1.5rem;
    }
    
    .solution-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* ROI Analysis Responsive */
    .roi-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .roi-chart-container {
        padding: var(--space-lg);
    }
    
    .chart-visual {
        height: 150px;
    }
    
    .chart-bars {
        gap: 0.25rem;
    }
    
    .bar-value {
        font-size: 0.7rem;
        top: -20px;
    }
    
    .chart-labels span {
        font-size: 0.7rem;
    }
    
    .roi-details {
        padding: var(--space-lg);
    }
    
    .roi-criteria {
        font-size: 1rem;
    }
    
    .roi-list li {
        font-size: 0.9rem;
    }
    
    /* FAQ Responsive */
    .faq-category-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
        align-items: center;
    }
    
    .faq-category-header .section-title {
        margin: 0;
        line-height: 1.5;
    }
    
    .faq-category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: var(--space-lg);
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: var(--space-sm);
    }
    
    .faq-answer {
        padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
    }
    
    .faq-item.active .faq-answer {
        padding-top: var(--space-md);
    }
    
    /* Scroll to Top Button Responsive */
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 0.9rem;
    }
}

/* Modern Icon Colors for Defender Features */
.features-section .feature-icon i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.features-section .feature-icon i:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Zero Trust MicroSegmentation - Security Blue */
.features-section .feature-item:first-child .feature-icon i {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 통합 호스트 방화벽 관리 - Firewall Orange */
.features-section .feature-item:nth-child(2) .feature-icon i {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 실시간 위협 탐지 - Detection Purple */
.features-section .feature-item:last-child .feature-icon i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Title icons with same colors */
.features-section .feature-item:first-child h3 i {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-section .feature-icon i {
        font-size: 2rem;
    }
}
