/* 색상 변수 */
:root {
    --primary-color: #CC9D42;
    --text-primary: #333333;
    --text-secondary: #555555;
    --border-light: #EEEEEE;
    --background-dark: #2a2a2a;
    --text-light: #bdc3c7;
    --text-muted: #95a5a6;
}

/* Pretendard 폰트 설정 */
* {
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    word-break: keep-all;
}

/* 리셋 CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    word-break: keep-all;
}

main {
    flex: 1;
}

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

/* 상세페이지용 컨테이너 (최대 너비 1080px) */
.container-detail {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 헤더 스타일 */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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


/* 컨설팅 버튼 */
.consulting-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4a052 100%);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(204, 157, 66, 0.25);
    white-space: nowrap;
}

.consulting-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 157, 66, 0.35);
}

.consulting-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.consulting-btn:hover i {
    transform: translateX(3px);
}

/* 모바일 고정 버튼은 PC에서 숨김 */
.mobile-consulting-btn {
    display: none !important;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    position: absolute;
    transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span:nth-child(3) {
    bottom: 0;
}

.nav-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.nav-close {
    display: none;
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
    font-size: 24px;
    color: var(--text-primary);
    z-index: 10000;
}

/* 데스크톱 메뉴 */
.nav-menu-desktop {
    display: flex;
    list-style: none;
    gap: 0rem;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    margin-right: 1rem;
    margin-left: auto;
}

.nav-menu-desktop .nav-item > a {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu-desktop .nav-item > a:hover {
    background: rgba(204, 157, 66, 0.08);
    color: var(--primary-color);
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-item > a:hover {
    color: var(--primary-color);
}

.nav-item > a .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

/* 드롭다운 메뉴 스타일 개선 */
.nav-item .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0.5rem 0 0 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-item:hover .dropdown-menu,
.nav-item .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 1rem;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-item .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-item .dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(204, 157, 66, 0.08) 0%, rgba(204, 157, 66, 0.04) 100%);
    color: var(--primary-color);
    padding-left: 1.8rem;
    font-weight: 600;
}

.mobile-menu-footer {
    padding: 1.5rem;
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
}

.mobile-consulting-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4a052 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.mobile-consulting-btn:hover {
    background: #b8874a;
    opacity: 0.9;
}

.mobile-menu-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-menu-links a {
    color: #999;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

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

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

    .nav-toggle {
        display: flex;
    }

    .consulting-btn {
        display: none;
    }

    /* 태블릿에서 푸터를 모바일 스타일로 적용 */
    .site-footer {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-section {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* 모바일 메뉴 스타일 */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #f8f8f8;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

.mobile-logo img {
    height: 35px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    color: var(--text-primary);
}

.mobile-menu-body {
    padding: 0;
}

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

.mobile-nav-item {
    border-bottom: 1px solid #e5e5e5;
}

.mobile-nav-item > a,
.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-item > a::after,
.mobile-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
}

.mobile-nav-item > a:hover,
.mobile-nav-link:hover {
    background: rgba(204, 157, 66, 0.05);
    padding-left: 1.8rem;
}

.mobile-nav-item > a:hover::after,
.mobile-nav-link:hover::after {
    height: 60%;
}

.mobile-nav-item.active .mobile-nav-link {
    background: rgba(204, 157, 66, 0.1);
    color: var(--primary-color);
}

.mobile-nav-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

.fa-chevron-down {
    transition: transform 0.3s ease;
    color: #999;
    font-size: 12px;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-submenu li {
    border-top: 1px solid #eee;
}

.mobile-submenu li:first-child {
    border-top: none;
}

.mobile-submenu a {
    display: block;
    padding: 0.9rem 1.5rem 0.9rem 2.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-submenu a::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-submenu a:hover {
    background: rgba(204, 157, 66, 0.05);
    color: var(--primary-color);
    padding-left: 3.2rem;
}

.mobile-submenu a:hover::before {
    background: var(--primary-color);
    width: 6px;
    height: 6px;
}

/* 메인 콘텐츠 - 헤더 높이만큼 패딩으로 조정 */
main section:first-child {
    padding-top: 80px;
}

/* 개인정보처리방침 페이지 상단 마진 */
.privacy-section {
    margin-top: 40px;
}

/* 히어로 섹션 */
.hero {
    min-height: 80vh;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bg_platform_main.webp') center/cover no-repeat;
    transform: scaleY(-1);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.hero .container,
.hero .container-detail {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #d4a052);
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.hero-title .highlight {
    background: linear-gradient(45deg, var(--primary-color), #d4a052, #f0c674, var(--primary-color));
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-color);
    font-weight: 800;
    animation: gradientMove 3s ease-in-out infinite;
    display: inline-block;
}

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

.scroll-indicator {
    margin-top: 6rem;
}

.scroll-indicator p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.scroll-arrow {
    display: flex;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 auto;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.scroll-arrow:hover {
    background: #B8832A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(204, 157, 66, 0.4);
    color: white;
}

.scroll-arrow i {
    pointer-events: none;
}

html {
    scroll-behavior: smooth;
}

/* Philosophy & Vision Section */
.philosophy-vision {
    min-height: 30vh;
    max-height: 35vh;
    background: url('../img/bg_edea_depart.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-vision .container,
.philosophy-vision .container-detail {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.philosophy-vision h2 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
}

.philosophy-vision p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Company Introduction Section */
.company-intro {
    padding: 100px 0;
    background: #ffffff;
}

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

.intro-text {
    flex: 1;
    text-align: left;
}

.intro-text h2 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.intro-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
}

.intro-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-block;
    padding: 16px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 180px;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4a052 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(204, 157, 66, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 157, 66, 0.4);
    color: white;
    text-decoration: none;
}

.cta-btn.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Investment Strategy Sections */

/* Investment Intro Section */
.investment-intro {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.intro-box {
    width: 100%;
    min-height: 350px;
    background: url('../img/bg_econo.jpg') center/contain no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 60px 20px;
    box-sizing: border-box;
    position: relative;
}

.intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    z-index: 1;
}

.intro-box h2 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    text-align: center;
}

.intro-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
    text-align: center;
}

.investment-intro p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Investment Features Section */
.investment-features {
    padding: 100px 0;
    background: #ffffff;
    text-align: center;
}

.investment-features h2 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.investment-features h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 50px;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 50px 0;
    align-items: center;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-wrapper {
    width: 150px;
    height: 150px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.circle-wrapper:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.circle-inner {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(204, 157, 66, 0.1) 0%, rgba(212, 164, 82, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.circle-wrapper:hover .feature-icon {
    transform: scale(1.1);
}

.feature-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: center;
}

.feature-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
}

.investment-features p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Value Investment Section */
.value-investment {
    padding: 100px 0 200px 0;
    /* margin-bottom: 100px; */
    background: #ffffff;
}

.value-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.value-image {
    flex: 1;
    min-width: 300px;
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 5/3;
    background: #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
}

.business-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.business-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18), 0 8px 15px rgba(0, 0, 0, 0.12);
}

.value-text {
    flex: 1;
    text-align: left;
}

.value-text h2 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.value-text h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.4;
    letter-spacing: -0.03em;
}

.value-btn {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.value-btn:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Final Investment Section */
.final-investment {
    background: url('../img/bg_final.webp') center/cover no-repeat fixed;
    background-position: center center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow: hidden;
}

.final-investment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.final-investment .container-detail {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 950px;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.final-investment h2 {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4a052 100%);
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(204, 157, 66, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.final-investment h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.final-investment p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 0.3px;
    }

    .hero-subtitle::after {
        width: 50px;
        height: 1.5px;
    }

    .philosophy-vision {
        min-height: 25vh;
        max-height: 30vh;
    }

    .philosophy-vision h2 {
        font-size: 2.5rem;
    }

    .philosophy-vision p {
        font-size: 1rem;
    }

    .company-intro {
        padding: 60px 0;
    }

    .intro-content-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .intro-text {
        text-align: center;
    }

    .intro-text h2 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .intro-text p {
        font-size: 1.1rem;
    }

    .intro-buttons {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-btn {
        min-width: 140px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    /* Investment Strategy Sections - Mobile */
    .company-intro,
    .investment-intro,
    .investment-features,
    .value-investment {
        padding: 70px 0 150px 0;
    }

    .final-investment {
        padding: 50px 15px;
        min-height: 60vh;
        background-attachment: fixed;
        display: flex;
        align-items: center;
    }

    .final-investment .container-detail {
        padding: 40px 25px;
        border-radius: 20px;
        max-width: 100%;
        margin: 0 auto;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.7);
        width: 100%;
        box-sizing: border-box;
    }

    .investment-intro h2,
    .investment-features h2,
    .value-text h2 {
        font-size: 1rem;
    }

    .final-investment h2 {
        font-size: 0.95rem;
        padding: 10px 20px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .intro-box {
        min-height: 250px;
        margin-bottom: 30px;
        padding: 50px 15px;
    }

    .intro-box h2 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .intro-box h3 {
        font-size: 1.4rem;
        padding: 0 10px;
    }

    .investment-features h3,
    .final-investment h3 {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    .features-grid {
        flex-direction: column;
        gap: 40px;
        margin: 40px 0;
    }

    .circle-wrapper {
        width: 130px;
        height: 130px;
    }

    .circle-inner {
        width: 100px;
        height: 100px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-value {
        font-size: 1.1rem;
    }

    .feature-label {
        font-size: 0.9rem;
    }

    .value-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .value-image {
        width: 100%;
        min-width: auto;
    }

    .placeholder-image {
        aspect-ratio: 5/3;
    }

    .value-text {
        text-align: center;
    }

    .value-text h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .value-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .investment-intro p,
    .investment-features p,
    .final-investment p {
        font-size: 0.95rem;
    }

    .investment-section h2 {
        font-size: 2.5rem;
    }

    .investment-section p {
        font-size: 1rem;
    }

}

/* 푸터 스타일 */
.site-footer {
    background: var(--background-dark);
    color: white;
    padding: 6rem 0 6rem;
    font-size: 14px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-left {
    flex: 1;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
}

.company-info p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0.3rem;
}

.footer-copyright {
    margin-top: 2rem;
}

.footer-copyright p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.partner-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.partner-logo {
    height: 30px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-menu.active::before {
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .dropdown {
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-menu .dropdown > a {
        font-size: 18px;
        font-weight: 600;
        color: var(--text-primary);
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        display: block;
    }

    .nav-menu .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0.5rem 0 1rem 1rem;
        margin-top: 0.5rem;
    }

    .nav-menu .dropdown-menu a {
        font-size: 15px;
        color: var(--text-secondary);
        padding: 0.5rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .consulting-btn {
        display: none;
    }

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

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

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

    .hero h1 {
        font-size: 2rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-left {
        order: 1;
    }

    .footer-right {
        order: 0;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }

    .footer-nav {
        gap: 1rem;
        justify-content: center;
        flex-wrap: nowrap;
        padding: 0 10px;
        width: 100%;
        display: flex;
    }

    .footer-nav a {
        font-size: 13px;
        white-space: nowrap;
    }

    .partner-logos {
        justify-content: center;
        gap: 0.5rem;
        padding: 0 10px;
        flex-wrap: nowrap;
        width: 100%;
        display: flex;
    }

    .partner-logo {
        height: 20px;
        max-width: calc(25% - 0.375rem);
        object-fit: contain;
    }

    .company-info p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 0.2rem;
    }

    .footer-copyright {
        margin-top: 1.5rem;
    }

    .footer-copyright p {
        font-size: 13px;
    }

    /* 모바일 고정 컨설팅 버튼 */
    .mobile-consulting-btn {
        position: fixed;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        max-width: 320px;
        background: var(--primary-color);
        color: white;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        text-align: center;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        display: block !important;
    }

    /* 문의하기 페이지에서 모바일 고정 버튼 숨김 */
    .contact-page .mobile-consulting-btn {
        display: none !important;
    }

    /* 모바일 메뉴 내 컨설팅 버튼은 하단 고정 버튼이 있으므로 숨김 */
    .mobile-menu-footer .mobile-consulting-btn {
        display: none !important;
    }

    .mobile-consulting-btn:hover {
        background: #b8874a;
        opacity: 0.9;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 90vw;
        padding: 1.5rem;
    }

    .checkbox-label {
        font-size: 0.8rem;
    }

    .checkbox-text {
        font-size: 0.8rem;
    }

    .view-details-btn {
        font-size: 0.75rem;
    }

    .consent-group {
        padding: 20px 15px;
    }
}

/* 서브페이지 스타일 */
.hero-sub {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4a052 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero-sub h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-sub p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 회사소개 페이지 */
.about-vision {
    padding: 5rem 0;
    background: #f8f9fa;
}

.vision-graphic {
    text-align: center;
    color: var(--primary-color);
    font-size: 8rem;
}

.about-values {
    padding: 5rem 0;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* 사업부 페이지 */
.business-overview {
    padding: 5rem 0;
}

.business-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.business-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4a052 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.business-icon i {
    color: white;
    font-size: 2rem;
}

.business-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.btn-detail {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-detail:hover {
    background: #b8874a;
    transform: translateY(-2px);
}

/* 개인정보처리방침 페이지 스타일 */
.privacy-section {
    padding: 100px 0 80px 0;
    background: white;
    margin-top: 40px;
}

.privacy-section h1 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin: 2rem 0 3rem 0;
    text-align: center;
    font-weight: 600;
}

.privacy-content {
    background: white;
    padding: 2rem 0;
    line-height: 1.7;
    color: var(--text-primary);
}

.privacy-content > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.privacy-content h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
}

.privacy-content h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.privacy-content h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.effective-date {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--primary-color);
    margin: 2rem 0 3rem 0;
}

.info-item {
    background: #f8f9fa;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 3px solid var(--primary-color);
}

.info-item h3 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.info-item h4 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem 0;
}

.info-item p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.info-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.info-item li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info .info-item {
    margin: 0;
}

/* 자주 묻는 질문 페이지 스타일 */
.faq-section {
    padding: 120px 0 80px 0;
    background: white;
    margin-top: 40px;
}

.faq-section h1 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.faq-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e5e5;
    margin-bottom: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(204, 157, 66, 0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(204, 157, 66, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
    flex: 1;
    line-height: 1.4;
}

.faq-question .fas {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 2rem;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* FAQ 반응형 디자인 */
@media (max-width: 768px) {
    .faq-section {
        padding: 100px 0 60px 0;
    }

    .faq-section h1 {
        font-size: 1.8rem;
    }

    .faq-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* 개인정보 동의 모달 스타일 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.modal-container {
    background: white;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

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

.modal-header {
    padding: 0.8rem 1rem 0.5rem 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: #f0f0f0;
    color: #666;
}

.modal-content {
    padding: 0.7rem 1rem;
    overflow-y: auto;
    flex: 1;
}

.section {
    margin-bottom: 1rem;
}

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

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--primary-color);
}

.section-text {
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}

.data-table th,
.data-table td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: left;
    vertical-align: top;
}

.data-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: var(--text-primary);
    width: 25%;
}

.data-table td {
    color: var(--text-secondary);
}

.modal-footer {
    padding: 0.5rem 1rem 0.8rem 1rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.confirm-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.confirm-btn:hover {
    background: #b8874a;
    transform: translateY(-2px);
}

/* 이벤트 모달 전용 스타일 */
.event-content {
    text-align: center;
    padding: 1.5rem 1rem;
}

.event-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.event-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

.event-apply-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.event-apply-btn:hover {
    background: #b8874a;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.event-close-btn {
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.event-close-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* 문의하기 페이지 폼 오버레이 스타일 */
.form-wrapper {
    position: relative;
}

.form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.overlay-message {
    text-align: center;
    color: white;
    background: rgba(204, 157, 66, 0.9);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.form-overlay:hover .overlay-message {
    transform: scale(1);
    background: var(--primary-color);
}

.overlay-message i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.overlay-message p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 비활성화된 폼 요소 스타일 */
.contact-form input[disabled],
.contact-form select[disabled],
.contact-form textarea[disabled] {
    background-color: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
    border-color: #dee2e6;
}

.contact-form .submit-btn[disabled] {
    background-color: #adb5bd;
    color: #6c757d;
    cursor: not-allowed;
    border-color: #adb5bd;
}

.view-details-btn.disabled {
    color: #adb5bd;
    cursor: not-allowed;
    pointer-events: none;
}

/* 모달 반응형 디자인 */
@media (max-width: 768px) {
    .modal-container {
        max-height: 90vh;
        margin: 10px;
        border-radius: 8px;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-content {
        padding: 1rem 1.5rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .data-table th,
    .data-table td {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .modal-footer {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
        flex-direction: row;
        gap: 0.8rem;
        justify-content: space-between;
    }

    .confirm-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        flex: 1;
        max-width: 180px;
    }

    .event-apply-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        flex: 1;
        max-width: 180px;
    }

    .event-close-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        flex: 1;
        max-width: 180px;
    }

    .event-logo {
        width: 100px;
        margin-bottom: 1rem;
    }

    .overlay-message {
        padding: 1.5rem;
    }

    .overlay-message i {
        font-size: 1.8rem;
    }

    .overlay-message p {
        font-size: 1.1rem;
    }
}

/* 개인정보처리방침 반응형 디자인 */
@media (max-width: 768px) {
    .privacy-section {
        padding: 80px 0 60px 0;
    }

    .privacy-section h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .privacy-content {
        padding: 1.5rem 0;
    }

    .privacy-content h2 {
        font-size: 1.4rem;
        margin: 2rem 0 1rem 0;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-item {
        padding: 1.2rem;
    }
}

.business-synergy {
    padding: 4rem 0;
    background: #f8f9fa;
}

.synergy-diagram {
    font-size: 6rem;
    color: var(--primary-color);
    margin-top: 2rem;
}

/* 세부 사업부 페이지 */
.division-overview {
    padding: 5rem 0;
}

/* Division Page Hero Styles */
.division-hero {
    background: linear-gradient(135deg, rgba(204, 157, 66, 0.7) 0%, rgba(150, 100, 20, 0.8) 50%, rgba(100, 60, 10, 0.75) 100%), url('../img/6bg.webp') center/cover no-repeat;
    color: white;
    padding: 6rem 0 3rem;
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.division-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 300px;
}

.division-hero .hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.division-hero .hero-text h4 {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.division-content {
    padding: 5rem 0;
}

.division-intro {
    text-align: left;
    max-width: 800px;
}

.division-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #e67e22;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.division-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
    text-align: left;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.division-additional {
    padding: 5rem 0;
}

.division-visual {
    text-align: center;
    color: var(--primary-color);
}

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

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 1rem;
}

.services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.achievements {
    padding: 5rem 0;
}

.achievement-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* 문의하기 페이지 스타일 */
.contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/bg_process.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    margin-top: 80px;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.contact-hero .container-detail {
    width: 100%;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-form-section {
    padding: 80px 0;
    background: white;
}

/* 회사소개 페이지 스타일 */

/* Hero Section */
.about-hero {
    padding: 200px 0 150px;
    margin-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #fff3e6 100%);
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0;
    word-break: keep-all;
    white-space: pre-line;
}

.about-hero h1 strong {
    color: var(--primary-color);
    font-size: 2em;
    display: inline-block;
}

/* 텍스트 애니메이션 */
#animatedText {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
    display: inline-block;
}

/* Intro Section */
.about-intro {
    padding: 100px 0;
    background: white;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-content .text-content {
    flex: 1;
    text-align: left;
}

.intro-content .text-content h2 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.intro-content .text-content p {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.image-placeholder {
    width: 450px;
    height: 300px;
    background-color: #d9d9d9;
    border-radius: 8px;
    flex-shrink: 0;
}

/* Vision Section */
.about-vision {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.about-vision .quote {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.4;
}

.about-vision .description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Divider */
.section-divider {
    position: relative;
    z-index: 10;
    margin: -50px 0;
    text-align: center;
    height: 100px;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    height: 100px;
    background: rgb(231, 200, 139);
    transform: translateX(-50%);
}

.section-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right:7px solid transparent;
    border-top: 9px solid rgb(231, 200, 139);
    transform: translateX(-50%);
}

/* Timeline Section */
.about-timeline {
    padding: 120px 0;
    background: #fafafa;
}

.timeline-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 80px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 160px;
}

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

.timeline-item.reverse {
    flex-direction: row-reverse;
}

.timeline-item .text-content {
    flex: 1;
}

.timeline-item .year {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(204, 157, 66, 0.15);
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 2px solid rgba(204, 157, 66, 0.3);
}

.timeline-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.timeline-item p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Affiliates Section */
.about-affiliates {
    padding: 0;
    background: #fafafa;
    text-align: center;
}

.about-affiliates .section-header {
    padding: 80px 0 60px;
    background: #fafafa;
}

.section-divider-line {
    width: 60px;
    height: 2px;
    background: rgb(231, 200, 139);
    margin: 0 auto 30px auto;
}

.about-affiliates .section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-affiliates .section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 auto;
}

.affiliates-container {
    display: flex;
    width: 100%;
    height: 60vh;
    min-height: 450px;
    position: relative;
}

.affiliates-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.6s ease;
    opacity: 1;
    z-index: 0;
}

.affiliate-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.linkers-card {
    background: transparent;
}

.mega-card {
    background: transparent;
}

.signi-card {
    background: transparent;
}

.edea-card {
    background: transparent;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    z-index: 1;
}

.affiliate-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.affiliate-card:last-child {
    border-right: none;
}

/* PC 배경 변경 효과 */
.affiliates-container[data-active="linkers"] .affiliates-background {
    background-image: url('../img/bg_brand1.webp');
}

.affiliates-container[data-active="mega"] .affiliates-background {
    background-image: url('../img/bg_brand2.webp');
}

.affiliates-container[data-active="signi"] .affiliates-background {
    background-image: url('../img/bg_brand3.webp');
}

.affiliates-container[data-active="edea"] .affiliates-background {
    background-image: url('../img/bg_brand4.webp');
}

.affiliates-container[data-active="smetal"] .affiliates-background {
    background-image: url('../img/bg_brand5.webp');
}

.affiliate-content {
    text-align: center;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
    width: 90%;
    padding: 20px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.affiliate-logo {
    width: 140px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.affiliate-logo img {
    max-width: 100%;
    max-height: 100%;
    /* margin-top: auto; */
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.affiliate-card:hover .affiliate-logo {
    transform: scale(1.05);
}


.affiliate-services {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
}

.affiliate-services li {
    font-size: 1rem;
    margin-bottom: 8px;
    opacity: 0.85;
    transition: all 0.3s ease;
    transform: translateY(5px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.affiliate-card:hover .affiliate-services li {
    opacity: 1;
    transform: translateY(0);
}

.affiliate-services li:nth-child(1) { transition-delay: 0.05s; }
.affiliate-services li:nth-child(2) { transition-delay: 0.1s; }
.affiliate-services li:nth-child(3) { transition-delay: 0.15s; }

/* 바로가기 아이콘 */
.affiliate-link-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-50%) translateX(10px);
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: none;
    border: none;
}

.affiliate-link-icon {
    font-size: 20px;
    font-weight: 300;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.affiliate-card:hover .affiliate-link-icon {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.affiliate-link-icon:hover {
    transform: translateY(-50%) translateX(-5px);
}

/* Vision Steps Section */
.about-vision-steps {
    padding: 90px 0;
    background: white;
    position: relative;
}

.about-vision-steps::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1080px, 90vw);
    height: 2px;
    background: #ccc;
}

.vision-header {
    margin-bottom: 60px;
}

.vision-header .section-label {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.vision-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.vision-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.vision-step {
    position: relative;
}

.vision-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #333;
}

.step-number {
    color: var(--primary-color);
    font-size: 3.5rem;
    font-weight: 700;
    margin: 40px 0 25px 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* 태블릿 반응형 */
@media (max-width: 1024px) and (min-width: 769px) {
    .performance-cards {
        gap: 15px;
    }

    .performance-card {
        min-width: 0;
        flex: 1;
        padding: 20px 15px;
        min-height: 180px;
    }

    .card-year {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .card-item .label {
        font-size: 0.85rem;
    }
}

/* 중간 태블릿 반응형 */
@media (max-width: 950px) and (min-width: 851px) {
    .performance-cards {
        gap: 12px;
    }

    .performance-card {
        padding: 20px 12px;
        min-height: 170px;
    }

    .card-year {
        font-size: 0.98rem;
        margin-bottom: 12px;
    }

    .card-item .label {
        font-size: 0.82rem;
    }
}

/* 작은 태블릿 반응형 */
@media (max-width: 850px) and (min-width: 769px) {
    .performance-cards {
        gap: 8px;
    }

    .performance-card {
        padding: 15px 10px;
        min-height: 150px;
    }

    .card-year {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .card-item .label {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .about-vision-steps {
        padding: 60px 0;
    }

    .vision-header {
        margin-bottom: 50px;
    }

    .vision-header h2 {
        font-size: 1.6rem;
    }

    .vision-steps {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 60px;
    }

    .step-number {
        font-size: 2.8rem;
        margin: 30px 0 20px 0;
    }

    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .step-content li {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
}

/* Corporate Performance Section */

/* 비상장주식 카드들 */
.performance-category:nth-child(1) .performance-card {
    min-height: 160px;
}

/* 단기회사채 카드들 */
.performance-category:nth-child(2) .performance-card {
    min-height: 160px;
}

/* 미술작가 선의 카드들 */
.performance-category:nth-child(3) .performance-card {
    min-height: 160px;
}

/* 유료컨설팅/해외금융/부동산 카드들 */
.performance-category:nth-child(4) .performance-card {
    min-height: 160px;
}

/* Corporate Performance Section */
.corporate-performance {
    padding: 90px 0;
    background: white;
}

.performance-header {
    margin-bottom: 60px;
}

.performance-header .section-label {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.performance-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.performance-category {
    margin-bottom: 80px;
}

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

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.category-icon {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
}

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

.performance-cards {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.performance-cards .arrow {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.performance-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    flex: 1;
    min-width: 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

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

.card-year {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.card-content {
    margin-bottom: 10px;
    flex-grow: 1;
}

.card-item {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.card-item .label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}


/* 모바일 반응형 */
@media (max-width: 768px) {
    .corporate-performance {
        padding: 60px 0;
    }

    .performance-header {
        margin-bottom: 50px;
    }

    .performance-header h2 {
        font-size: 1.6rem;
    }

    .performance-category {
        margin-bottom: 60px;
    }

    .category-header h3 {
        font-size: 1.2rem;
    }

    .performance-cards {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .performance-cards .arrow {
        transform: rotate(90deg);
        font-size: 16px;
    }

    .performance-card {
        padding: 25px;
        width: 100%;
        min-width: 300px;
        max-width: 500px;
        min-height: auto;
        text-align: center;
    }

    /* 모바일에서는 카드 크기 통일 해제 */
    .performance-category:nth-child(1) .performance-card,
    .performance-category:nth-child(2) .performance-card,
    .performance-category:nth-child(3) .performance-card,
    .performance-category:nth-child(4) .performance-card {
        min-height: auto;
    }

    .card-year {
        font-size: 1rem;
    }

    .card-item .label {
        font-size: 0.85rem;
    }

    .card-item {
        justify-content: center;
        align-items: center;
    }
}

/* Closing Section */
.about-closing {
    padding: 150px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    text-align: center;
    min-height: 500px;
}

.about-closing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.closing-box {
    background: url('../img/bg_about_clo.webp') center center / cover no-repeat;
    padding: 100px 60px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 2;
    max-width: 1000px;
    min-height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.closing-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}


.closing-box::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    opacity: 0.3;
}

.about-closing p {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    line-height: 1.4;
    position: relative;
    z-index: 3;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 157, 66, 0.4);
    text-decoration: none;
}


.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group:has(#email) {
    margin-bottom: 30px;
}

.form-group:has(#inquiry-type) {
    margin-bottom: 40px;
}

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.required {
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-primary);
    background: white;
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(204, 157, 66, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(204, 157, 66, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23CC9D42' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding: 16px 48px 16px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    width: 100%;
}

.form-group select:hover {
    border-color: rgba(204, 157, 66, 0.5);
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(204, 157, 66, 0.1);
}

.form-group select option {
    padding: 10px;
    background: white;
    color: var(--text-primary);
}

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

.consent-group {
    margin: 40px 0;
    padding: 25px;
    background: rgba(204, 157, 66, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(204, 157, 66, 0.2);
}

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

.checkbox-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label {
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
}

.checkbox-text {
    display: inline;
}

.view-details-btn {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

.view-details-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-primary);
}

.view-details-btn:hover {
    color: var(--primary-color);
}

.view-details-btn:hover::after {
    background: var(--primary-color);
}

.form-submit {
    text-align: center;
    margin-top: 50px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4a052 100%);
    color: white;
    padding: 18px 60px;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 157, 66, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 157, 66, 0.4);
}

@media (max-width: 768px) {
    .hero-sub h1 {
        font-size: 2rem;
    }

    .hero-sub {
        padding: 6rem 0 3rem;
    }

    .about-vision, .business-overview, .division-overview, .services, .achievements {
        padding: 3rem 0;
    }

    .vision-graphic {
        font-size: 4rem;
    }

    .contact-hero {
        padding: 100px 0 60px;
        min-height: 300px;
        background-attachment: scroll;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .about-hero {
        padding: 100px 0 60px;
        margin-top: 80px;
    }

    .about-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.2rem;
    }

    .section-header h3 {
        font-size: 1.6rem;
    }

    .content-block h4 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .content-block p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* 회사소개 페이지 모바일 스타일 */
    .about-hero {
        padding: 120px 0 80px;
        margin-top: 80px;
        min-height: 50vh;
    }

    .about-hero h1 {
        font-size: 1.6rem;
        line-height: 1.4;
    }

    .about-intro {
        padding: 80px 0;
    }

    .intro-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

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

    .intro-content .text-content p {
        font-size: 1.8rem;
    }

    .image-placeholder {
        width: 100%;
        max-width: 350px;
        height: 250px;
        margin: 0 auto;
    }

    .about-vision {
        padding: 80px 0;
    }

    .about-vision .quote {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .about-vision .description {
        font-size: 1rem;
    }

    .section-divider {
        margin: -40px 0;
        height: 80px;
    }

    .section-divider::before {
        width: 2px;
        height: 70px;
    }

    .section-divider::before {
        background: rgb(231, 200, 139);
    }

    .section-divider::after {
        top: 70px;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 9px solid rgb(231, 200, 139);
    }

    .about-timeline {
        padding: 80px 0;
    }

    .timeline-title {
        font-size: 2rem;
        margin-bottom: 60px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 120px;
    }

    .timeline-item.reverse {
        flex-direction: column;
    }

    .timeline-item .image-placeholder {
        align-self: center;
        margin-bottom: 10px;
    }

    .timeline-item .text-content {
        text-align: left;
        padding: 0 14px;
    }

    .timeline-item .year {
        font-size: 0.8rem;
        padding: 5px 10px;
        margin-bottom: 12px;
    }

    .timeline-item h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .timeline-item p {
        font-size: 1rem;
    }

    /* Affiliates Section - Mobile */
    .about-affiliates .section-header {
        padding: 60px 0 40px;
    }

    .section-divider-line {
        width: 50px;
        margin: 0 auto 25px auto;
    }

    .about-affiliates .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .about-affiliates .section-header p {
        font-size: 1rem;
    }

    .affiliates-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .affiliates-background {
        display: none;
    }

    .affiliate-card {
        min-height: 250px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    }

    .affiliate-card.linkers-card {
        background: url('../img/bg_brand1.webp');
        background-size: cover;
        background-position: center;
    }

    .affiliate-card.mega-card {
        background: url('../img/bg_brand2.webp');
        background-size: cover;
        background-position: center;
    }

    .affiliate-card.signi-card {
        background: url('../img/bg_brand3.webp');
        background-size: cover;
        background-position: center;
    }

    .affiliate-card.edea-card {
        background: url('../img/bg_brand4.webp');
        background-size: cover;
        background-position: center;
    }

    .affiliate-card.smetal-card {
        background: url('../img/bg_brand5.webp');
        background-size: cover;
        background-position: center;
    }

    .affiliate-card:last-child {
        border-bottom: none;
    }

    .affiliate-card:hover .card-overlay {
        background: rgba(0, 0, 0, 0.2);
    }

    .affiliate-content {
        padding: 15px;
    }

    .affiliate-logo {
        width: 120px;
        height: 60px;
        margin-bottom: 10px;
    }


    .affiliate-services {
        min-height: 60px;
    }

    .affiliate-services li {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    /* 모바일에서는 바로가기 아이콘 기본 표시 */
    .affiliate-link-icon {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
        top: 50%;
        right: 20px;
        bottom: auto;
        left: auto;
        width: auto;
        height: auto;
        background: none;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        border-radius: 0;
    }

    .affiliate-link-icon {
        font-size: 22px;
        font-weight: 300;
        color: white;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .about-closing {
        padding: 100px 0;
        min-height: 400px;
    }

    .about-closing p {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }


    .cta-button {
        padding: 15px 40px;
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group:has(#email) {
        margin-bottom: 20px;
    }

    .form-group:has(#inquiry-type) {
        margin-bottom: 30px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
    }

    .checkbox-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    .checkbox-content {
        justify-content: center;
        flex-wrap: wrap;
    }

    .checkbox-label {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .checkbox-text {
        white-space: nowrap;
    }

    .view-details-btn {
        order: 2;
        margin-top: 10px;
        font-size: 0.85rem;
    }

    .submit-btn {
        padding: 16px 50px;
        font-size: 1rem;
    }
}

/* 개인정보 동의 모달 스타일 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.modal-container {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
    animation: modalSlideIn 0.3s ease-out;
    margin: 20px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.modal-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--text-primary);
}

.modal-content .section {
    margin-bottom: 30px;
}

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

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.section-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
    font-size: 0.95rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.data-table th,
.data-table td {
    border: none;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    padding: 18px 20px;
    text-align: left;
    vertical-align: top;
}

.data-table th:last-child,
.data-table td:last-child {
    border-right: none;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
    border-bottom: none;
}

.data-table th {
    width: 25%;
    background-color: rgba(204, 157, 66, 0.08);
    font-weight: 600;
    color: var(--text-primary);
}

.data-table td {
    background-color: #fff;
    color: var(--text-secondary);
    line-height: 1.5;
}

.modal-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    padding-top: 25px;
    border-top: 1px solid #e8e8e8;
}

.confirm-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4a052 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(204, 157, 66, 0.25);
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 157, 66, 0.35);
}



/* 모바일 모달 스타일 */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 15px;
    }

    .modal-container {
        width: 100%;
        max-height: 85vh;
        padding: 5px;
        margin: 0;
    }

    .modal-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .close-btn {
        font-size: 1.6rem;
        width: 28px;
        height: 28px;
    }

    .modal-content .section {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .section-text {
        font-size: 0.95rem;
    }

    .data-table {
        font-size: 0.9rem;
    }

    .data-table th,
    .data-table td {
        padding: 15px 12px;
    }

    .data-table th {
        width: 30%;
    }

    .modal-footer {
        margin-top: 30px;
        padding-top: 20px;
    }

    .confirm-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* Risk Management Section */
.risk-management-section {
    padding: 90px 0;
    background: white;
}

.risk-management-header {
    margin-bottom: 60px;
    text-align: center;
}

.risk-management-header .section-label {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.risk-management-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.risk-management-category {
    margin-bottom: 80px;
}

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

.risk-management-category .category-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.risk-management-category .category-icon {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
}

.risk-management-category .category-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.risk-management-cards {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.risk-management-cards .arrow {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.risk-management-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    flex: 1;
    min-width: 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

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

.risk-management-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(204, 157, 66, 0.15);
}

.risk-management-card.active:hover {
    box-shadow: 0 8px 30px rgba(204, 157, 66, 0.2);
}

.card-step {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.risk-management-card.active .card-step {
    border-bottom-color: var(--primary-color);
}

.risk-management-card .card-content {
    margin-bottom: 10px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.risk-management-card .card-item {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.risk-management-card .card-item:last-child {
    margin-bottom: 0;
}

.risk-management-card .card-item .label {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
    text-align: center;
    font-weight: 600;
}

.risk-management-card.active .card-item .label {
    color: var(--text-primary);
    font-weight: 700;
}

/* Risk Management 모바일 반응형 */
@media (max-width: 768px) {
    .risk-management-section {
        padding: 60px 0;
    }

    .risk-management-header {
        margin-bottom: 50px;
    }

    .risk-management-header h2 {
        font-size: 1.6rem;
    }

    .risk-management-category {
        margin-bottom: 60px;
    }

    .risk-management-category .category-header h3 {
        font-size: 1.2rem;
    }

    .risk-management-cards {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .risk-management-cards .arrow {
        transform: rotate(90deg);
        font-size: 16px;
    }

    .risk-management-card {
        padding: 25px;
        width: 100%;
        min-width: 300px;
        max-width: 500px;
        min-height: auto;
        text-align: center;
    }

    .card-step {
        font-size: 1rem;
    }

    .risk-management-card .card-item .label {
        font-size: 0.85rem;
    }
}

/* Business Overview Page Styles */
.business-overview-page {
    background: white;
}

/* Business Hero Section */
.business-hero {
    padding: 150px 0 100px;
    margin-top: 80px;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.business-hero .container-detail {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    color: white;
    padding: 60px 0;
}

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

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0 0 32px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.5px;
}

.hero-text h4 {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

.hero-text .highlight {
    color: var(--primary-color);
}

.hero-cta-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 157, 66, 0.3);
}

.hero-cta-btn:hover {
    background: #b8862e;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 157, 66, 0.4);
}

.hero-cta-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateY(2px);
}

/* Business Contact Section */
.business-contact-section {
    padding: 120px 0;
    background: white url('../img/bg_platform_main.webp') center center/cover fixed;
    position: relative;
}

.business-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.business-contact-section .container-detail {
    position: relative;
    z-index: 2;
}

.contact-box {
    background: #faf8f3;
    border-radius: 16px;
    padding: 60px 60px 0;
    display: block;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.contact-content {
    max-width: 50%;
    text-align: left;
    z-index: 2;
    position: relative;
}

.contact-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0 0 32px 0;
}

.contact-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 157, 66, 0.3);
}

.contact-btn:hover {
    background: #b8862e;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 157, 66, 0.4);
}

.contact-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.contact-btn:hover i {
    transform: translateX(4px);
}

.contact-image {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 45%;
    max-width: 450px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 12px 0 16px 0;
    display: block;
}

.hero-start-link {
    display: inline-block;
    margin-top: 30px;
    text-align: center;
}

.start-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.start-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/* Business About Section */
.business-about {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.business-about::before,
.business-about::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border: 1px solid #f8f9fa;
    border-radius: 50%;
    z-index: -1;
}

.business-about::before {
    top: -400px;
    left: -400px;
}

.business-about::after {
    bottom: -400px;
    right: -400px;
}

.business-about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.business-about h2::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: rgb(231, 200, 139);
    margin: 0 auto 30px auto;
}

.about-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Platform Section */
.platform-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3a4a5c 50%, #34495e 100%);
    overflow: hidden;
}

.platform-section .container-detail {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

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

.platform-section .section-label {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.02em;
}

.platform-section .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin: 0;
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    grid-auto-rows: minmax(0, 1fr);
}

.platform-card {
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


.platform-card .card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    text-decoration: none;
}

.platform-card .card-content:hover {
    text-decoration: none;
}

.platform-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.platform-card .services {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.platform-card .card-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    margin-top: 20px;
}

.platform-card .card-link {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: #fff;
    text-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-left: auto;
}

.platform-card .card-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.platform-card .card-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.platform-card .card-link:hover i {
    transform: translateX(2px);
}

/* 각 카드별 배경 이미지 */
.platform-card:nth-child(1) {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('../img/Return.webp') center/cover no-repeat;
}

.platform-card:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('../img/Safety.webp') center/cover no-repeat;
}

.platform-card:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('../img/Liquidity.webp') center/cover no-repeat;
}

.platform-card:nth-child(4) {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('../img/Stability.webp') center/cover no-repeat;
}

.platform-card:nth-child(5) {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('../img/Return.webp') center/cover no-repeat;
}

.platform-card:nth-child(6) {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('../img/Safety.webp') center/cover no-repeat;
}

/* Business Overview Mobile Responsive */
@media (max-width: 992px) {
    .platform-section .container-detail {
        padding: 0 30px;
    }

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

    .platform-card {
        padding: 40px 25px;
    }

    .platform-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .business-hero {
        padding: 120px 0 80px;
        min-height: 50vh;
    }

    .hero-content {
        min-height: 350px;
        text-align: center;
        padding: 40px 0;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-text h4 {
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .hero-cta-btn {
        padding: 12px 24px;
        font-size: 1rem;
        margin-top: 24px;
    }

    .business-contact-section {
        padding: 100px 0;
    }

    .contact-box {
        padding: 40px 30px 0;
        text-align: left;
        min-height: 420px;
    }

    .contact-content {
        max-width: 100%;
        z-index: 2;
        text-align: left;
        padding-bottom: 40px;
    }

    .contact-content h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .contact-btn {
        padding: 14px 28px;
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .contact-image {
        position: absolute;
        bottom: 0px;
        left: 70%;
        transform: translateX(-50%);
        width: 60%;
        max-width: 300px;
    }

    .contact-image img {
        border-radius: 12px 12px 16px 16px;
        
    }


    .business-about {
        padding: 80px 0;
    }

    .business-about h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .business-about h2::before {
        width: 50px;
        margin: 0 auto 25px auto;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .platform-section {
        padding: 80px 0;
    }

    .platform-section .section-header h2 {
        font-size: 1.6rem;
    }

    .platform-section .container-detail {
        padding: 0 15px;
    }

    .platform-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .platform-card {
        padding: 30px 20px;
    }

    .platform-card h3 {
        font-size: 1.4rem;
    }

    .platform-card .services {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .platform-section {
        padding: 60px 0;
    }

    .platform-section .container-detail {
        padding: 0 15px;
    }

    .platform-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .platform-card {
        padding: 40px 30px;
        width: 100%;
        margin: 0;
    }

    .platform-card h3 {
        font-size: 1.5rem;
    }

    .platform-card .card-link {
        margin-top: 8px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Finance Services Cards Section */
.finance-services-section {
    padding: 20px 0px 80px 0px;
    background: white;
    position: relative;
    overflow: hidden;
}

.finance-services-section::before,
.finance-services-section::after {
    content: '';
    position: absolute;
    width: 1200px;
    height: 1200px;
    border: 1px solid #fbf9f6;
    border-radius: 50%;
    z-index: -1;
}

.finance-services-section::before {
    top: -600px;
    left: -600px;
}

.finance-services-section::after {
    bottom: -600px;
    right: -600px;
}

.finance-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 30px;
}

.finance-service-card {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.finance-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.finance-card-image {
    aspect-ratio: 5 / 3;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.finance-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.finance-card-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.finance-card-content .finance-services {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.finance-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 24px;
}

.finance-card-footer .finance-details-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.finance-card-footer .finance-details-link:hover {
    color: var(--primary-color);
    transform: translateX(2px);
}

@media (min-width: 768px) {
    .finance-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .finance-services-section {
        padding: 60px 0;
    }

    .finance-card-grid {
        gap: 30px 20px;
    }

    .finance-card-content {
        padding: 25px;
    }

    .finance-card-content h3 {
        font-size: 1.15rem;
    }

    .finance-card-content .finance-services {
        font-size: 0.9rem;
    }
}

/* Manufacturing Services Cards Section */
.manufacturing-services-section {
    padding: 20px 0px 80px 0px;
    background: white;
    position: relative;
    overflow: hidden;
}

.manufacturing-services-section::before,
.manufacturing-services-section::after {
    content: '';
    position: absolute;
    width: 1200px;
    height: 1200px;
    border: 1px solid #fbf9f6;
    border-radius: 50%;
    z-index: -1;
}

.manufacturing-services-section::before {
    top: -600px;
    left: -600px;
}

.manufacturing-services-section::after {
    bottom: -600px;
    right: -600px;
}

.manufacturing-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 30px;
}

.manufacturing-service-card {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.manufacturing-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.manufacturing-card-image {
    aspect-ratio: 5 / 3;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.manufacturing-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.manufacturing-card-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.manufacturing-card-content .manufacturing-services {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.manufacturing-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 24px;
}

.manufacturing-card-footer .manufacturing-details-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.manufacturing-card-footer .manufacturing-details-link:hover {
    color: var(--primary-color);
    transform: translateX(2px);
}

@media (min-width: 768px) {
    .manufacturing-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .manufacturing-services-section {
        padding: 60px 0;
    }

    .manufacturing-card-grid {
        gap: 30px 20px;
    }

    .manufacturing-card-content {
        padding: 25px;
    }

    .manufacturing-card-content h3 {
        font-size: 1.15rem;
    }

    .manufacturing-card-content .manufacturing-services {
        font-size: 0.9rem;
    }
}

/* Healthcare Services Cards Section */
.healthcare-services-section {
    padding: 20px 0px 80px 0px;
    background: white;
    position: relative;
    overflow: hidden;
}

.healthcare-services-section::before,
.healthcare-services-section::after {
    content: '';
    position: absolute;
    width: 1200px;
    height: 1200px;
    border: 1px solid #fbf9f6;
    border-radius: 50%;
    z-index: -1;
}

.healthcare-services-section::before {
    top: -600px;
    left: -600px;
}

.healthcare-services-section::after {
    bottom: -600px;
    right: -600px;
}

.healthcare-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 30px;
}

.healthcare-service-card {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.healthcare-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.healthcare-card-image {
    aspect-ratio: 5 / 3;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.healthcare-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.healthcare-card-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.healthcare-card-content .healthcare-services {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.healthcare-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 24px;
}

.healthcare-card-footer .healthcare-details-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.healthcare-card-footer .healthcare-details-link:hover {
    color: var(--primary-color);
    transform: translateX(2px);
}

@media (min-width: 768px) {
    .healthcare-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .healthcare-services-section {
        padding: 60px 0;
    }

    .healthcare-card-grid {
        gap: 30px 20px;
    }

    .healthcare-card-content {
        padding: 25px;
    }

    .healthcare-card-content h3 {
        font-size: 1.15rem;
    }

    .healthcare-card-content .healthcare-services {
        font-size: 0.9rem;
    }
}

/* Education Services Cards Section */
.education-services-section {
    padding: 20px 0px 80px 0px;
    background: white;
    position: relative;
    overflow: hidden;
}

.education-services-section::before,
.education-services-section::after {
    content: '';
    position: absolute;
    width: 1200px;
    height: 1200px;
    border: 1px solid #fbf9f6;
    border-radius: 50%;
    z-index: -1;
}

.education-services-section::before {
    top: -600px;
    left: -600px;
}

.education-services-section::after {
    bottom: -600px;
    right: -600px;
}

.education-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 30px;
}

.education-service-card {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.education-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.education-card-image {
    aspect-ratio: 5 / 3;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.education-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.education-card-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.education-card-content .education-services {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.education-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 24px;
}

.education-card-footer .education-details-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.education-card-footer .education-details-link:hover {
    color: var(--primary-color);
    transform: translateX(2px);
}

@media (min-width: 768px) {
    .education-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .education-services-section {
        padding: 60px 0;
    }

    .education-card-grid {
        gap: 30px 20px;
    }

    .education-card-content {
        padding: 25px;
    }

    .education-card-content h3 {
        font-size: 1.15rem;
    }

    .education-card-content .education-services {
        font-size: 0.9rem;
    }
}

/* Blockchain Services Cards Section */
.blockchain-services-section {
    padding: 20px 0px 80px 0px;
    background: white;
    position: relative;
    overflow: hidden;
}

.blockchain-services-section::before,
.blockchain-services-section::after {
    content: '';
    position: absolute;
    width: 1200px;
    height: 1200px;
    border: 1px solid #fbf9f6;
    border-radius: 50%;
    z-index: -1;
}

.blockchain-services-section::before {
    top: -600px;
    left: -600px;
}

.blockchain-services-section::after {
    bottom: -600px;
    right: -600px;
}

.blockchain-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 30px;
}

.blockchain-service-card {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blockchain-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blockchain-card-image {
    aspect-ratio: 5 / 3;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.blockchain-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blockchain-card-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.blockchain-card-content .blockchain-services {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.blockchain-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 24px;
}

.blockchain-card-footer .blockchain-details-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blockchain-card-footer .blockchain-details-link:hover {
    color: var(--primary-color);
    transform: translateX(2px);
}

@media (min-width: 768px) {
    .blockchain-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blockchain-services-section {
        padding: 60px 0;
    }

    .blockchain-card-grid {
        gap: 30px 20px;
    }

    .blockchain-card-content {
        padding: 25px;
    }

    .blockchain-card-content h3 {
        font-size: 1.15rem;
    }

    .blockchain-card-content .blockchain-services {
        font-size: 0.9rem;
    }
}

/* Silvertown Services Cards Section */
.silvertown-services-section {
    padding: 20px 0px 80px 0px;
    background: white;
    position: relative;
    overflow: hidden;
}

.silvertown-services-section::before,
.silvertown-services-section::after {
    content: '';
    position: absolute;
    width: 1200px;
    height: 1200px;
    border: 1px solid #fbf9f6;
    border-radius: 50%;
    z-index: -1;
}

.silvertown-services-section::before {
    top: -600px;
    left: -600px;
}

.silvertown-services-section::after {
    bottom: -600px;
    right: -600px;
}

.silvertown-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 30px;
}

.silvertown-service-card {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.silvertown-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.silvertown-card-image {
    aspect-ratio: 5 / 3;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.silvertown-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.silvertown-card-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.silvertown-card-content .silvertown-services {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.silvertown-card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 24px;
}

.silvertown-card-footer .silvertown-details-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.silvertown-card-footer .silvertown-details-link:hover {
    color: var(--primary-color);
    transform: translateX(2px);
}

@media (min-width: 768px) {
    .silvertown-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .silvertown-services-section {
        padding: 60px 0;
    }

    .silvertown-card-grid {
        gap: 30px 20px;
    }

    .silvertown-card-content {
        padding: 25px;
    }

    .silvertown-card-content h3 {
        font-size: 1.15rem;
    }

    .silvertown-card-content .silvertown-services {
        font-size: 0.9rem;
    }
}

/* Welion Hero Section */
.welion-hero {
    background: url('../img/bg_platform_main.webp') center/cover no-repeat;
    color: var(--text-primary);
    padding: 200px 0 0;
    min-height: 800px;
    position: relative;
    z-index: 1;
}

.welion-hero .hero-content {
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welion-hero .hero-text {
    text-align: center;
    padding: 0 40px;
    width: 100%;
}

.welion-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #d4a052, #e6b366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin: 0 auto 1rem auto;
    position: relative;
    display: block;
}

.welion-hero .hero-text h4 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #444444;
    margin: 0 auto;
    text-shadow: none;
}

/* Welion Video Section */
.welion-video-section {
    position: relative;
    z-index: 3;
    margin-top: -200px;
    margin-bottom: -100px;
    padding: 0;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.welion-video {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #000;
}

/* Welion Vision Section */
.welion-vision {
    padding: 150px 0 5rem;
    background: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.welion-vision .quote {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.4;
}

.welion-vision .description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .welion-hero {
        padding: 80px 0 1rem;
    }

    .welion-hero .hero-text {
        padding: 0 20px;
    }

    .welion-hero .hero-text h1 {
        font-size: 2.2rem;
        margin: 0 auto 0.8rem auto;
        background: linear-gradient(135deg, var(--primary-color), #d4a052, #e6b366);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .welion-hero .hero-text h4 {
        font-size: 1.2rem;
        color: #444444;
        margin: 0 auto;
    }

    .welion-video-section {
        margin-top: -400px;
        margin-bottom: -60px;
    }

    .welion-video {
        max-width: 95%;
    }

    .welion-vision {
        padding: 100px 0 3rem;
    }

    .welion-vision .quote {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .welion-vision .description {
        font-size: 1rem;
    }
}

/* Welion Additional Vision Section */
.welion-additional-vision {
    padding: 120px 0;
    background: white;
    text-align: center;
}

.welion-additional-vision .welion-quote {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.4;
}

.welion-additional-vision .welion-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .welion-additional-vision {
        padding: 80px 0;
    }

    .welion-additional-vision .welion-quote {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .welion-additional-vision .welion-description {
        font-size: 1rem;
    }
}

/* Welion Vision Steps Section */
.welion-vision-steps {
    padding: 90px 0;
    background: white;
    position: relative;
}

.welion-vision-steps::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1080px, 90vw);
    height: 2px;
    background: #ccc;
}

.welion-vision-header {
    margin-bottom: 60px;
    text-align: center;
}

.welion-vision-header .welion-section-label {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.welion-vision-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.welion-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.welion-step {
    text-align: center;
    padding: 40px 20px;
}

.welion-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4a052 100%);
    color: white;
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.welion-step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.welion-step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.welion-step-content li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.welion-step-content li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Welion Performance Section */
.welion-corporate-performance {
    padding: 90px 0;
    background: #f8f9fa;
}

.welion-performance-header {
    margin-bottom: 60px;
    text-align: center;
}

.welion-performance-header .welion-section-label {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.welion-performance-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.welion-performance-category {
    margin-bottom: 60px;
}

.welion-category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.welion-category-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
}

.welion-category-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.welion-performance-cards {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.welion-performance-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    flex: 1;
}

.welion-card-year {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.welion-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.welion-card-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.welion-label {
    display: inline-block;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid #e9ecef;
}

.welion-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .welion-vision-steps {
        padding: 60px 0;
    }

    .welion-vision-header {
        margin-bottom: 50px;
    }

    .welion-vision-header h2 {
        font-size: 1.6rem;
    }

    .welion-steps {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 60px;
    }

    .welion-step-number {
        font-size: 2.8rem;
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .welion-step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .welion-step-content li {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .welion-corporate-performance {
        padding: 60px 0;
    }

    .welion-performance-header h2 {
        font-size: 1.6rem;
    }

    .welion-performance-cards {
        flex-direction: column;
        gap: 15px;
    }

    .welion-performance-card {
        min-width: auto;
        padding: 25px 15px;
    }

    .welion-arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }
}

/* Welion Services Cards Section */
.welion-services-section {
    padding: 20px 0px 80px 0px;
    background: white;
    position: relative;
    overflow: hidden;
}

.welion-services-section::before,
.welion-services-section::after {
    content: '';
    position: absolute;
    width: 1200px;
    height: 1200px;
    border: 1px solid #fbf9f6;
    border-radius: 50%;
    z-index: -1;
}

.welion-services-section::before {
    top: -600px;
    left: -600px;
}

.welion-services-section::after {
    bottom: -600px;
    right: -600px;
}

.welion-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 30px;
}

.welion-service-card {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.welion-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.welion-card-image {
    aspect-ratio: 5 / 3;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.welion-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.welion-card-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.welion-card-content .welion-services {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .welion-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .welion-services-section {
        padding: 60px 0;
    }

    .welion-card-grid {
        gap: 30px 20px;
    }

    .welion-card-content {
        padding: 25px;
    }

    .welion-card-content h3 {
        font-size: 1.15rem;
    }

    .welion-card-content .welion-services {
        font-size: 0.9rem;
    }
}

/* Welion About Vision Steps Section */
.welion-about-vision-steps {
    padding: 80px 0;
    background: white;
}

.welion-vision-header {
    text-align: center;
    margin-bottom: 60px;
}

.welion-section-label {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 12px 0;
}

.welion-vision-header h2 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.welion-vision-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.welion-vision-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    background: #fbf9f6;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welion-vision-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.welion-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.welion-step-content {
    flex: 1;
}

.welion-step-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.welion-step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.welion-step-content li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.welion-step-content li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tech Cards Grid */
.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.tech-card {
    background: linear-gradient(135deg, #fafafa 0%, #f6f6f6 100%);
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px;
    color: var(--text-primary);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.tech-card .card-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.tech-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.tech-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tags .tag {
    background: rgba(204, 157, 66, 0.2);
    border: 1px solid rgba(204, 157, 66, 0.4);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tech-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-stats .stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tech-stats .stat i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.accuracy-display {
    background: rgba(204, 157, 66, 0.08);
    border: 1px solid rgba(204, 157, 66, 0.2);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.accuracy-number {
    display: block;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.accuracy-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.tech-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tech-features .feature i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Bio Asset Flow */
.bio-asset-flow {
    margin: 80px 0;
    padding: 0;
}

.flow-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    max-width: 100%;
    margin: 0;
}

.flow-card {
    background: linear-gradient(135deg, #fafafa 0%, #f6f6f6 100%);
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    min-height: 240px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.flow-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-top: 25px;
    margin-bottom: 20px;
}

.flow-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.flow-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.flow-arrow {
    color: var(--primary-color);
    font-size: 1.8rem;
    flex-shrink: 0;
    opacity: 0.8;
    margin: 0 10px;
}

.step-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(204, 157, 66, 0.1);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(204, 157, 66, 0.2);
    letter-spacing: 0.5px;
}

.token-label {
    background: linear-gradient(135deg, var(--primary-color), #d4a052);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Service Contracts */
.service-contracts {
    margin: 80px 0;
}

.contract-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contract-card {
    background: white;
    border: none;
    border-bottom: 2px solid #ddd;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contract-card:hover {
    transform: translateY(-4px);
    border-bottom-color: var(--primary-color);
}

.contract-image {
    width: 100%;
    aspect-ratio: 5/3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contract-document {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%23cd8932" width="400" height="200"/><rect fill="%23f4e7d1" x="50" y="30" width="200" height="140" rx="8"/><rect fill="%23333" x="70" y="50" width="160" height="4"/><rect fill="%23666" x="70" y="60" width="140" height="2"/><rect fill="%23666" x="70" y="68" width="120" height="2"/><rect fill="%23666" x="70" y="76" width="130" height="2"/><rect fill="%23666" x="70" y="84" width="110" height="2"/><rect fill="%23666" x="70" y="92" width="150" height="2"/><rect fill="%23666" x="70" y="100" width="100" height="2"/><circle fill="%23333" cx="300" cy="80" r="3"/><circle fill="%23333" cx="320" cy="100" r="3"/><circle fill="%23333" cx="310" cy="120" r="3"/><rect fill="%23ddd" x="280" y="140" width="60" height="8" rx="2"/><rect fill="%23ddd" x="350" y="60" width="30" height="100" rx="2"/></svg>');
}

.profit-sharing {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%232c3e50" width="400" height="200"/><circle fill="%23f39c12" cx="200" cy="60" r="15"/><text x="200" y="67" text-anchor="middle" fill="white" font-size="14" font-family="Arial">$</text><rect fill="%23f4d03f" x="80" y="120" width="20" height="40" rx="10"/><rect fill="%23f7dc6f" x="110" y="110" width="20" height="50" rx="10"/><rect fill="%23f8c471" x="140" y="100" width="20" height="60" rx="10"/><rect fill="%23f5b041" x="170" y="90" width="20" height="70" rx="10"/><rect fill="%23eb984e" x="200" y="85" width="20" height="75" rx="10"/><rect fill="%23dc7633" x="230" y="95" width="20" height="65" rx="10"/><rect fill="%23ca6f1e" x="260" y="105" width="20" height="55" rx="10"/><rect fill="%23b7950b" x="290" y="115" width="20" height="45" rx="10"/><circle fill="%23e74c3c" cx="320" cy="40" r="8"/></svg>');
}

.contract-content {
    padding: 30px;
    text-align: center;
    background: white;
}

.contract-content h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.contract-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}


/* Welion Corporate Performance Section */
.welion-corporate-performance {
    padding: 80px 0;
    background: #fafafa;
}

.welion-performance-header {
    text-align: center;
    margin-bottom: 60px;
}

.welion-performance-header h2 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.welion-performance-category {
    margin-bottom: 60px;
}

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

.welion-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.welion-category-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    position: relative;
}

.welion-category-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 2px;
}

.welion-category-header h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.welion-performance-cards {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.welion-performance-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 25px;
    min-width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welion-performance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.welion-card-year {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.welion-card-content {
    margin: 0;
}

.welion-card-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.welion-label {
    background: #f8f9fa;
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    border-left: 3px solid var(--primary-color);
}

.welion-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .welion-vision-steps {
        gap: 40px;
    }

    .welion-vision-step {
        padding: 30px;
        gap: 25px;
    }

    .welion-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .welion-performance-cards {
        gap: 15px;
    }

    .welion-performance-card {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .welion-about-vision-steps,
    .welion-corporate-performance {
        padding: 60px 0;
    }

    .welion-vision-header h2,
    .welion-performance-header h2 {
        font-size: 1.6rem;
    }

    .welion-vision-step {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 20px;
    }

    .welion-step-content h3 {
        font-size: 1.2rem;
    }

    .tech-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 40px;
    }

    .tech-card {
        padding: 25px;
    }

    .tech-card h3 {
        font-size: 1.1rem;
    }

    .tech-card p {
        font-size: 0.85rem;
    }

    .accuracy-number {
        font-size: 2rem;
    }

    .tech-tags .tag {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    .bio-asset-flow {
        margin: 40px 0;
        padding: 0 10px;
    }

    .flow-cards {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }

    .flow-card {
        min-width: auto;
        width: 100%;
        padding: 25px 20px;
        min-height: auto;
        position: static;
    }

    .step-badge {
        position: static;
        margin-bottom: 15px;
        display: inline-block;
    }

    .flow-card h3 {
        font-size: 1.2rem;
    }

    .flow-card p {
        font-size: 0.85rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
        margin: 10px 0;
    }

    .service-contracts {
        margin: 60px 0;
    }

    .contract-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .contract-content {
        padding: 25px;
    }

    .contract-content h3 {
        font-size: 1.2rem;
    }

    .contract-content p {
        font-size: 0.85rem;
    }


    .welion-performance-cards {
        flex-direction: column;
        align-items: stretch;
    }

    .welion-performance-card {
        min-width: auto;
        width: 100%;
    }

    .welion-arrow {
        transform: rotate(90deg);
        align-self: center;
        margin: 10px 0;
    }

    .welion-category-header {
        justify-content: center;
    }
}

/* =================
   ROADMAP PAGE STYLES
   ================= */

/* Roadmap page background - 전체 페이지 */
body.roadmap-page {
    position: relative;
}

body.roadmap-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
                url('../img/bg_gro.webp') center/cover no-repeat fixed;
    z-index: -1;
}


/* Hero Section 배경 제거 */
body.roadmap-page .hero::before,
body.roadmap-page .hero::after {
    display: none !important;
}

/* Full Width Image Section - 히어로 이미지 */
body.roadmap-page .full-width-image {
    background: url('../img/bg_roadmap.webp') center/cover no-repeat !important;
    max-height: 400px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body.roadmap-page .full-width-image .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

body.roadmap-page .full-width-image .placeholder-text {
    display: none;
}

/* Roadmap Content Section */
body.roadmap-page .welion-roadmap {
    padding: 50px 0 0 0;
    margin-top: 100px;
    text-align: center;
    position: relative;
}

/* 상단 골드 라인 */
body.roadmap-page .welion-roadmap::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

body.roadmap-page .welion-roadmap .quote {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
    letter-spacing: -1px;
}

body.roadmap-page .welion-roadmap .description {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Timeline Section */
.roadmap-timeline-section {
    padding: 80px 0;
    position: relative;
}

/* Roadmap Cards */
.roadmap-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Phase Badge - 스크린샷과 같은 스타일 */
.phase-badge {
    background: linear-gradient(135deg, #f5f5dc 0%, #e6d7a3 100%);
    color: #8B7355;
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 24px;
    border: 2px solid #d4c4a8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.card-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.card-list li {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.card-list li::before {
    content: '▶';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9rem;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .full-width-image {
        max-height: 300px;
        min-height: 250px;
    }

    .full-width-image .placeholder-text {
        font-size: 1.2rem;
    }

    body.roadmap-page .welion-roadmap {
        padding: 40px 0 0 0;
    }

    body.roadmap-page .welion-roadmap::before {
        top: 15px;
        width: 50px;
        height: 2px;
    }

    body.roadmap-page .welion-roadmap .quote {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    body.roadmap-page .welion-roadmap .description {
        font-size: 0.9rem;
        padding: 0 20px;
    }

    .roadmap-timeline-section {
        padding: 60px 0;
    }

    .roadmap-card {
        padding: 30px 24px;
        margin-bottom: 30px;
        border-radius: 0;
    }

    .phase-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .card-title {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .card-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .card-list li {
        font-size: 0.95rem;
        margin-bottom: 10px;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .full-width-image {
        min-height: 200px;
    }

    .full-width-image .placeholder-text {
        font-size: 1rem;
    }

    body.roadmap-page .welion-roadmap {
        padding: 30px 0 0 0;
    }

    body.roadmap-page .welion-roadmap::before {
        top: 12px;
        width: 40px;
        height: 2px;
    }

    body.roadmap-page .welion-roadmap .quote {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    body.roadmap-page .welion-roadmap .description {
        font-size: 0.85rem;
        padding: 0 15px;
    }

    .roadmap-timeline-section {
        padding: 40px 0;
    }

    .roadmap-card {
        padding: 24px 20px;
        margin-bottom: 24px;
    }

    .phase-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .card-title {
        font-size: 1.2rem;
    }
}

/* =================
   NETWORK PAGE STYLES
   ================= */

/* Network page background - roadmap과 동일한 스타일 */
body.network-page {
    position: relative;
}

body.network-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
                url('../img/bg_gro.webp') center/cover no-repeat fixed;
    z-index: -1;
}

/* Hero Section 배경 제거 */
body.network-page .hero::before,
body.network-page .hero::after {
    display: none !important;
}

/* Network Full Width Image Section */
body.network-page .network-full-image {
    background: url('../img/bg_network.webp') center/cover no-repeat !important;
    max-height: 400px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body.network-page .network-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

body.network-page .network-image-text {
    display: none;
}

/* Network Content Section */
body.network-page .network-content {
    padding: 50px 0 0 0;
    margin-top: 100px;
    text-align: center;
    position: relative;
}

/* 상단 골드 라인 */
body.network-page .network-content::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

body.network-page .network-quote {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
    letter-spacing: -1px;
}

body.network-page .network-description {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Timeline Section */
.network-timeline-section {
    padding: 80px 0;
    position: relative;
}

/* Network Cards */
.network-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Network Phase Badge */
.network-phase-badge {
    background: linear-gradient(135deg, #f5f5dc 0%, #e6d7a3 100%);
    color: #8B7355;
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 24px;
    border: 2px solid #d4c4a8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.network-card-title {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.network-card-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.network-card-list li {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.network-card-list li::before {
    content: '▶';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9rem;
}

/* Network Global Countries Section */
.network-global-section {
    padding: 80px 0;
    position: relative;
}

.network-global-header {
    text-align: center;
    margin-bottom: 60px;
}

.network-global-header h2 {
    color: var(--text-primary);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.network-global-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.network-countries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.network-country-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.network-country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.network-country-flag {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.network-country-flag img {
    width: 80px;
    height: auto;
}

.network-country-name {
    color: var(--text-primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.network-country-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.network-country-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.network-stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.network-stat-value {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

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

.network-country-features li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

.network-country-features li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    body.network-page .network-content {
        padding: 40px 0 0 0;
    }

    body.network-page .network-content::before {
        top: 15px;
        width: 50px;
        height: 2px;
    }

    body.network-page .network-quote {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    body.network-page .network-description {
        font-size: 0.9rem;
        padding: 0 20px;
    }

    .network-global-section {
        padding: 60px 0;
    }

    .network-global-header h2 {
        font-size: 1.8rem;
    }

    .network-global-header {
        margin-bottom: 40px;
    }

    .network-countries-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .network-country-card {
        padding: 30px 25px;
    }

    .network-country-flag img {
        width: 60px;
    }

    .network-country-name {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .network-country-info {
        margin-bottom: 25px;
    }

    .network-stat-value {
        font-size: 1.1rem;
    }

    .network-timeline-section {
        padding: 60px 0;
    }

    .network-card {
        padding: 30px 24px;
        margin-bottom: 30px;
        border-radius: 0;
    }

    .network-phase-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .network-card-title {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .network-card-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .network-card-list li {
        font-size: 0.95rem;
        margin-bottom: 10px;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    body.network-page .network-content {
        padding: 30px 0 0 0;
    }

    body.network-page .network-content::before {
        top: 12px;
        width: 40px;
        height: 2px;
    }

    body.network-page .network-quote {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    body.network-page .network-description {
        font-size: 0.85rem;
        padding: 0 15px;
    }

    .network-global-section {
        padding: 40px 0;
    }

    .network-countries-grid {
        gap: 25px;
    }

    .network-country-card {
        padding: 25px 20px;
    }

    .network-timeline-section {
        padding: 40px 0;
    }

    .network-card {
        padding: 24px 20px;
        margin-bottom: 24px;
    }

    .network-phase-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .network-card-title {
        font-size: 1.2rem;
    }
}

/* ========================================
   스크롤 애니메이션 CSS
   ======================================== */

/* 기본 애니메이션 설정 */
.fade-in,
.slide-up,
.slide-down,
.slide-in-left,
.slide-in-right,
.scale-up,
.rotate-in {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

/* Fade In 효과 */
.fade-in {
    transform: translateY(20px);
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Up 효과 */
.slide-up {
    transform: translateY(60px);
}

.slide-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Down 효과 */
.slide-down {
    transform: translateY(-60px);
}

.slide-down.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Slide In Left 효과 */
.slide-in-left {
    transform: translateX(-60px);
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In Right 효과 */
.slide-in-right {
    transform: translateX(60px);
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Scale Up 효과 */
.scale-up {
    transform: scale(0.9);
}

.scale-up.animate {
    opacity: 1;
    transform: scale(1);
}

/* Rotate In 효과 */
.rotate-in {
    transform: rotate(5deg) scale(0.95);
}

.rotate-in.animate {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* 지연 효과 클래스 */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* 특별한 섹션별 애니메이션 */
.hero-content .hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-content .hero-title {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.hero-content .scroll-indicator {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.6s;
}

/* 히어로 섹션 활성화 */
.hero-content.animate .hero-subtitle,
.hero-content.animate .hero-title,
.hero-content.animate .scroll-indicator {
    opacity: 1;
    transform: translateY(0);
}

/* Feature Grid 특별 애니메이션 */
.features-grid .feature-item {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.features-grid .feature-item:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-item:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-item:nth-child(3) { transition-delay: 0.3s; }

.features-grid.animate .feature-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 부드러운 패럴랙스 효과 */
.parallax-element {
    transition: transform 0.1s linear;
}

/* 모바일에서는 애니메이션 단순화 */
@media (max-width: 768px) {
    .fade-in,
    .slide-up,
    .slide-down,
    .slide-in-left,
    .slide-in-right,
    .scale-up,
    .rotate-in {
        transition-duration: 0.6s;
    }

    .hero-content .hero-subtitle,
    .hero-content .hero-title {
        transition-duration: 0.8s;
    }
}

/* 접근성: 모션 감소 설정을 선호하는 사용자 */
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .slide-up,
    .slide-down,
    .slide-in-left,
    .slide-in-right,
    .scale-up,
    .rotate-in,
    .hero-content .hero-subtitle,
    .hero-content .hero-title,
    .hero-content .scroll-indicator,
    .features-grid .feature-item {
        transition: opacity 0.3s ease;
        transform: none;
    }
}

/* 영상 모달 스타일 */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.video-modal-container {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

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

.video-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.video-close-btn:hover {
    background: #e9ecef;
    color: #333;
}

.video-modal-content {
    padding: 0;
    background: black;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    display: block;
}

/* 히어로 CTA 버튼 스타일 */
.hero-cta {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.video-btn {
    font-size: 1.1rem;
    padding: 18px 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
}

.video-btn i {
    font-size: 1rem;
}

/* 모바일 반응형 - 영상 모달 */
@media (max-width: 768px) {
    .video-modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .video-modal-header {
        padding: 15px 20px;
    }

    .video-modal-header h3 {
        font-size: 1.2rem;
    }

    .video-modal-content video {
        max-height: 60vh;
    }

    .hero-cta {
        margin-top: 1.5rem;
    }

    .video-btn {
        font-size: 1rem;
        padding: 16px 30px;
    }
}

