﻿/* 제안 4: 쿨톤 오프화이트 색온도 조절 */
:root {
    --color-gray-100: rgba(255, 255, 255, 0.4) !important; /* 글래스모피즘 톤업을 위해 반투명 화이트로 변경 */
}
html { height: auto !important; } /* bundle.css의 height: 100%를 오버라이드 */
body { overflow-x: hidden; height: auto !important; min-height: 100vh; } /* 높이 auto로 복구, 최소 높이는 뷰포트 */
body { background-color: #f8fafc; background-image: radial-gradient(#cbd5e1 1px, transparent 1px); background-size: 32px 32px; }
/* 2. 메인 비주얼 */
.visual-area { position: relative; width: 100%; background-color: transparent; padding: 20px; box-sizing: border-box; }
.swiper-visual { width: 100%; max-width: 1920px; margin: 0 auto; height: 73vh; min-height: 600px; max-height: 790px; overflow: hidden; position: relative; border-radius: 28px; }
.swiper-visual .swiper-slide { position: relative; width: 100%; height: 100%; display: block; }
.swiper-visual .swiper-slide > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }

/* 메인 배너 텍스트 오버레이 */
.swiper-visual .texts {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 25%; left: 10%; z-index: 10;
    line-height: 1.3;
}
.swiper-visual .texts h1 { color: #fff; text-shadow: 2px 2px 10px rgba(0,0,0,0.6); font-weight: 900; letter-spacing: -0.05em; margin: 0; }
.swiper-visual .texts h1 span { display: block; font-size: 3.5rem; }
.swiper-visual .texts p.desc { color: #fff; text-shadow: 2px 2px 10px rgba(0,0,0,0.6); font-size: 1.5rem; letter-spacing: -0.02em; margin-top: 15px; }
.swiper-visual .texts .btn {
    display: inline-block; margin-top: 30px; padding: 12px 30px;
    font-size: 1.2rem; font-weight: 800; border: 1px solid rgba(255,255,255,0.8); border-radius: 50px;
    color: #fff; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2); text-decoration: none; transition: all 0.3s;
}
.swiper-visual .texts .btn:hover { background: rgba(255,255,255,0.28); border-color: rgba(255,255,255,1); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }

/* 시차 애니메이션 (Staggered Fade-up) */
.swiper-visual .texts h1 span, .swiper-visual .texts p.desc, .swiper-visual .texts .btn {
    opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.swiper-slide-active .texts h1 span:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.swiper-slide-active .texts h1 span:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.swiper-slide-active .texts p.desc { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.swiper-slide-active .texts .btn { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }

.swiper-pagination-custom {
    position: absolute !important;
    bottom: auto !important;
    top: 0;
    left: 0;
    transform: none !important;
    width: auto !important;
    max-width: none;
    padding: 0;
    margin: 0 !important;
    z-index: 10;
    display: flex; gap: 8px; justify-content: flex-start; align-items: center;
    text-align: left !important;
}
/* 진행형 프로그레스 바 페이지네이션 (비활성: 닷, 활성: 바) */
.swiper-pagination-bullet { 
    width: 10px; height: 10px; background: rgba(255,255,255,0.4); opacity: 1; box-shadow: 0 1px 3px rgba(0,0,0,0.3);
    border-radius: 50%; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; display: block; position: relative; overflow: hidden; 
}
.swiper-pagination-bullet-active { width: 40px; border-radius: 5px; background: rgba(255,255,255,0.3); }
.swiper-pagination-bullet-active::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: #fff; transform-origin: left; animation: slideProgress 5s linear forwards;
}
@keyframes slideProgress {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.swiper-button-next-custom, .swiper-button-prev-custom {
    color: #fff; opacity: 0.7; transition: all 0.3s; z-index: 10;
    width: 54px; height: 54px; background: rgba(255,255,255,0.1); border-radius: 50%;
    backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2);
    display: flex; justify-content: center; align-items: center;
}
.swiper-button-next-custom:hover, .swiper-button-prev-custom:hover { 
    opacity: 1; background: rgba(255,255,255,0.25); transform: scale(1.05);
}
.swiper-button-prev-custom { left: 30px; }
.swiper-button-next-custom { right: 30px; }
.swiper-button-prev-custom::after { content: '\276E' !important; font-size: 24px; font-weight: 900; font-family: sans-serif; }
.swiper-button-next-custom::after { content: '\276F' !important; font-size: 24px; font-weight: 900; font-family: sans-serif; }

/* 3. 하단 플로팅 서치 패널 (Bottom Floating Pill) */
.search-wrapper {
    position: fixed; bottom: 30px; left: 0;
    z-index: 990; width: 100%; display: flex; flex-direction: column; align-items: center;
    padding: 0 20px; transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none; opacity: 1;
    animation: searchWrapperBounceIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}
/* 검색바와 우측 quick_menu 둘다 원래 위치에서 표시 */
.search-wrapper.is-stuck {
    /* 스크롤해도 숨기지 않고 원래 위치 유지 */
}
/* 우측 quick_menu가 compositing 레이어 위에 올라오도록 보장 */
#footer .quick_menu {
    will-change: opacity;
    isolation: isolate;
}

/* 조그만 알약 배너 (Light Glass & Glow) */
.floating-micro-banner {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    padding: 6px 16px 6px 8px; border-radius: 50px;
    font-size: 0.9rem; font-weight: 700; text-decoration: none;
    box-shadow: 0 10px 25px rgba(59, 72, 204, 0.1), inset 0 0 0 1px rgba(59, 72, 204, 0.2);
    pointer-events: auto; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 12px;
    animation: breathingGlow 3s infinite alternate;
}

@keyframes breathingGlow {
    0% { box-shadow: 0 10px 25px rgba(59, 72, 204, 0.05), inset 0 0 0 1px rgba(59, 72, 204, 0.15); }
    100% { box-shadow: 0 15px 35px rgba(38, 208, 206, 0.2), inset 0 0 0 1px rgba(38, 208, 206, 0.4); }
}

.floating-micro-banner:hover {
    background: rgba(255, 255, 255, 1); transform: translateY(-3px); 
    box-shadow: 0 15px 30px rgba(59, 72, 204, 0.15), inset 0 0 0 1px rgba(59, 72, 204, 0.3);
}

.floating-micro-banner .badge-free {
    display: flex; align-items: center; gap: 4px;
    background: linear-gradient(135deg, #3b48cc 0%, #26d0ce 100%);
    color: #fff; font-size: 0.8rem; font-weight: 800; padding: 4px 12px; border-radius: 40px;
    letter-spacing: -0.02em; box-shadow: 0 2px 10px rgba(38, 208, 206, 0.3);
}

.floating-micro-banner .sparkle-icon {
    width: 14px; height: 14px; fill: #fff; stroke: none;
    animation: sparkleSpin 4s linear infinite;
}

@keyframes sparkleSpin {
    0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
    100% { transform: scale(1) rotate(360deg); opacity: 0.8; }
}

.floating-micro-banner .banner-text {
    color: var(--color-gray-900); letter-spacing: -0.02em; padding-left: 2px;
}

.floating-micro-banner .arrow-icon { 
    width: 16px; height: 16px; stroke-width: 2.5; stroke: var(--color-gray-600); transition: transform 0.3s; 
}
.floating-micro-banner:hover .arrow-icon { transform: translateX(3px); stroke: var(--color-primary); }

.search-wrapper.is-focused .floating-micro-banner {
    opacity: 1; pointer-events: auto; transform: translateY(0); margin-bottom: 24px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(59, 72, 204, 0.35); border-radius: 60px;
    padding: 10px 10px; box-shadow: 0 20px 50px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.8);
    width: 100%; max-width: 600px; pointer-events: auto;
    transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    will-change: transform;
    animation: searchPanelGlow 3s ease-in-out infinite alternate;
}

@keyframes searchPanelGlow {
    0%   { border-color: rgba(59,72,204,0.35); box-shadow: 0 20px 50px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.8), 0 0 18px rgba(59,72,204,0.1); }
    100% { border-color: rgba(38,208,206,0.6); box-shadow: 0 20px 50px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.8), 0 0 28px rgba(38,208,206,0.22); }
}

.search-container {
    display: flex; align-items: center; width: 100%;
    background: transparent; border-radius: 50px; padding: 0 6px 0 20px; height: 56px;
    box-shadow: none; transition: all 0.4s;
}

.icon-search { width: 22px; height: 22px; flex-shrink: 0; }

.search-input {
    flex-grow: 1; border: none !important; background: transparent;
    padding: 0 16px; font-size: 1.05rem; color: var(--color-black); outline: none !important; font-weight: 600; box-shadow: none !important;
}
.search-input:focus { outline: none !important; box-shadow: none !important; border: none !important; }
.search-input::placeholder { color: #999; font-weight: 500; letter-spacing: -0.02em; }


.btn-search {
    background: linear-gradient(135deg, #3b48cc 0%, #26d0ce 100%); color: #fff; border: none; border-radius: 40px;
    padding: 0 32px; height: 100%; font-size: 1.05rem; font-weight: 700; cursor: pointer;
    box-shadow: 0 4px 15px rgba(59, 72, 204, 0.3); transition: all 0.3s; white-space: nowrap;
}
.btn-search:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(38, 208, 206, 0.45); }

.trending-keywords {
    display: block;
    margin-top: 0; padding: 0 4px; font-size: 0.95rem;
    max-height: 0; opacity: 0; visibility: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.keyword-tag { background: rgba(59,72,204,0.06); color: var(--color-primary); padding: 8px 18px; border-radius: 8px; text-decoration: none; font-weight: 700; border: 1px solid rgba(59,72,204,0.15); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); letter-spacing: -0.5px; }
.keyword-tag:hover { background: rgba(59,72,204,0.12); border-color: rgba(59,72,204,0.3); box-shadow: 0 4px 12px rgba(59,72,204,0.18); }

/* 포커스 상태 (Bottom Sheet Expand) */
.search-wrapper.is-focused .glass-panel {
    max-width: 680px; border-radius: 36px; padding: 24px;
    background: rgba(255, 255, 255, 0.95); transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,1);
}
.search-wrapper.is-focused .search-container {
    background: #f4f6f9; box-shadow: inset 0 2px 6px rgba(0,0,0,0.03);
}
.search-wrapper.is-focused .trending-keywords {
    max-height: 100px; opacity: 1; visibility: visible; margin-top: 16px; margin-bottom: 8px;
}

/* Focus Mode 오버레이 효과 */
.search-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.5); z-index: 10003;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    will-change: opacity;
}
.search-overlay.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.search-wrapper.is-focused { z-index: 10004; }
.search-wrapper.is-focused .glass-panel {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 0 1.5px rgba(38,208,206,0.6), 0 0 30px rgba(38,208,206,0.25);
    border-color: rgba(38,208,206,0.7);
    animation: none;
}

/* 4. 공통 섹션 */
.section-wrap { padding: 120px 20px; max-width: 1200px; margin: 0 auto; }
.section-header { display: block !important; text-align: center; margin-bottom: 60px; }
.section-header h3 { font-size: 2.8rem; font-weight: 800; color: var(--color-black); margin-bottom: 20px; }
.section-header p { font-size: 1.1rem; color: var(--color-gray-600); line-height: 1.6; }
.bg-seamless .section-wrap .section-header { margin-bottom: 48px; }

/* 섹션 배경 래퍼 */
.bg-seamless { background: #ffffff; width: 100%; padding: 40px 0; }
/* 다크 모드 오로라 배경 추가 */
.bg-dark { background-color: #0f1016; width: 100%; position: relative; overflow: hidden; }
.aurora-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.aurora-1 { position: absolute; top: -10%; left: 10%; width: 360px; height: 360px; background: rgba(59,72,204,0.25); filter: blur(70px); border-radius: 50%; animation: auroraMove 15s infinite alternate ease-in-out; will-change: transform; }
.aurora-2 { position: absolute; bottom: -10%; right: 10%; width: 300px; height: 300px; background: rgba(38,208,206,0.18); filter: blur(60px); border-radius: 50%; animation: auroraMove 20s infinite alternate-reverse ease-in-out; will-change: transform; }
.bg-dark .section-wrap { position: relative; z-index: 2; }
@keyframes auroraMove { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(100px, 50px) scale(1.1); } }

.bg-dark .section-header h3 { color: #ffffff; }
.bg-dark .section-header p { color: rgba(255,255,255,0.7); }
.bg-dark .cta-banner { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); }
.bg-dark .service-card { 
    background: rgba(255, 255, 255, 0.05); 
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.1); 
    border: none; 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    color: #fff; 
}
.bg-dark .service-card h5 { color: #fff; }
.bg-dark .service-card p { color: rgba(255,255,255,0.7); }
.bg-dark .service-card p span { color: #8c9eff; }
.service-card-icon {
    width: 52px; height: 52px; border-radius: 16px; margin-bottom: 24px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
}
.service-card-icon svg { width: 26px; height: 26px; stroke: rgba(255,255,255,0.85); }

/* 제안 3: 성과 지표 배너 다크 모드 콘트라스트 */
.stats-dark-wrapper {
    background-color: #0A0F1A; width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); padding: 80px 0;
    margin-top: 40px; margin-bottom: 0; position: relative; overflow: hidden;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 32px 32px;
    box-shadow: inset 0 20px 40px rgba(0,0,0,0.5);
}
.stats-banner { 
    display: flex; justify-content: center; align-items: center; gap: 120px; 
    position: relative; z-index: 10; margin: 0 auto; width: 100%; max-width: 1200px;
}
.stat-item { 
    text-align: center; display: flex; flex-direction: column; align-items: center; position: relative;
}
.stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: -60px; top: 10%; height: 80%; width: 1px; background: rgba(255,255,255,0.1);
}
.stat-item div { display: flex; align-items: baseline; justify-content: center; margin-bottom: 12px; }
.stat-item h4 { font-size: 4.5rem; font-weight: 900; color: #ffffff; margin: 0; line-height: 1; letter-spacing: -1px; text-shadow: 0 0 30px rgba(255,255,255,0.15); }
.stat-item span { font-size: 2.5rem; font-weight: 800; color: #26d0ce; margin-left: 4px; text-shadow: 0 0 20px rgba(38,208,206,0.4); filter: brightness(1.2); }
.stat-item p { font-size: 1.15rem; color: rgba(255,255,255,0.6); font-weight: 600; margin: 0; letter-spacing: -0.5px; }

/* 맞춤형 플랜 탭 (수정: 세그먼트 컨트롤 & 2단 분할) */
.custom-plan-tabs { display: inline-flex; justify-content: center; gap: 4px; margin-bottom: 50px; background: var(--color-gray-100); padding: 8px; border-radius: 50px; position: relative; left: 50%; transform: translateX(-50%); }
.plan-tab { padding: 14px 32px; border-radius: 40px; border: none; background: transparent; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); color: var(--color-gray-600); }
.plan-tab.active { background: #fff; color: var(--color-primary); box-shadow: 0 5px 20px rgba(0,0,0,0.08); }

/* 프리미엄 플랜 탭 디자인 고도화 */
.custom-plan-content { 
    background: #ffffff; border-radius: 40px; padding: 70px; 
    box-shadow: 0 30px 80px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.02); 
    text-align: left; position: relative; overflow: hidden;
}
.plan-panel { display: none; }
.plan-panel.active { display: flex; align-items: center; justify-content: space-between; gap: 80px; animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1); }

.plan-text { flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
.plan-badge { background: rgba(59,72,204,0.08); color: var(--color-primary); padding: 8px 18px; border-radius: 30px; font-weight: 800; font-size: 0.95rem; margin-bottom: 24px; letter-spacing: -0.5px; }
.plan-text h4 { font-size: 2.4rem; font-weight: 900; color: var(--color-black); margin-bottom: 24px; line-height: 1.3; letter-spacing: -1px; }
.plan-highlight { display: flex; align-items: center; background: #f8f9fc; border: 1px solid #edf0f5; padding: 18px 24px; border-radius: 16px; font-weight: 700; font-size: 1.15rem; color: var(--color-primary); margin-bottom: 24px; width: 100%; box-sizing: border-box; }
.hl-dot { width: 10px; height: 10px; background: var(--color-primary); border-radius: 50%; margin-right: 14px; box-shadow: 0 0 10px rgba(59,72,204,0.5); }
.plan-text p { font-size: 1.1rem; line-height: 1.7; color: var(--color-gray-600); margin-bottom: 0; }

/* 시각적(Visual) 아트웍 영역 */
.plan-visual { flex: 1; display: flex; justify-content: center; align-items: center; }
.visual-box { position: relative; width: 100%; max-width: 360px; height: 360px; border-radius: 40px; background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); border: 1px solid rgba(255, 255, 255, 0.9); box-shadow: 0 30px 60px rgba(0,0,0,0.06), inset 0 2px 8px rgba(255,255,255,1); display: flex; justify-content: center; align-items: center; overflow: hidden; }
.glow-bg { position: absolute; width: 300px; height: 300px; border-radius: 50%; filter: blur(90px); opacity: 0.75; animation: pulseGlow 5s infinite alternate; }
.glow-bg.blue { background: #3b48cc; top: -20%; left: -20%; }
.glow-bg.mint { background: #26d0ce; bottom: -20%; right: -20%; }
.glow-bg.purple { background: #8b5cf6; top: 10%; right: -10%; }
.glow-bg.orange { background: #f97316; bottom: 0; left: 10%; }

.glass-card { position: relative; z-index: 2; width: 120px; height: 120px; background: rgba(255,255,255,0.7); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.9); border-radius: 30px; display: flex; justify-content: center; align-items: center; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.glass-card svg { stroke: var(--color-primary); stroke-width: 1.5; filter: drop-shadow(0 4px 6px rgba(59,72,204,0.2)); }

.mini-chart { position: absolute; bottom: 40px; right: 40px; z-index: 3; display: flex; align-items: flex-end; gap: 8px; height: 60px; background: rgba(255,255,255,0.9); padding: 12px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.03); }
.mini-chart .bar { width: 12px; background: var(--color-primary); border-radius: 6px; animation: growBar 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards; transform-origin: bottom; }
.mini-chart .bar:nth-child(1) { background: #cbd5e1; }
.mini-chart .bar:nth-child(2) { background: #94a3b8; }

/* 셀러 유형별 맞춤 대시보드 비주얼 */
.plan-mock { position: relative; z-index: 2; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; box-sizing: border-box; gap: 10px; }
.mock-search-bar { width: 100%; background: rgba(255,255,255,0.95); border: 1px solid rgba(255,255,255,1); border-radius: 16px; padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; color: #475569; box-shadow: 0 10px 24px rgba(0,0,0,0.06); transform: translateY(0); animation: floatY 6s ease-in-out infinite; }
.mock-search-bar svg { width: 15px; height: 15px; stroke: var(--color-primary); fill: none; stroke-width: 2; flex-shrink: 0; }
.mock-product-card { background: rgba(255,255,255,0.95); border-radius: 20px; border: 1px solid rgba(255,255,255,1); padding: 16px; display: flex; gap: 14px; align-items: center; width: 100%; box-shadow: 0 15px 35px rgba(0,0,0,0.08); transform: translateY(0); animation: floatY 6s ease-in-out infinite; animation-delay: 1s; }
.mock-product-thumb { width: 48px; height: 48px; background: linear-gradient(135deg, #e0e7ff, #c7d2fe); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.mock-product-meta { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.mock-ad-badge { background: var(--color-primary); color: #fff; font-size: 0.62rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; display: inline-block; width: fit-content; }
.mock-product-nm { font-size: 0.78rem; font-weight: 600; color: #1e293b; }
.mock-product-pr { font-size: 0.95rem; font-weight: 800; color: var(--color-primary); }
.mock-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7px; width: 100%; }
.metric-chip { background: rgba(255,255,255,0.95); border: 1px solid rgba(255,255,255,1); border-radius: 14px; padding: 12px 8px; text-align: center; box-shadow: 0 8px 20px rgba(0,0,0,0.05); transform: translateY(0); animation: floatY 6s ease-in-out infinite; animation-delay: 2s; }
.metric-chip .mc-label { font-size: 0.65rem; color: #64748b; display: block; margin-bottom: 3px; }
.metric-chip .mc-value { font-size: 0.88rem; font-weight: 800; color: #1e293b; display: block; }
.metric-chip .mc-value.up { color: #10b981; }
.mock-funnel-title { font-size: 0.72rem; font-weight: 700; color: #64748b; letter-spacing: 0.06em; }
.mock-funnel { display: flex; flex-direction: column; gap: 7px; width: 100%; }
.funnel-step { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px; border-radius: 8px; font-size: 0.8rem; font-weight: 700; color: #fff; }
.funnel-step .fs-label { font-size: 0.76rem; }
.funnel-step .fs-num { font-size: 0.85rem; opacity: 0.9; }
.mock-lead-header { font-size: 0.76rem; font-weight: 600; color: #64748b; }
.mock-lead-count { font-size: 2.2rem; font-weight: 900; color: #0f766e; line-height: 1.1; }
.mock-lead-count .lc-unit { font-size: 0.85rem; font-weight: 600; color: #475569; margin-left: 4px; }
.mock-lead-srcs { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.lead-src-row { display: flex; align-items: center; gap: 8px; }
.lead-src-row .lsr-label { font-size: 0.7rem; color: #64748b; min-width: 42px; }
.lead-src-row .lsr-bar-bg { flex: 1; height: 8px; background: #e2e8f0; border-radius: 4px; overflow: hidden; }
.lead-src-row .lsr-bar { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #0d9488, #14b8a6); }
.lead-src-row .lsr-val { font-size: 0.7rem; font-weight: 700; color: #0f766e; min-width: 24px; text-align: right; }
.mock-ltv-header { font-size: 0.76rem; font-weight: 600; color: #64748b; text-align: center; }
.mock-ltv-svg { width: 100%; height: 90px; }
.mock-ltv-stats { display: flex; gap: 10px; width: 100%; }
.ltv-stat-card { flex: 1; background: rgba(255,255,255,0.9); border: 1px solid #e2e8f0; border-radius: 12px; padding: 10px; text-align: center; }
.ltv-stat-card .lsc-label { font-size: 0.65rem; color: #64748b; display: block; margin-bottom: 4px; }
.ltv-stat-card .lsc-value { font-size: 1.05rem; font-weight: 900; color: #ea580c; }
/* 샘플 데이터 배지 */
.sample-badge { display: inline-block; background: rgba(100, 116, 139, 0.15); color: #64748b; font-size: 0.6rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; letter-spacing: 0.05em; margin-left: 6px; }

@keyframes slideUpFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseGlow { from { transform: scale(0.8); opacity: 0.4; } to { transform: scale(1.2); opacity: 0.6; } }
@keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* 성공 사례 슬라이더 (수정: Swiper 커버플로우) */
.success-swiper { width: 100%; padding: 40px 0; overflow: hidden; }
.success-swiper .swiper-slide { width: 450px; opacity: 0.5; transition: opacity 0.3s; }
.success-swiper .swiper-slide-active { opacity: 1; }
.success-card { background: #fff; padding: 50px; border-radius: 32px; box-shadow: 0 15px 50px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(255,255,255,0.8); border: 1px solid rgba(0,0,0,0.03); text-align: center; height: 100%; display: flex; flex-direction: column; }
.success-card .badge { align-self: center; padding: 8px 16px; background: rgba(59,72,204,0.08); color: var(--color-primary); border-radius: 20px; font-size: 0.95rem; font-weight: 800; margin-bottom: 24px; }
.success-card h4 { font-size: 1.8rem; font-weight: 800; margin-bottom: 24px; color: var(--color-black); }
.success-card .stat { font-size: 1.2rem; font-weight: 700; color: var(--color-gray-900); margin-bottom: 20px; background: var(--color-gray-100); padding: 25px; border-radius: 20px; }
.success-card .stat span { font-size: 2.8rem; color: var(--color-primary); font-weight: 900; display: block; margin-top: 5px; line-height: 1; }
.success-card p { font-size: 1.1rem; line-height: 1.6; color: var(--color-gray-600); word-break: keep-all; margin: 0; }

/* 마퀴 배너 - 성능 최적화 (sticky 영역 종료 후 빠른 렌더링) */
.marquee-wrap {
    width: 100%; overflow: hidden; background: #fff; padding: 60px 0; margin: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05);
    
}
.marquee-track {
    display: flex; width: max-content; animation: scrollMarquee 28s linear infinite;
    align-items: center; will-change: transform; contain: layout paint;
}
.marquee-logo {
    flex: 0 0 160px;
    width: 160px; height: 40px;
    margin: 0 36px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    opacity: 0.7; transition: opacity 0.3s; filter: grayscale(100%);
}
.marquee-logo img {
    max-width: 100%; height: 100%; width: auto; object-fit: contain;
}
.marquee-logo svg {
    width: 100%; height: auto;
}
.marquee-logo:hover { opacity: 1; filter: grayscale(0%); }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* 다이애드는 다릅니다 & 미드톤 페이드 그라데이션 완충 지대 */
.mid-tone-fade-wrapper {
    background: linear-gradient(180deg, #EDF2FC 0%, rgba(237, 242, 252, 0) 100%);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 80px 0 120px 0;
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
}
.mid-tone-fade-wrapper .vision-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.vision-card { text-align: center; padding: 40px; background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.03), inset 0 0 0 1px rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.5); transition: transform 0.3s; }
.vision-card:hover { transform: translateY(-5px); }
.vision-card h4 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; color: var(--color-black); }
.vision-card p { font-size: 1.05rem; color: var(--color-gray-600); line-height: 1.6; word-break: keep-all; }

/* 벤토 박스 레이아웃 (기술 영역) */
.bento-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 300px 320px;
    column-gap: 28px; row-gap: 28px; margin-top: 0; 
}
.bento-item {
    background: var(--color-white); border-radius: 36px; padding: 36px;
    display: flex; flex-direction: column; justify-content: space-between;
    text-decoration: none; cursor: pointer; position: relative; overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04), inset 0 0 0 1px rgba(255,255,255,0.8); border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s; z-index: 1;
    contain: paint;
}
.bento-item.large { grid-column: span 2; flex-direction: row; align-items: center; gap: 48px; }
.bento-item.tall { grid-row: span 2; }

/* 벤토 아이템 호버 배경 그라데이션 */
.bento-item::before {
    content: ''; position: absolute; inset: 0; opacity: 0; z-index: 0; transition: opacity 0.4s ease; border-radius: inherit;
}
.bento-item:nth-child(1)::before { background: linear-gradient(135deg, #1a2a6c, #3b48cc); }
.bento-item:nth-child(2)::before { background: linear-gradient(135deg, #1e2fa8, #6a40d4); }
.bento-item:nth-child(3)::before { background: linear-gradient(135deg, #3b48cc, #2980b9); }
.bento-item:nth-child(4)::before { background: linear-gradient(135deg, #2980b9, #26d0ce); }

.bento-item:hover { transform: translateY(-12px) !important; box-shadow: 0 30px 60px rgba(59,72,204,0.25); border-color: transparent; }
.bento-item:hover::before { opacity: 1; }

.bento-icon {
    width: 64px; height: 64px; background: var(--color-gray-100); border-radius: 20px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--color-primary); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 10px 20px rgba(59,72,204,0.05); margin-bottom: 20px;
    position: relative; z-index: 1;
}

/* Cyber Glow & 3D Floating Animation */
.bento-item:hover .bento-icon {
    transform: translateY(-10px) scale(1.05) perspective(500px) rotateX(10deg);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(38,208,206,0.4), inset 0 0 20px rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.8);
}
.bento-item:hover .bento-icon svg {
    color: #fff;
    filter: drop-shadow(0 0 10px #26d0ce) drop-shadow(0 0 20px #26d0ce);
    animation: iconPulse 2s infinite ease-in-out;
}
.bento-item:hover .bento-icon::after {
    content: ''; position: absolute; inset: -5px; border-radius: inherit; z-index: -1;
    background: linear-gradient(135deg, #3b48cc, #26d0ce);
    filter: blur(15px); opacity: 0.6;
    animation: glowPulse 2s infinite alternate;
}
@keyframes iconPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }
@keyframes glowPulse { 0% { opacity: 0.4; transform: scale(0.95); } 100% { opacity: 0.8; transform: scale(1.1); } }

.bento-item.large .bento-icon { width: 100px; height: 100px; border-radius: 30px; margin-bottom: 0; }
.bento-icon svg { width: 32px; height: 32px; stroke-width: 1.5; transition: all 0.5s; position: relative; z-index: 2; }
.bento-item.large .bento-icon svg { width: 48px; height: 48px; }

.bento-content { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.bento-title { font-size: 1.6rem; font-weight: 800; color: var(--color-black); transition: color 0.4s; margin: 0; }
.bento-desc { font-size: 1.05rem; line-height: 1.5; color: var(--color-gray-600); transition: color 0.4s; word-break: keep-all; margin: 0; }

.bento-item:hover .bento-title, .bento-item:hover .bento-desc { color: #fff; }
.footer-spacer { height: 50px; background: var(--color-white); } 

@media (max-width: 1024px) {
    .vision-grid, .service-list, .board-wrap, .bento-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-rows: auto; }
    .bg-seamless .section-wrap .section-header { margin-bottom: 36px; }
    .bento-item.large { grid-column: span 1; flex-direction: column; align-items: flex-start; gap: 20px; }
    .bento-item.tall { grid-row: span 1; }
    .bento-item.large .bento-icon { width: 64px; height: 64px; border-radius: 20px; margin-bottom: 12px; }
    .bento-item.large .bento-icon svg { width: 32px; height: 32px; }
}

/* CTA 배너 및 버튼 스타일 */
.cta-banner { background: var(--color-black); color: var(--color-white); border-radius: 24px; padding: 60px; text-align: center; margin-bottom: 60px; }
.cta-banner h3 { font-size: 2.2rem; font-weight: 800; margin-bottom: 15px; color: var(--color-white); }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 30px; line-height: 1.6; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; }
.btn-cta { padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 1.1rem; cursor: pointer; border: none; transition: transform 0.2s; text-decoration: none; display: inline-block; }
.btn-cta.primary { background: var(--color-primary); color: var(--color-white); }
.btn-cta.secondary { background: var(--color-white); color: var(--color-black); }
.btn-cta:hover { transform: translateY(-3px); }

/* 서비스 카드 스타일 */
.service-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 0; }
.service-card { background: var(--color-white); padding: 40px; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.03), inset 0 0 0 1px rgba(255,255,255,0.8); border: 1px solid rgba(0,0,0,0.03); }
.service-card h5 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.service-card p { font-size: 1rem; color: var(--color-gray-600); line-height: 1.6; }
.service-card p span { display: block; margin-top: 10px; font-size: 0.9rem; color: var(--color-primary); font-weight: 600; }

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-900: #1a1a1a;
    --color-gray-600: #666666;
    --color-gray-200: #e5e5e5;
    --color-gray-100: #f4f5f9;
    --color-primary: #3b48cc;
}

/* 솔루션 요약 수치 */
.solution-stats-wrap {
    display: flex; justify-content: center; align-items: center; gap: 80px;
    margin-bottom: 50px; background: linear-gradient(135deg, #3b48cc 0%, #26d0ce 100%); color: #fff; padding: 40px; border-radius: 24px;
    box-shadow: 0 20px 40px rgba(38,208,206,0.2); border: none;
}
.solution-stat { text-align: center; position: relative; }
.solution-stat:not(:last-child)::after {
    content: ''; position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
    width: 1px; height: 50px; background: rgba(255,255,255,0.2);
}
.solution-stat-num { display: flex; align-items: baseline; justify-content: center; margin-bottom: 8px; }
.solution-stat-num h4 {
    font-size: 3.5rem; font-weight: 900; margin: 0; letter-spacing: -2px; line-height: 1;
    background: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    color: var(--color-primary);
}
.solution-stat-num span { font-size: 1.5rem; font-weight: 700; margin-left: 4px; color: rgba(255,255,255,0.9); }
.solution-stat-label { font-size: 1.05rem; font-weight: 600; color: rgba(255,255,255,0.8); }

@media (max-width: 768px) {
    .solution-stats-wrap { flex-direction: column; gap: 30px; padding: 30px; }
    .solution-stat:not(:last-child)::after { width: 50px; height: 1px; right: 50%; bottom: -15px; top: auto; transform: translateX(50%); }
}

/* Scroll Animation (Fade Up) */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* 숫자 카운트업 배경 (레이아웃 스타일) */
.stats-banner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; text-align: center; }
.stat-item h4 { font-size: 4rem; font-weight: 900; margin: 0; display: inline-block; }
.stat-item span { font-size: 2rem; font-weight: 700; color: #26d0ce; }
.stat-item p { font-size: 1.2rem; color: rgba(255,255,255,0.7); margin-top: 10px; font-weight: 600; }

/* 공지사항 & 팁 (텍스트 리스트) */
.board-wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; contain: layout; }
.board-box { min-width: 0; background: #ffffff; border-radius: 32px; padding: 40px 48px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.02); contain: content; }
.board-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid rgba(0,0,0,0.1); }
.board-header h4 { font-size: 1.5rem; font-weight: 900; margin: 0; color: #111; letter-spacing: -0.5px; line-height: 1; }
.board-header a { font-size: 0.85rem; font-weight: 700; color: #666; text-decoration: none; padding: 8px 16px; background: #fff; border-radius: 50px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 2px 8px rgba(0,0,0,0.02); }
.board-header a:hover { background: #111; color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.board-list { list-style: none; padding: 0; margin: 0; }
.board-list li { border-bottom: 1px solid rgba(0,0,0,0.04); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); margin: 0; border-radius: 16px; }
.board-list li:last-child { border-bottom: none; }
.board-list li:hover { background: #f8fafc; transform: translateX(8px); border-color: transparent; box-shadow: 0 10px 24px rgba(0,0,0,0.02); }
.board-list a { display: flex; align-items: center; gap: 16px; padding: 20px 24px; text-decoration: none; color: var(--color-black); }
.board-list .notice-badge { flex-shrink: 0; font-size: 0.75rem; font-weight: 800; color: var(--color-primary); background: rgba(59,72,204,0.06); border: none; padding: 5px 12px; border-radius: 8px; letter-spacing: 0.5px; white-space: nowrap; transition: all 0.3s ease; }
.board-list .notice-title { flex: 1; min-width: 0; font-size: 1.05rem; font-weight: 600; line-height: 1.5; color: #333; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; transition: color 0.3s; }
.board-list li:hover .notice-title { color: var(--color-primary); }
.board-list li:hover .notice-badge { background: var(--color-primary); color: #fff; box-shadow: 0 4px 12px rgba(59,72,204,0.3); }
.board-list .notice-date { flex-shrink: 0; font-size: 0.85rem; color: #9ca3af; font-weight: 400; transition: color 0.3s; }
.board-list li:hover .notice-date { color: #6b7280; }

/* Horizontal Scroll Section Styles */
.horizontal-mode .h-scroll-container { position: relative; height: 400vh; background: #0b1121; width: 100vw; margin-left: calc(-50vw + 50%); }
.horizontal-mode .h-sticky-wrap { position: sticky; top: 80px; height: calc(100vh - 80px); overflow: hidden; background: #0b1121; display: flex; align-items: center; }
.horizontal-mode .h-bg-grid { position: absolute; inset: -50%; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 50px 50px; transform: perspective(1000px) rotateX(60deg) translateY(-100px); animation: gridMove 20s linear infinite; pointer-events: none; z-index: 0; }
@keyframes gridMove { 0% { background-position: 0 0; } 100% { background-position: 0 50px; } }
.horizontal-mode .h-track { display: flex; height: 100%; width: 400vw; will-change: transform; z-index: 1; position: relative; }
.horizontal-mode .h-slide { width: 100vw; height: 100%; display: flex; align-items: center; justify-content: center; padding: 0 5%; flex-shrink: 0; }
.horizontal-mode .h-slide-inner { width: 100%; max-width: 1200px; display: flex; align-items: center; gap: 80px; }
.horizontal-mode .h-text { flex: 1; }
.horizontal-mode .h-text h3 { font-size: 2.8rem; font-weight: 900; color: #fff; margin-bottom: 20px; letter-spacing: -1px; }
.horizontal-mode .h-text .desc { font-size: 1.15rem; line-height: 1.7; color: #cbd5e1; margin-bottom: 30px; word-break: keep-all; }
.horizontal-mode .h-text .features { display: flex; gap: 10px; list-style: none; padding: 0; }
.horizontal-mode .h-text .features li { background: rgba(255,255,255,0.1); color: #fff; padding: 8px 18px; border-radius: 20px; font-size: 0.95rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(5px); }
.horizontal-mode .step-badge { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.horizontal-mode .step-badge .num { background: linear-gradient(135deg, #3b48cc, #26d0ce); color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; }
.horizontal-mode .step-badge .label { color: #26d0ce; font-weight: 800; letter-spacing: 1px; font-size: 1.1rem; }
.horizontal-mode .h-visual { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; perspective: 1000px; }
.horizontal-mode .p-img { position: relative; opacity: 1; visibility: visible; width: 100%; display: flex; justify-content: center; transform: none; transition: transform 0.5s ease; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5)); }
.horizontal-mode .h-slide.active .p-img { transform: none; }

/* 공통 대시보드 패널 스타일 */
.horizontal-mode .p-img::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(120px); opacity: 0.6; z-index: 0; pointer-events: none; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: opacity 0.5s ease; }
.horizontal-mode .p-img:not(.active)::before { opacity: 0.2; }
.dash-panel { background: rgba(15, 20, 35, 0.6); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.15); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); width: 90%; max-width: 520px; contain: layout paint; margin: 0 auto; position: relative; z-index: 1; }
.panel-header { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 12px; letter-spacing: 0.5px; }
.panel-body.flex-row { display: flex; align-items: center; gap: 20px; }

/* 비주얼 01: 고객 타겟팅 레이더 - 성능 최적화 */
.p-img-1 { background: transparent; }
.p-img-1::before { background: #4f46e5; }
.radar-wrap.mini { position: relative; width: 140px; height: 140px; flex-shrink: 0; contain: paint; }
.radar-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(99,102,241,0.3); will-change: auto; }
.radar-ring:nth-child(1) { transform: scale(0.3); }
.radar-ring:nth-child(2) { transform: scale(0.55); }
.radar-ring:nth-child(3) { transform: scale(0.78); }
.radar-ring:nth-child(4) { transform: scale(1); }
.radar-sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, rgba(99,102,241,0.5) 0deg, rgba(99,102,241,0) 90deg, transparent 90deg); animation: radarSweep 4s linear infinite; will-change: transform; contain: paint; }
.radar-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px #fff; will-change: opacity; }
.radar-dot:nth-child(5) { top: 20%; left: 60%; animation: blinkDot 1.5s ease-in-out infinite 0.2s; }
.radar-dot:nth-child(6) { top: 55%; left: 25%; animation: blinkDot 1.5s ease-in-out infinite 0.7s; }
.radar-dot:nth-child(7) { top: 70%; left: 70%; animation: blinkDot 1.5s ease-in-out infinite 1.1s; }
.radar-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 16px; height: 16px; border-radius: 50%; background: #6366f1; box-shadow: 0 0 0 4px rgba(99,102,241,0.3), 0 0 0 8px rgba(99,102,241,0.15); }
.target-stats { flex: 1; display: flex; flex-direction: column; gap: 14px; text-align: left; }
.t-stat span { font-size: 0.75rem; color: #cbd5e1; display: block; margin-bottom: 6px; font-weight: 600; }
.t-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.t-bar-fill { height: 100%; background: linear-gradient(90deg, #6366f1, #818cf8); border-radius: 4px; animation: abGrow 1.5s ease-out forwards; will-change: width; }
@keyframes radarSweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes blinkDot { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* 비주얼 02: A/B 테스트 - 성능 최적화 */
.p-img-2 { background: transparent; }
.p-img-2::before { background: #10b981; }
.ab-compare { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ab-vs-badge { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(8px); color: rgba(255, 255, 255, 0.8); font-weight: 800; font-size: 0.85rem; border-radius: 50%; z-index: 10; margin: 0 -16px; border: 1px solid rgba(255, 255, 255, 0.1); font-style: italic; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.win-icon { position: absolute; top: -10px; right: -10px; background: #059669; color: #ffffff; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(5, 150, 105, 0.5); border: 2px solid rgba(167, 243, 208, 0.5); }
.ab-side { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 16px; text-align: center; }
.ab-side.winner { background: rgba(52,211,153,0.1); border-color: #34d399; box-shadow: 0 0 20px rgba(52,211,153,0.2); position: relative; }
.ab-thumb { width: 48px; height: 48px; background: rgba(255,255,255,0.1); border-radius: 8px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 900; color: #fff; position: relative; }
.ab-side.winner .ab-thumb { background: #34d399; color: #022c22; }
.ab-metric { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 6px; color: rgba(255,255,255,0.6); }
.ab-metric strong { color: #fff; font-weight: 700; }
.ab-side.winner .ab-metric strong { color: #34d399; }
@keyframes abGrow { from { width: 0; } to { width: 100%; } }

/* 비주얼 03: 키워드 데이터 - 성능 최적화 */
.p-img-3 { background: transparent; }
.p-img-3::before { background: #a855f7; }
.kw-table { display: flex; flex-direction: column; gap: 8px; }
.kwt-row { display: grid; grid-template-columns: 2.5fr 3fr 1fr; align-items: center; gap: 12px; font-size: 0.8rem; padding: 10px 12px; background: rgba(255,255,255,0.05); border-radius: 8px; color: #e2e8f0; font-weight: 500; }
.kwt-row.head { background: transparent; color: rgba(255,255,255,0.4); font-weight: 700; padding-bottom: 4px; border-bottom: none; }
.kwt-row .vol { height: 6px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.kwt-row .vol-fill { height: 100%; background: linear-gradient(90deg, #a78bfa, #c4b5fd); border-radius: 4px; animation: abGrow 1.5s ease-out forwards; will-change: width; }

/* 비주얼 04: 리포트 대시보드 - 성능 최적화 */
.p-img-4 { background: transparent; }
.p-img-4::before { background: #0ea5e9; }
.report-wrap { background: rgba(15, 20, 35, 0.6); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.15); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); width: 90%; max-width: 520px; contain: layout paint; margin: 0 auto; position: relative; z-index: 1; }
.report-kpi { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.kpi-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 18px 16px; contain: paint; }
.kpi-item .kpi-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 8px; letter-spacing: 0.5px; }
.kpi-item .kpi-val { font-size: 1.6rem; font-weight: 900; color: #fff; line-height: 1; }
.kpi-item .kpi-val span { font-size: 1rem; color: #34d399; margin-left: 2px; }
.report-chart { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 16px; contain: paint; }
.chart-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 12px; font-weight: 600; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 60px; }
.c-bar { flex: 1; border-radius: 4px 4px 0 0; background: rgba(99,102,241,0.3); position: relative; will-change: background; }
.c-bar.lit { background: linear-gradient(to top, #6366f1, #818cf8); box-shadow: 0 0 12px rgba(99,102,241,0.4); }
.chart-line-wrap { position: relative; height: 1px; background: rgba(255,255,255,0.06); margin-top: 4px; }
.chart-line-wrap::after { content: ''; position: absolute; left: 0; top: 0; height: 1px; background: #6366f1; width: 80%; animation: lineGrow 2.5s ease-out forwards 0.5s; }
@keyframes lineGrow { from { width: 0; } to { width: 80%; } }


@media (max-width: 1024px) {
    .sticky-process-wrap { flex-direction: column; gap: 40px; }
    .process-text-col { flex: none; width: 100%; padding: 0; }
    .process-step { margin-bottom: 40px; opacity: 1; transform: none; }
    .process-image-col { display: none; }
}

/* ── What We Do : 광고 대행 영역 ── */
.wwd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.wwd-col { background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); border-radius: 36px; border: 1px solid rgba(226, 232, 240, 0.8); padding: 48px 40px; box-shadow: 0 20px 50px rgba(15, 23, 42, 0.03), inset 0 2px 4px rgba(255,255,255,1); display: flex; flex-direction: column; gap: 32px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; }
.wwd-col::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(90deg, #3b48cc, #26d0ce); opacity: 0; transition: opacity 0.4s; }
.wwd-col:hover::before { opacity: 1; }
.wwd-col:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(59,72,204,0.08); border-color: transparent; }
.wwd-col-head { padding-bottom: 28px; position: relative; border-bottom: none; }
.wwd-col-head::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: linear-gradient(90deg, var(--color-primary), #26d0ce); border-radius: 2px; transition: width 0.3s ease; }
.wwd-col:hover .wwd-col-head::after { width: 100%; }
.wwd-col-eyebrow { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; color: #3b48cc; text-transform: uppercase; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, #eef2ff, #e0e7ff); padding: 6px 14px; border-radius: 8px; box-shadow: inset 0 1px 2px rgba(255,255,255,1); border: 1px solid rgba(255,255,255,0.5); }
.wwd-col-title { font-size: 1.55rem; font-weight: 900; color: #0f172a; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 12px; }
.wwd-col-desc { font-size: 0.95rem; color: #64748b; line-height: 1.6; word-break: keep-all; }
.wwd-platforms { display: flex; flex-direction: column; gap: 12px; }
.wwd-platform { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: 20px; background: #ffffff; border: 1px solid #f1f5f9; box-shadow: 0 4px 15px rgba(0,0,0,0.015); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); cursor: default; }
.wwd-platform:hover { background: #ffffff; border-color: rgba(59,72,204,0.15); box-shadow: 0 15px 30px rgba(59,72,204,0.08); transform: scale(1.02); }
.wwd-plat-badge { width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(135deg, #ffffff, #f8fafc); box-shadow: 0 6px 16px rgba(59,72,204,0.06), inset 0 1px 1px #fff; border: 1px solid #e2e8f0; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 900; color: #334155; flex-shrink: 0; transition: all 0.3s; }
.wwd-platform:hover .wwd-plat-badge { background: var(--color-primary); color: #fff; }
.wwd-platform-info { flex: 1; }
.wwd-platform-name { font-size: 0.95rem; font-weight: 800; color: #1e293b; display: block; margin-bottom: 6px; }
.wwd-ptags { display: flex; gap: 6px; flex-wrap: wrap; }
.wwd-ptag { font-size: 0.65rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; background: rgba(59,72,204,0.08); color: var(--color-primary); }
.wwd-ptag.teal { background: rgba(13,148,136,0.1); color: #0d9488; }
.wwd-ptag.orange { background: rgba(249,115,22,0.1); color: #ea580c; }
.wwd-ptag.violet { background: rgba(139,92,246,0.1); color: #7c3aed; }
.diff-badge { display: inline-flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; color: var(--color-primary); background: rgba(59,72,204,0.08); padding: 6px 14px; border-radius: 20px; margin-bottom: 12px; } .diff-badge.dark { color: #fff; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); }

/* ── 1. 검색 패널 입장 애니메이션 (바운스업) ── */
@keyframes searchWrapperBounceIn {
    0%   { opacity: 0; transform: translateY(80px); }
    55%  { opacity: 1; transform: translateY(-12px); }
    75%  { transform: translateY(6px); }
    88%  { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

/* ── 2. 검색창 주목 유도 pulse (attention glow) ── */
@keyframes searchPulseAttention {
    0%   { border-color: rgba(59,72,204,0.35);  box-shadow: 0 20px 50px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.8); }
    20%  { border-color: rgba(38,208,206,1);     box-shadow: 0 20px 50px rgba(0,0,0,0.2), 0 0 0 6px rgba(38,208,206,0.15), 0 0 40px rgba(38,208,206,0.55), inset 0 0 0 1px rgba(255,255,255,0.8); }
    55%  { border-color: rgba(59,72,204,0.7);    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 0 3px rgba(59,72,204,0.1), 0 0 20px rgba(59,72,204,0.3), inset 0 0 0 1px rgba(255,255,255,0.8); }
    80%  { border-color: rgba(38,208,206,0.75);  box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 0 4px rgba(38,208,206,0.08), 0 0 26px rgba(38,208,206,0.3), inset 0 0 0 1px rgba(255,255,255,0.8); }
    100% { border-color: rgba(59,72,204,0.35);   box-shadow: 0 20px 50px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.8); }
}
.glass-panel.is-attention { animation: searchPulseAttention 1.5s ease-in-out forwards !important; }

/* ── 3. 트렌딩 키워드 가로 마퀴 ── */
.keyword-marquee-outer {
    overflow: hidden; width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.keyword-marquee-track {
    display: flex; gap: 10px; width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.keyword-marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── 주요 광고 매체 ── */
.agency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
        .agency-item {
            text-decoration: none; cursor: pointer;
            background: #ffffff; border-radius: 24px; border: 1px solid rgba(0,0,0,0.05);
            padding: 36px 24px 28px; display: flex; flex-direction: column;
            align-items: center; justify-content: center; gap: 14px; min-height: 150px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s;
            will-change: transform;
        }
        .agency-item:hover { box-shadow: 0 20px 40px rgba(59,130,246,0.1); transform: translateY(-6px); border-color: rgba(59,130,246,0.1); }

        .agency-logo-wrap { width: 160px; height: 80px; display: flex; align-items: center; justify-content: center; transition: transform 0.35s ease; }
        .agency-item:hover .agency-logo-wrap { transform: scale(1.05); }
        .agency-logo-wrap img { height: 32px; max-width: 160px; width: auto; object-fit: contain; }
        .agency-logo-text { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.5px; line-height: 1; display: flex; align-items: center; gap: 6px; }
        .gfa-badge { font-size: 1.8rem; font-weight: 900; background: none; color: #000; padding: 0; border-radius: 0; letter-spacing: -0.5px; line-height: 1; margin-left: 8px; flex-shrink: 0; }
        .brand-naver .agency-logo-wrap img { height: 26px; }

        .agency-partner-badge {
            display: inline-flex; align-items: center; gap: 5px;
            font-size: 0.7rem; font-weight: 700; color: #1e40af;
            background: rgba(59,130,246,0.07); border: 1px solid rgba(59,130,246,0.25);
            padding: 5px 12px; border-radius: 20px; letter-spacing: 0.02em;
        }
        .agency-partner-badge::before {
            content: '';
            width: 11px; height: 11px; flex-shrink: 0;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e40af' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center / contain no-repeat;
        }
        .agency-label { font-size: 0.8rem; font-weight: 600; color: #64748b; letter-spacing: 0.01em; text-align: center; }
        @media (max-width: 768px) { .agency-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }