/* 기본 설정 */
:root {
    --primary-color: #4ECDC4;  /* AD-LIVE 시그니처 청록색 */
    --secondary-color: #2C5F7C; /* AD-LIVE 짙은 청록색 */
    --accent-color: #20B2AA;   /* AD-LIVE 강조색 */
    --light-teal: #7FDBDA;     /* 연한 청록색 */
    --dark-red: #2C5F7C;       /* 기존 빨강색 대신 짙은 청록색 */
    --text-color: #2c2c2c;
    --gray-color: #666;
    --light-gray: #f8f8f8;
    --white: #fff;
    --black: #000;
    --overlay: rgba(0, 0, 0, 0.6);
    --shadow-sm: 0 2px 10px rgba(78, 205, 196, 0.1);
    --shadow-md: 0 5px 20px rgba(78, 205, 196, 0.15);
    --shadow-lg: 0 10px 30px rgba(78, 205, 196, 0.2);
    
    /* 8pt 그리드 시스템 */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
}

body {
    font-family: 'GMarketSans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 텍스트 요소에만 한글 단어 단위 줄바꿈 적용 */
h1, h2, h3, h4, h5, h6, p, span, li, td, th, a,
.section-title, .section-desc, .hero-subtitle, .hero-desc {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* 아이콘, 버튼, 뱃지 등 UI 요소는 word-break 제외 */
.card-icon, .card-icon *,
.service-list .box, .service-list .box *,
.service-list .title,
.brand-item, .brand-item *,
.tag, .badge, .keyword-tags, .keyword-tags *,
button, button *, .btn, .btn *,
.visual-cta, .visual-cta *,
.cta-button, .cta-button *,
.section-cta-button, .section-cta-button *,
.mobile-menu-btn, .mobile-menu-btn *,
[class*="icon"], [class*="icon"] *,
[class^="xi-"], [class^="xi-"] *,
.china-detail-btn, .china-detail-btn *,
.china-download-btn, .china-download-btn *,
.toss-detail-btn, .toss-detail-btn *,
.toss-download-btn, .toss-download-btn *,
.header-download, .header-download *,
.bottom-cta-button, .bottom-cta-button *,
.china-logo, .china-logo *,
.toss-logo, .toss-logo *,
.xiaohongshu-text-logo, .xiaohongshu-text-logo *,
.toss-text-logo, .toss-text-logo *,
.highlight-number, .highlight-number *,
.number, .unit, .price-value,
.platform-item, .platform-item *,
.price-item, .price-item *,
.benefit-item, .benefit-item *,
.case-item, .case-item *,
.comparison-table, .comparison-table *,
.comparison-item, .comparison-item *,
.price-compare-grid, .price-compare-grid *,
.price-comparison, .price-comparison *,
nav, nav *, .gnb, .gnb *,
.dropdown, .dropdown *,
.mobile-menu, .mobile-menu * {
    word-break: normal !important;
    overflow-wrap: normal !important;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* 헤더 */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--spacing-md) 0;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-sm) 0;
}

#header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px; /* 높이 증가 */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#header.scrolled .inner {
    height: 60px; /* 스크롤 시 높이 */
}

/* 로고 스타일 */
#header .logo {
    transform: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-top: 0;
}

#header.scrolled .logo {
    transform: none;
    margin-top: 0;
}

#header .logo img {
    height: 55px; /* 기본 크기 증가 */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

/* 투명 상태에서는 흰색 로고 */
#header .logo img.logo-white {
    filter: brightness(0) invert(1);
    opacity: 1;
}

#header .logo img.logo-color {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* 스크롤 상태에서는 컬러 로고 */
#header.scrolled .logo img.logo-white {
    opacity: 0;
}

#header.scrolled .logo img.logo-color {
    opacity: 1;
    height: 45px; /* 스크롤 시 크기 */
}

/* 네비게이션 스타일 */
#header .gnb {
    transform: none;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

#header.scrolled .gnb {
    transform: none;
    margin-top: 0;
}

#header .gnb ul {
    display: flex;
    gap: var(--spacing-xl);
}

#header .gnb a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: var(--spacing-xs) 0;
}

#header.scrolled .gnb a {
    color: var(--text-color);
    font-size: 14px;
}

#header .gnb a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

#header .gnb a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

#header .gnb a:hover::after {
    width: 100%;
}

/* 드롭다운 메뉴 스타일 - 세로형 완전 재작성 */
#header .gnb > ul > li {
    position: relative;
}

/* dropdown은 ul 태그임 */
#header .gnb ul.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 160px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 5px;
    padding: 5px 0;
    z-index: 100;
    
    /* ul 기본 스타일 제거 */
    margin: 0;
    list-style: none;
    display: block;
}

#header .gnb > ul > li:hover ul.dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 2px;
}

/* 드롭다운 내부 li */
#header .gnb ul.dropdown li {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

/* 드롭다운 내부 a */
#header .gnb ul.dropdown a {
    color: #333;
    padding: 7px 15px;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s;
    display: block;
    white-space: nowrap;
    line-height: 1.3;
}

#header .gnb ul.dropdown a:hover {
    background: rgba(233, 75, 53, 0.05);
    color: var(--primary-color);
    padding-left: 20px;
}

/* 드롭다운 a의 after 제거 */
#header .gnb ul.dropdown a::after {
    display: none;
}

/* 스크롤 상태에서 드롭다운 */
#header.scrolled .gnb ul.dropdown {
    margin-top: 3px;
}

#header.scrolled .gnb > ul > li:hover ul.dropdown {
    margin-top: 1px;
}

/* 드롭다운 위치 조정 - 화면 밖으로 나가지 않도록 */
#header .gnb > ul > li:last-child ul.dropdown {
    left: auto;
    right: 0;
}

/* CHANNEL 메뉴는 오른쪽에 붙도록 */
#header .gnb > ul > li:nth-last-child(1) ul.dropdown,
#header .gnb > ul > li:nth-last-child(2) ul.dropdown {
    left: auto;
    right: 0;
}

/* 다운로드 버튼 스타일 */
#header .header-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* 아이콘과 텍스트 간격 최적화 */
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 12px 24px; /* 상하 좌우 균등한 패딩 */
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0) translateY(0) scale(1);
    box-shadow: 0 4px 15px rgba(233, 75, 53, 0.3);
    margin-top: 4px; /* 로고와 균형 맞추기 */
    white-space: nowrap;
    text-align: center;
}

#header.scrolled .header-download {
    padding: 10px 20px; /* 스크롤 시에도 균등한 패딩 유지 */
    font-size: 13px;
    transform: translateX(20px) translateY(0) scale(0.95);
    box-shadow: 0 2px 10px rgba(233, 75, 53, 0.2);
    margin-top: 2px;
}

#header .header-download:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(233, 75, 53, 0.4);
}

#header.scrolled .header-download:hover {
    transform: translateX(20px) translateY(-2px) scale(1);
}

#header .header-download i {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

#header .header-download span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    letter-spacing: -0.02em; /* 텍스트 간격 미세 조정 */
}

#header.scrolled .header-download i {
    font-size: 14px;
}

/* 우측 요소들을 묶어서 처리 */
#header .header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    transform: translateX(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#header.scrolled .header-right {
    transform: translateX(20px);
}

/* 모바일 메뉴 버튼 */
#header .mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#header .mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

#header.scrolled .mobile-menu-btn span {
    background: var(--text-color);
}
}

#header.scrolled .mobile-menu-btn span {
    background: var(--text-color);
}

/* 메인 비주얼 히어로 섹션 - EN MEDIA 스타일 */
.visual_slider {
    margin-top: 0;
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-visual video,
.main-visual img.mo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.main-visual img.mo {
    display: none;
}

.main-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(233, 75, 53, 0.1) 0%, 
        rgba(255, 107, 85, 0.05) 30%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

/* 파티클 시스템 스타일 */
.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* 비주얼 텍스트 컨테이너 - EN MEDIA 스타일 */
.visual-text {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
    padding: 0 var(--spacing-3xl);
}

/* 왼쪽 로고 영역 */
.hero-left {
    flex: 0 0 auto;
}

.hero-logo {
    margin: 0;
}

.hero-logo img {
    height: clamp(250px, 30vw, 400px);
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    opacity: 0.95;
    display: block;
}

/* 오른쪽 텍스트 영역 */
.hero-right {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

/* 서브타이틀 */
.hero-subtitle {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    text-align: center;
    width: 100%;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

/* 텍스트 줄바꿈 제어 */
.hero-subtitle .line1,
.hero-subtitle .line2 {
    display: block;
}

/* 첫 번째 줄 (메인 타이틀) */
.hero-subtitle .line1 {
    white-space: nowrap;
    margin-bottom: 0.5rem;
}

/* 두 번째 줄 (부제목) */
.hero-subtitle .line2 {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 500;
    opacity: 0.9;
    white-space: nowrap;
}

/* 데스크탑에서도 두 줄 유지 */
@media (min-width: 1200px) {
    .hero-subtitle {
        white-space: normal;
    }
    
    .hero-subtitle .line1,
    .hero-subtitle .line2 {
        display: block;
    }
}

/* 설명 텍스트 */
.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
    font-weight: 300;
}

.hero-desc .desc-line1,
.hero-desc .desc-line2 {
    display: block;
}

.hero-desc .desc-line1 {
    margin-bottom: 0.2em;
}

/* CTA 버튼 */
.visual-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(233, 75, 53, 0.3);
    position: relative;
    overflow: hidden;
    margin: 0 auto; /* 중앙 정렬 */
}

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

.visual-cta:hover::before {
    left: 100%;
}

.visual-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(233, 75, 53, 0.4);
}

/* 스크롤 인디케이터 - 완전 재작성 */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
}

.scroll-indicator .mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouse-scroll 2s infinite;
}

@keyframes mouse-scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(8px);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* 모바일 전용 스타일 - 강제 적용 */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 30px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .scroll-indicator span {
        font-size: 0.7rem !important;
        letter-spacing: 0.15em !important;
        text-align: center !important;
        display: block !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .scroll-indicator .mouse {
        width: 20px !important;
        height: 32px !important;
        border: 2px solid rgba(255, 255, 255, 0.5) !important;
        border-radius: 10px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .scroll-indicator .mouse::after {
        width: 3px !important;
        height: 6px !important;
        top: 6px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

/* 태블릿 반응형 */
@media (max-width: 1024px) {
    .visual-text {
        padding: 0 var(--spacing-xl);
        gap: var(--spacing-xl);
    }
    
    .hero-logo img {
        height: clamp(180px, 25vw, 300px);
    }
    
    .hero-subtitle {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

/* 반응형에서 텍스트 줄바꿈 제어 */
@media (max-width: 1024px) {
    .hero-desc .desc-line1,
    .hero-desc .desc-line2 {
        display: inline;
    }
    
    .hero-desc .desc-line1 {
        margin-bottom: 0;
    }
    
    .section01 .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .main-visual video {
        display: none;
    }
    
    .main-visual img.mo {
        display: block;
    }
    
    .visual-text {
        flex-direction: column;
        text-align: center;
        padding: 0 var(--spacing-md);
        gap: var(--spacing-lg);
    }
    
    .hero-logo img {
        height: clamp(100px, 30vw, 150px);
        margin: 0 auto;
    }
    
    .hero-right {
        text-align: center;
        margin-left: 0; /* 모바일에서는 중앙 정렬 */
        align-items: center;
    }
    
    .hero-right .hero-subtitle {
        align-self: center;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: clamp(1.3rem, 5.5vw, 2.2rem);
        margin-bottom: var(--spacing-sm);
    }

    /* 모바일에서도 줄바꿈 방지 */
    .hero-subtitle .line1 {
        font-size: clamp(1.3rem, 5.5vw, 2.2rem);
    }

    .hero-subtitle .line2 {
        font-size: clamp(1.1rem, 3.5vw, 1.6rem);
    }

    .hero-desc {
        font-size: 0.85rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .visual-cta {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }
    

}

/* 모바일 메뉴 */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 100001;
    overflow-y: auto;
}

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

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

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

.mobile-menu-nav > ul > li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-nav > ul > li > a {
    display: block;
    padding: 20px;
    font-weight: 600;
    color: #333;
    position: relative;
}

.mobile-menu-nav .dropdown {
    display: none;
    background: #f8f8f8;
}

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

.mobile-menu-nav .dropdown a {
    padding: 15px 20px 15px 40px;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-nav .dropdown li:last-child a {
    border-bottom: none;
}

.mobile-menu-nav > ul > li > a::after {
    content: '\e907';
    font-family: 'xeicon';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0);
    transition: transform 0.3s;
}

.mobile-menu-nav > ul > li.active > a::after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100000;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* 모바일 메뉴 채널 버튼들 */
.mobile-menu-channels {
    padding: 20px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.mobile-menu-channels h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.mobile-menu-channels .channel-links {
    display: flex;
    gap: 10px;
}

.mobile-menu-channels .channel-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

.mobile-menu-download {
    padding: 20px;
    background: #f8f8f8;
}

.mobile-menu-download a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-menu-download a:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 75, 53, 0.3);
}

@media (max-width: 1024px) {
    .mobile-menu {
        display: block;
    }
}

/* 반응형 */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }

    #header {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    #header .inner {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    #header .gnb {
        display: none;
    }

    #header .mobile-menu-btn {
        display: flex;
    }

    /* 모바일에서 헤더 다운로드 버튼 숨기기 */
    #header .header-download {
        display: none;
    }
    
    /* 메인 비주얼 모바일 */
    .main-visual video {
        display: none;
    }
    
    .main-visual img.mo {
        display: block;
    }
    
    .visual-text {
        padding: 0 var(--spacing-sm);
    }
    
    .visual-cta {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 1rem;
    }
}

/* 회사소개서 다운로드 버튼 추가 - 중복 제거됨 (위의 #header .header-download 사용) */

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* 메인 비주얼 */
.visual_slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: var(--black);
}

.main-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay);
    z-index: 1;
}

.main-visual video,
.main-visual img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.main-visual .mo {
    display: none;
}

/* 중복 코드 제거됨 - 위의 visual-text와 visual-cta 정의 사용 */





/* 브랜드 포트폴리오 캐러셀 */
.brand-carousel-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
    overflow: hidden;
}

.brand-carousel-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.brand-carousel-section p {
    font-size: 18px;
    color: var(--gray-color);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

br.mobile-only {
    display: none;
}

.brand-carousel-wrapper {
    position: relative;
}

.brand-carousel {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.brand-row {
    display: flex;
    gap: var(--spacing-md);
    animation: scroll-left 30s linear infinite;
    width: fit-content;
}

.brand-row.reverse {
    animation: scroll-right 30s linear infinite;
}

.brand-item {
    flex: 0 0 200px;
    height: 100px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.brand-item:hover::before {
    opacity: 0.05;
}

.brand-item img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-11 * (200px + var(--spacing-md))));
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-11 * (200px + var(--spacing-md))));
    }
    100% {
        transform: translateX(0);
    }
}



/* 섹션 공통 스타일 */
section {
    padding: var(--spacing-3xl) 0;
}

.section-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
    color: var(--text-color);
}

.section01 .section-title {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 36px);
}

.section01 .section-title span {
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    font-size: clamp(36px, 5vw, 48px);
}

.section-desc {
    font-size: 14px;
    color: var(--gray-color);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

/* 스크롤 기반 섹션1 */
.section01 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-3xl) 0;
}

.scroll-section {
    position: relative;
    min-height: 80vh; /* 스크롤 공간 대폭 축소 */
    height: 80vh;
    display: flex;
    align-items: center;
}

.sticky-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: auto;
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
    padding: 0 5%;
}

.left-content {
    flex: 0 0 40%;
    padding-right: var(--spacing-2xl);
    z-index: 10;
}

.section01 .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    margin: 0;
}

.section01 .title-line-1,
.section01 .title-line-2,
.section01 .title-line-3,
.section01 .title-line-4 {
    display: block;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section01 .title-line-1 {
    transition-delay: 0s;
}

.section01 .title-line-2 {
    transition-delay: 0.1s;
}

.section01 .title-line-3 {
    transition-delay: 0.2s;
}

.section01 .title-line-4 {
    color: var(--primary-color);
    transition-delay: 0.3s;
    font-size: 1.2em;
    font-weight: 700;
}

.section01 .title-line-1.active,
.section01 .title-line-2.active,
.section01 .title-line-3.active,
.section01 .title-line-4.active {
    opacity: 1;
    transform: translateY(0);
}

.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: var(--spacing-2xl);
    gap: var(--spacing-md);
}

/* 기능 카드 */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 500px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* 6개 카드를 위한 조정 - 3+3 배치 */
.feature-card:nth-child(4) {
    grid-column: 1 / span 1;
}

.feature-card:nth-child(5) {
    grid-column: 2 / span 1;
}

.feature-card:nth-child(6) {
    grid-column: 3 / span 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--spacing-md);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* 스태거 애니메이션 */
.feature-card[data-index="1"].active { transition-delay: 0s; }
.feature-card[data-index="2"].active { transition-delay: 0.1s; }
.feature-card[data-index="3"].active { transition-delay: 0.2s; }
.feature-card[data-index="4"].active { transition-delay: 0.3s; }
.feature-card[data-index="5"].active { transition-delay: 0.4s; }
.feature-card[data-index="6"].active { transition-delay: 0.5s; }

.feature-card:hover {
    background: rgba(233, 75, 53, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.feature-card:hover .card-icon::before {
    left: 100%;
}

.card-icon svg {
    width: 36px;
    height: 36px;
    z-index: 1;
}

.card-icon svg path,
.card-icon svg circle,
.card-icon svg rect,
.card-icon svg ellipse {
    transition: all 0.3s ease;
}

.feature-card:hover .card-icon {
    transform: scale(1.1);
    background: var(--dark-red);
}

.feature-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.feature-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    display: none; /* 공간 확보를 위해 설명 숨김 */
}

/* CTA 섹션 */
.cta-section {
    text-align: center;
    max-width: 500px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    padding: 0;
    margin-top: var(--spacing-sm);
    position: relative;
    z-index: 2;
}

.cta-section.active {
    opacity: 1;
    transform: translateX(0);
}

.cta-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    background: transparent !important;
}

.cta-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
    background: transparent !important;
}

.cta-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary-color);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.cta-section .cta-button:hover::before {
    left: 100%;
}

.cta-section .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 75, 53, 0.4);
}

.cta-section .cta-button i {
    transition: transform 0.3s ease;
}

.cta-section .cta-button:hover i {
    transform: translateX(5px);
}

/* 섹션2 */
.section02 {
    background: var(--white);
    position: relative;
}

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

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.service-list li {
    text-align: center;
    position: relative;
    padding: var(--spacing-xl);
    border-radius: 0;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.service-list li:hover::before {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.service-list .box {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-lg);
    background: var(--black);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-list .box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.service-list li:hover .box::after {
    width: 150px;
    height: 150px;
}

.service-list .box img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 1;
}

.service-list .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.service-list span {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-color);
}

/* 섹션3 */
.section03 {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section03::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
}

.section03 .inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.section03 .left h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.section03 .left h2 span.line-break {
    display: block;
}

.section03 .left h2 span.highlight {
    color: var(--primary-color);
    font-size: clamp(48px, 6vw, 72px);
    display: inline;
}

.section03 .left p {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.section03 .left > span {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: var(--spacing-xl);
}

.section03 .cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(233, 75, 53, 0.3);
}

.section03 .cta-button:hover {
    transform: translateY(-3px);
    background: var(--dark-red);
    box-shadow: 0 8px 30px rgba(233, 75, 53, 0.4);
}

.section03 .right {
    position: relative;
}

.section03 .right figure {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.section03 .right figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(78, 205, 196, 0.2));
    z-index: 1;
}

.section03 .right img {
    width: 100%;
    height: auto;
    display: block;
}


/* 푸터 */
#footer {
    background: var(--black);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer .inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.footer-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-color);
}

.footer-info address {
    font-style: normal;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    opacity: 0.8;
}

.footer-links ul {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 반응형 */
@media (max-width: 1024px) {
    .section03 .inner {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    #footer .inner {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

/* 중국 마케팅 섹션 */
.china-marketing-section {
    background: var(--light-gray);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

/* 데스크탑에서는 줄바꿈 숨김 */
.china-marketing-section .china-desc-break {
    display: none;
}

.china-marketing-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.china-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    margin-top: var(--spacing-2xl);
}

.china-left {
    position: relative;
}

.china-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.china-logo img {
    height: 40px;
}

/* 텍스트 로고 스타일 */
.xiaohongshu-text-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 16px;
    background: var(--primary-color);
    border-radius: 8px;
    margin-right: var(--spacing-sm);
}

.xiaohongshu-text-logo .chinese {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.xiaohongshu-text-logo .korean {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
}

.china-logo span {
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 500;
}

.china-left h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.china-left p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-color);
    margin-bottom: var(--spacing-lg);
}

.china-features {
    margin-bottom: var(--spacing-lg);
}

.china-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 15px;
    color: var(--text-color);
}

.china-features i {
    color: var(--primary-color);
    font-size: 18px;
}

/* 가격표 스타일 */
.china-pricing {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.china-pricing h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.china-pricing table {
    width: 100%;
    border-collapse: collapse;
}

.china-pricing td {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.china-pricing td:first-child {
    color: var(--gray-color);
}

.china-pricing td:nth-child(2) {
    text-align: center;
    color: var(--text-color);
}

.china-pricing td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

.china-pricing .note {
    margin-top: var(--spacing-sm);
    font-size: 12px;
    color: var(--gray-color);
    text-align: right;
}

.china-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--black);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.china-cta:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 75, 53, 0.3);
}

/* CTA 버튼 그룹 */
.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xl);
}

.china-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 14px 28px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.china-detail-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 75, 53, 0.3);
}

.china-detail-btn i {
    transition: transform 0.3s ease;
}

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

.china-download-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 14px 28px;
    background: transparent;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    border: 2px solid var(--black);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.china-download-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.china-right {
    position: relative;
}

.china-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.stat-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-color);
}

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

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

/* 키워드 인사이트 */
.keyword-insights {
    background: rgba(233, 75, 53, 0.05);
    padding: var(--spacing-lg);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
}

.keyword-insights h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.keyword-tags .tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid rgba(233, 75, 53, 0.2);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.keyword-tags .tag:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.keyword-tags .tag.hot {
    background: rgba(233, 75, 53, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

/* 하이라이트 섹션 */
.china-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: var(--spacing-xl);
    border-radius: 20px;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.china-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.china-highlight h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    position: relative;
}

.highlight-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.highlight-number .number {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

/* 샤오홍슈 섹션 전용 숫자 색상 */
.china-highlight .highlight-number .number {
    color: #DB1419;
}

.highlight-number .unit {
    font-size: 24px;
    font-weight: 500;
    opacity: 0.9;
}

.china-highlight p {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
}

.china-highlight strong {
    font-weight: 700;
    font-size: 20px;
}

/* 성공 사례 */
.success-case {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.success-case h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.case-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid #eee;
}

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

.case-item .brand {
    font-size: 14px;
    color: var(--gray-color);
}

.case-item .result {
    font-size: 14px;
    color: var(--text-color);
}

.case-item .result em {
    font-style: normal;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

/* 플랫폼 정보 */
.platform-info {
    margin-top: var(--spacing-lg);
}

.platform-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.platform-item {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.platform-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.platform-item p {
    font-size: 13px;
    color: var(--gray-color);
    line-height: 1.5;
}

@media (max-width: 768px) {
    /* 샤오홍슈 섹션 - 샤오홍슈 통한 뒤 줄바꿈 */
    .china-marketing-section .china-desc-break {
        display: inline;
    }

    /* 토스 섹션 - 토스 오늘의 초특가로 뒤 줄바꿈 */
    .toss-marketing-section .toss-desc-break {
        display: inline;
    }

    .china-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .china-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
    }

    .china-left h3 {
        font-size: 22px;
    }

    .stat-item {
        padding: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .china-pricing table {
        font-size: 13px;
    }
    
    .china-pricing td {
        padding: var(--spacing-xs) 0;
    }
    
    .keyword-tags .tag {
        font-size: 12px;
        padding: 4px 10px;
    }
    
    .platform-item {
        padding: var(--spacing-sm);
    }
    
    .platform-item h5 {
        font-size: 14px;
    }
    
    .platform-item p {
        font-size: 12px;
    }
    
    /* CTA 버튼 */
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .china-detail-btn,
    .china-download-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* 하이라이트 */
    .china-highlight {
        padding: var(--spacing-lg);
    }
    
    .highlight-number .number {
        font-size: 48px;
    }
    
    .highlight-number .unit {
        font-size: 20px;
    }
    
    /* 성공 사례 */
    .case-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
    
    .case-item .result {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-3xl: 64px;
        --spacing-2xl: 48px;
    }

    #header .gnb {
        display: none;
    }

    .header-download {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
    
    .main-visual .pc {
        display: none;
    }
    
    .main-visual .mo {
        display: block;
    }
    
    /* 중복 제거 - 위의 반응형 스타일 사용 */
    
    .right_quick {
        display: none;
    }
    
    .section-title {
        font-size: 22px;
    }

    .section-desc {
        font-size: 13px;
    }

    /* 섹션3 - 업계 최고 만족도 */
    .section03 .left h2 {
        font-size: clamp(28px, 7vw, 42px);
    }

    .section03 .left h2 span.highlight {
        font-size: clamp(36px, 8vw, 54px);
    }

    .section03 .left p {
        font-size: 20px;
    }

    .section03 .left > span {
        font-size: 14px;
    }
}

/* 브랜드 포트폴리오 캐러셀 */
.brand-carousel-section {
    padding: var(--spacing-3xl) 0;
    background: var(--light-gray);
    overflow: hidden;
}

.brand-carousel-section .inner {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.brand-carousel-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.brand-carousel-section p {
    font-size: 1.1rem;
    color: var(--gray-color);
    font-weight: 300;
}

.brand-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brand-carousel {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.brand-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    animation: slide-left 30s linear infinite;
    width: fit-content;
}

.brand-row.reverse {
    animation: slide-right 35s linear infinite;
}

.brand-row:nth-child(3) {
    animation: slide-left 40s linear infinite;
}

.brand-item {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: var(--spacing-sm);
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.6s;
}

.brand-item:hover::before {
    left: 100%;
}

.brand-item:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(233, 75, 53, 0.15);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

/* 애니메이션 키프레임 */
@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-11 * (120px + var(--spacing-xl))));
    }
}

@keyframes slide-right {
    0% {
        transform: translateX(calc(-11 * (120px + var(--spacing-xl))));
    }
    100% {
        transform: translateX(0);
    }
}

/* 호버 시 애니메이션 일시정지 */
.brand-row:hover {
    animation-play-state: paused;
}
    
    /* 스크롤 기반 섹션 모바일 */
    .section01 {
        padding: var(--spacing-2xl) 0;
    }
    
    .scroll-section {
        min-height: auto;
        height: auto;
    }
    
    .sticky-container {
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-md);
        gap: var(--spacing-xl);
        height: auto;
    }
    
    .left-content,
    .right-content {
        flex: none;
        width: 100%;
        padding: 0;
    }
    
    .left-content {
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }
    
    .section01 .section-title {
        font-size: clamp(1.3rem, 5.5vw, 2.2rem);
    }
    
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        max-width: 100%;
    }
    
    /* 6개 카드 모바일 레이아웃 - 2열 3행 */
    .feature-card:nth-child(4) {
        grid-column: auto;
    }
    
    .feature-card:nth-child(5) {
        grid-column: auto;
    }
    
    .feature-card:nth-child(6) {
        grid-column: auto;
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 14px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
    
    .cta-section h3 {
        font-size: 20px;
    }

    .cta-section p {
        font-size: 13px;
    }
    
    .cta-section .cta-button {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 14px;
    }
    
    .service-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-list li {
        padding: 16px 8px;
    }

    /* 초소형 모바일 (400px 이하) - 1열 레이아웃 */
    @media (max-width: 400px) {
        .service-list {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .service-list li {
            padding: 20px;
        }
    }

    .service-list .box {
        width: 60px;
        height: 60px;
        margin: 0 auto var(--spacing-sm);
    }

    .service-list .box img {
        width: 30px;
        height: 30px;
    }

    .service-list .title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .service-list span {
        font-size: 13px;
    }
    
    .line {
        grid-template-columns: 1fr;
    }
    
    .checkbox_group {
        grid-template-columns: 1fr;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta a {
        padding: 14px 20px;
    }
    
    /* 모바일 브랜드 캐러셀 */
    .brand-carousel-section {
        padding: var(--spacing-2xl) 0;
    }

    br.mobile-only {
        display: inline !important;
    }
    
    .brand-item {
        width: 100px;
        height: 70px;
        padding: var(--spacing-xs);
    }
    
    .brand-row {
        gap: var(--spacing-md);
        width: fit-content;
    }
    
    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-11 * (100px + var(--spacing-md))));
        }
    }
    
    @keyframes scroll-right {
        0% {
            transform: translateX(calc(-11 * (100px + var(--spacing-md))));
        }
        100% {
            transform: translateX(0);
        }
    }

    /* 애드리브를 선택할 수 밖에 없는 이유 제목 줄바꿈 */
    .section02 .section-title .fixup-break::after {
        content: '\A';
        white-space: pre;
    }
}

/* 푸터 */
#footer {
    background: #2a2a2a;
    color: #999;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
    margin-top: var(--spacing-3xl);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: 200px 1fr 400px;
    gap: var(--spacing-xl);
    position: relative;
}

/* 푸터 로고 */
.footer-logo {
    grid-column: 1;
    grid-row: 1;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* 푸터 정보 */
.footer-info {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.footer-info > div {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-info p {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.footer-info strong {
    color: #ccc;
    font-weight: 500;
    margin-right: 8px;
}

.footer-info .copyright {
    margin-top: var(--spacing-sm);
    color: #777;
    font-size: 12px;
}

.business-hours {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

/* SNS 링크 */
.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    align-items: center;
}

/* 390px 이하 반응형 추가 */
@media (max-width: 390px) {
    /* 토스 광고 제목 줄바꿈 */
    .toss-marketing-section .section-title .toss-ad-break {
        display: block;
        margin-top: 0.3em;
    }

    /* 토스 섹션 - 토스 오늘의 초특가로 뒤 줄바꿈 */
    .toss-marketing-section .toss-desc-break {
        display: inline;
    }

    /* 애드리브를 선택할 수 밖에 없는 이유 제목 줄바꿈 */
    .section02 .section-title .fixup-break::after {
        content: '\A';
        white-space: pre;
    }
    
    /* 만들어냅니다 텍스트 줄바꿈 */
    .section02 .section-desc .result-break {
        display: block;
        margin-top: 0.2em;
    }
    
    /* 샤오홍슈 섹션 - 샤오홍슈 통한 뒤 줄바꿈 */
    .china-marketing-section .china-desc-break {
        display: inline;
    }

    /* 샤오홍슈 섹션 - 중국 최대 줄바꿈 */
    .china-marketing-section .china-platform-break {
        display: block;
        margin-top: 0.2em;
    }

    /* 샤오홍슈 섹션 - 255만 개 뒤 줄바꿈 */
    .china-marketing-section .china-stats-break {
        display: none;
    }
    .china-marketing-section .china-stats-break + strong {
        display: block;
        margin-top: 0.2em;
    }
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2a2a;
    border-radius: 50%;
    color: #666;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hover-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
}

.social-links a:hover::before {
    opacity: 1;
}

/* 각 SNS 아이콘별 색상 */
.social-links a:nth-child(1) { /* 네이버 */
    --hover-color: #03C75A;
}
.social-links a:nth-child(1) i::before {
    content: "\eb07"; /* xi-naver */
    color: #03C75A;
}

.social-links a:nth-child(2) { /* 카카오톡 */
    --hover-color: #FEE500;
}
.social-links a:nth-child(2) i::before {
    content: "\eb0e"; /* xi-kakaotalk */
    color: #FEE500;
}
.social-links a:nth-child(2):hover {
    color: #3C1E1E;
}

.social-links a:nth-child(3) { /* 인스타그램 */
    --hover-color: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-links a:nth-child(3) i::before {
    content: "\eae8"; /* xi-instagram */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links a:nth-child(4) { /* 틱톡 */
    --hover-color: #000;
}
.social-links a:nth-child(4) i::before {
    content: "\eb51"; /* xi-videocam for tiktok */
    color: #FF0050;
}

.social-links a:nth-child(5) { /* 유튜브 */
    --hover-color: #FF0000;
}
.social-links a:nth-child(5) i::before {
    content: "\eb6f"; /* xi-youtube-play */
    color: #FF0000;
}

.social-links a:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.social-links a:nth-child(1):hover {
    box-shadow: 0 5px 20px rgba(3, 199, 90, 0.4);
}

.social-links a:nth-child(2):hover {
    box-shadow: 0 5px 20px rgba(254, 229, 0, 0.4);
}

.social-links a:nth-child(3):hover {
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.social-links a:nth-child(4):hover {
    box-shadow: 0 5px 20px rgba(255, 0, 80, 0.4);
}

.social-links a:nth-child(5):hover {
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

/* 푸터 지도 */
.footer-map {
    grid-column: 3;
    grid-row: 1;
    position: relative;
}

/* 푸터 지도 이미지 스타일 추가 */
.footer-map,
.map-image {
    width: 100%;
    height: auto;
}

.footer-map img,
.map-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* footer-info-map 래퍼 스타일 */
.footer-info-map {
    margin: var(--spacing-xl) 0;
}

.company-info-wrapper {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.company-details {
    flex: 1;
}

.map-container {
    position: relative;
    width: 100%;
    height: 200px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* 모바일에서 지도 크기 조정 */
@media (max-width: 768px) {
    .map-container {
        height: 150px;
        max-width: 300px;
        margin: 0 auto;
    }
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.map-container:hover img {
    opacity: 1;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    transition: all 0.3s;
}

.marker-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.marker-icon i {
    font-size: 32px;
    color: var(--primary-color);
    filter: drop-shadow(0 2px 8px rgba(233, 75, 53, 0.5));
    animation: bounce 2s infinite;
}

.company-name {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(233, 75, 53, 0.3);
}

/* 푸터 메뉴 */
.footer-menu {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid #3a3a3a;
}

.footer-menu ul {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    list-style: none;
}

.footer-menu a {
    color: #999;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
}

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

.footer-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.footer-menu a:hover::after {
    width: 100%;
}

/* 관리자 로그인 */
.admin-login {
    position: absolute;
    bottom: var(--spacing-xl);
    right: var(--spacing-xl);
    background: #3a3a3a;
    color: #999;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-login:hover {
    background: #4a4a4a;
    color: #ccc;
    transform: translateY(-2px);
}

.admin-login i {
    font-size: 16px;
}

/* 애니메이션 */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 반응형 */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-logo,
    .footer-info,
    .footer-map {
        grid-column: 1;
    }
    
    .footer-map {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-menu {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    #footer {
        padding: var(--spacing-2xl) 0 var(--spacing-lg);
    }
    
    .footer-content {
        padding: 0 var(--spacing-md);
        gap: var(--spacing-lg);
    }
    
    /* 푸터 로고 크기 조정 */
    .footer-logo img {
        height: 30px;
    }
    
    /* 푹터 텍스트 크기 조정 */
    .footer-info p {
        font-size: 12px;
    }
    
    /* SNS 링크 크기 조정 */
    .social-links {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-lg);
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .footer-menu ul {
        flex-wrap: wrap;
        gap: var(--spacing-md);
        font-size: 13px;
    }
    
    .admin-login {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--spacing-xl);
        display: inline-flex;
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .business-hours {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    /* 지도 컨테이너 모바일 추가 조정 */
    .footer-map {
        margin-top: var(--spacing-lg);
    }
    
    /* 모바일에서 푸터 지도 이미지 숨기기 */
    .footer-map,
    .footer-map img,
    .map-image {
        display: none;
    }
    
    /* company-info-wrapper 모바일 조정 */
    .company-info-wrapper {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .company-details {
        font-size: 12px;
    }
    
    .marker-icon i {
        font-size: 24px;
    }
    
    .company-name {
        font-size: 11px;
        padding: 3px 10px;
    }
}

/* 토스 마케팅 섹션 스타일 */
.toss-marketing-section {
    padding: 120px 0 !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* 데스크탑에서는 줄바꿈 숨김 */
.toss-marketing-section .toss-desc-break {
    display: none;
}

.toss-marketing-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.toss-marketing-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.toss-marketing-section .section-title span {
    color: #0064FF;
    position: relative;
}

.toss-marketing-section .section-desc {
    font-size: 20px;
    color: #666;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.5;
}

.toss-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.toss-left {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.toss-logo {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 40px;
}

.toss-text-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.toss-text-logo .main-text {
    font-size: 36px;
    font-weight: 900;
    color: #0064FF;
}

.toss-text-logo .sub-text {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.toss-logo > span {
    font-size: 14px;
    color: #666;
    padding: 4px 12px;
    background: #f1f3f5;
    border-radius: 20px;
}

.toss-left h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.toss-left > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.toss-features {
    list-style: none;
    margin-bottom: 40px;
}

.toss-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #495057;
}

.toss-features i {
    color: #0064FF;
    font-size: 20px;
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.toss-detail-btn,
.toss-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.toss-detail-btn {
    background: #0064FF;
    color: white;
}

.toss-detail-btn:hover {
    background: #0051CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 100, 255, 0.3);
}

.toss-download-btn {
    background: white;
    color: #0064FF;
    border: 2px solid #0064FF;
}

.toss-download-btn:hover {
    background: #0064FF;
    color: white;
}

.toss-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.toss-highlight {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.toss-highlight h4 {
    font-size: 20px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
}

.highlight-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.highlight-number .number {
    font-size: 72px;
    font-weight: 900;
    color: #0064FF;
    line-height: 1;
}

.highlight-number .unit {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.toss-highlight p {
    font-size: 16px;
    color: #666;
}

.price-comparison {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.price-comparison h4 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comparison-item.highlight {
    background: #0064FF;
    color: white;
    transform: scale(1.05);
}

.comparison-item .platform {
    font-size: 16px;
    font-weight: 600;
}

.comparison-item .price {
    font-size: 16px;
    font-weight: 400;
}

.comparison-item .price em {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
}

.comparison-item.highlight .price em {
    color: #FFD43B;
}

.toss-benefits {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
}

.toss-benefits h4 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.benefit-desc {
    font-size: 16px;
    color: #0064FF;
    font-weight: 600;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .toss-content {
        gap: 60px;
    }
    
    .toss-left {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    /* 토스 섹션 - 토스 오늘의 초특가로 뒤 줄바꿈 */
    .toss-marketing-section .toss-desc-break {
        display: inline;
    }

    .toss-marketing-section {
        padding: 80px 0;
    }

    .toss-marketing-section .section-title {
        font-size: 24px;
    }

    .toss-marketing-section .section-desc {
        font-size: 13px;
        margin-bottom: 60px;
    }
    
    .toss-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .toss-left {
        padding: 30px;
    }
    
    .toss-text-logo .main-text {
        font-size: 28px;
    }
    
    .toss-text-logo .sub-text {
        font-size: 18px;
    }
    
    .toss-left h3 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .toss-detail-btn,
    .toss-download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .toss-highlight {
        padding: 30px;
    }
    
    .highlight-number .number {
        font-size: 48px;
    }
    
    .highlight-number .unit {
        font-size: 24px;
    }
}

/* 플로팅 버튼 스타일 */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-top {
    width: 50px;
    height: 50px;
    background: #666;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    position: relative;
    overflow: hidden;
}

.btn-top i,
.btn-top span {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    font-size: 24px;
    font-weight: bold;
}

/* 화살표가 보이지 않을 경우를 대비한 CSS 화살표 */
.btn-top::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid white;
    z-index: 3;
    transition: transform 0.3s ease;
    display: none; /* 텍스트 화살표를 사용하므로 숨김 */
}

.btn-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FF4500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1;
}

.btn-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-top:hover::before {
    transform: translateY(0);
}

.btn-top:hover i,
.btn-top:hover span {
    transform: translateY(-2px);
}

.btn-top:hover::after {
    transform: translate(-50%, calc(-50% - 2px));
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .btn-top {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* 모바일 메뉴 스타일 */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 100000;
    overflow-y: auto;
}

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

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    color: #333;
}

.mobile-menu-nav {
    padding: 20px 0;
}

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

.mobile-menu-nav > ul > li {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-nav > ul > li > a {
    display: block;
    padding: 15px 20px;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

/* 드롭다운 화살표 아이콘 */
.mobile-menu-nav > ul > li > a::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform-origin: center;
    transition: transform 0.3s ease;
}

.mobile-menu-nav > ul > li.active > a::after {
    transform: translateY(-50%) rotate(45deg);
}

/* 드롭다운 메뉴 */
.mobile-menu-nav .dropdown {
    display: none;
    background: #f8f8f8;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav > ul > li.active .dropdown {
    display: block;
}

.mobile-menu-nav .dropdown li {
    border-bottom: 1px solid #e8e8e8;
}

.mobile-menu-nav .dropdown li:last-child {
    border-bottom: none;
}

.mobile-menu-nav .dropdown a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-nav .dropdown a:hover {
    background: #fff;
    color: var(--primary-color);
    padding-left: 45px;
}

/* 모바일 메뉴 채널 링크 */
.mobile-menu-channels {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu-channels h4 {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.channel-links {
    display: flex;
    gap: 10px;
}

.channel-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    color: #666;
    font-size: 18px;
    transition: all 0.3s ease;
}

.channel-links a:hover {
    background: var(--primary-color);
    color: white;
}

/* 모바일 메뉴 다운로드 버튼 */
.mobile-menu-download {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu-download a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-download a:hover {
    background: var(--dark-red);
}

/* 모바일 메뉴 오버레이 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 99999;
}

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

/* 모바일에서 푸터 지도는 footer-modern.css에서 처리 */
