/* ========================================
   KDDF 소프트 다크 테마 스타일시트
   - 너무 어둡지 않은 부드러운 다크 테마
   ======================================== */

/* ----------------------------------------
   CSS 변수 정의
   ---------------------------------------- */
:root {
    /* 소프트 다크 배경 색상 - 더 밝고 부드러운 톤 */
    --bg-primary: #1a1d2e;
    --bg-secondary: #232738;
    --bg-tertiary: #2a2f45;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.08);

    /* 글래스모피즘 - 더 밝은 효과 */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);

    /* 그라데이션 - 더 부드러운 색상 */
    --gradient-primary: linear-gradient(135deg, #00B4E6 0%, #6366F1 100%);
    --gradient-secondary: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-glow: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);

    /* 텍스트 색상 - 부드러운 흰색 톤 */
    --text-primary: #f0f0f5;
    --text-secondary: rgba(240, 240, 245, 0.75);
    --text-tertiary: rgba(240, 240, 245, 0.55);
    --text-muted: rgba(240, 240, 245, 0.35);

    /* 강조 색상 - 더 부드러운 파스텔 톤 */
    --accent-cyan: #38BDF8;
    --accent-purple: #818CF8;
    --accent-pink: #F472B6;
    --accent-orange: #FB923C;
    --accent-green: #34D399;

    /* 타이포그래피 */
    --font-primary: 'Outfit', 'Noto Sans KR', sans-serif;
    --font-korean: 'Noto Sans KR', sans-serif;

    /* 간격 */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* 반경 */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* 트랜지션 */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-normal: 0.4s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);

    /* Hover 디테일 */
    --hover-enter-delay: 0.08s;
}

/* ----------------------------------------
   리셋 및 기본 스타일
   ---------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ----------------------------------------
   유틸리티
   ---------------------------------------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 글래스 카드 - 더 밝은 효과 */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s var(--ease-out-expo),
                background 0.4s var(--ease-smooth),
                border-color 0.4s var(--ease-smooth),
                box-shadow 0.5s var(--ease-out-expo);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 0 40px rgba(99, 102, 241, 0.08);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
    pointer-events: none;
}

.glass-card:hover .card-glow {
    opacity: 1;
}

.card-glow.cyan { background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 50%); }
.card-glow.purple { background: radial-gradient(circle, rgba(129, 140, 248, 0.1) 0%, transparent 50%); }
.card-glow.orange { background: radial-gradient(circle, rgba(251, 146, 60, 0.1) 0%, transparent 50%); }
.card-glow.pink { background: radial-gradient(circle, rgba(244, 114, 182, 0.1) 0%, transparent 50%); }
.card-glow.green { background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 50%); }

/* ----------------------------------------
   커서 글로우 효과
   ---------------------------------------- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ----------------------------------------
   버튼 스타일
   ---------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-out-back);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-glow {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ----------------------------------------
   네비게이션
   ---------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(26, 29, 46, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled {
    padding: var(--space-md) 0;
    background: rgba(26, 29, 46, 0.95);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-menu li a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.25s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s var(--ease-out);
}

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

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

.btn-nav {
    padding: 10px 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: white !important;
    font-weight: 600;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* ----------------------------------------
   히어로 섹션
   ---------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.12) 0%, rgba(56, 189, 248, 0.06) 40%, transparent 70%);
    filter: blur(60px);
    animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.12) 1px, transparent 0);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-purple);
    margin-bottom: var(--space-xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.hero-stat-number .stat-plus {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    -webkit-text-fill-color: var(--accent-cyan);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-cyan), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ----------------------------------------
   섹션 공통
   ---------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent-purple);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ----------------------------------------
   벤토 그리드 섹션
   ---------------------------------------- */
.bento-showcase {
    padding: var(--space-5xl) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.bento-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* 마우스 추적 스포트라이트 효과 */
.bento-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(56, 189, 248, 0.08) 0%,
        rgba(99, 102, 241, 0.04) 25%,
        transparent 50%
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-showcase:hover .bento-spotlight {
    opacity: 1;
}

/* 카드별 글로우 효과 */
.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        350px circle at var(--card-x, 50%) var(--card-y, 50%),
        rgba(56, 189, 248, 0.12) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: inherit;
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 160px);
    gap: 16px;
    position: relative;
}

.bento-item {
    border-radius: 24px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}

.bento-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* 벤토 아이템 크기 변형 */
.bento-hero-card {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-stat-card {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-service-card {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-wide-card {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-gradient-card {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(180deg, var(--bg-tertiary), rgba(99, 102, 241, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.25);
}

/* 벤토 글로우 효과 */
.bento-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* 벤토 태그 */
.bento-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    margin-bottom: var(--space-md);
}

/* 벤토 콘텐츠 */
.bento-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.bento-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 380px;
}

/* 벤토 버튼 */
.bento-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 20px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.35s var(--ease-out);
    width: fit-content;
}

.bento-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out-back);
}

.bento-btn:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
}

.bento-btn:hover svg {
    transform: translateX(4px);
}

/* 벤토 비주얼 */
.bento-visual {
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.bento-visual-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    animation: pulse-visual 4s ease-in-out infinite;
}

@keyframes pulse-visual {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* 벤토 아이콘 */
.bento-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: var(--space-md);
    transition: transform 0.4s var(--ease-out-back);
}

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

.bento-icon svg {
    width: 22px;
    height: 22px;
}

.bento-icon.cyan {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0.08));
}
.bento-icon.cyan svg { stroke: var(--accent-cyan); }

.bento-icon.purple {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.2), rgba(129, 140, 248, 0.08));
}
.bento-icon.purple svg { stroke: var(--accent-purple); }

.bento-icon.green {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(52, 211, 153, 0.08));
}
.bento-icon.green svg { stroke: var(--accent-green); }

.bento-icon.orange {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(251, 146, 60, 0.08));
}
.bento-icon.orange svg { stroke: var(--accent-orange); }

.bento-icon.white {
    background: rgba(255, 255, 255, 0.12);
}
.bento-icon.white svg { stroke: var(--text-primary); }

/* 벤토 통계 카드 */
.bento-stat-content {
    margin-top: auto;
}

.bento-stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.bento-stat-value .stat-unit {
    font-size: 1.25rem;
    font-weight: 600;
}

.bento-stat-value .stat-plus {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-cyan);
    -webkit-text-fill-color: var(--accent-cyan);
}

.bento-stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* 벤토 서비스 카드 */
.bento-service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-xs);
}

.bento-service-content p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 벤토 서비스 태그 */
.bento-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: var(--space-sm);
}

.bento-service-tags.gradient-tags {
    margin-top: var(--space-sm);
}

.service-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    background: rgba(56, 189, 248, 0.12);
    color: var(--accent-cyan);
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-out-expo);
}

.service-tag:hover {
    background: rgba(56, 189, 248, 0.2);
    transform: translateY(-1px);
}

.service-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.25);
}

.service-tag.light:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* 벤토 와이드 카드 */
.bento-wide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-lg);
}

.bento-wide-content {
    flex: 1;
}

.bento-wide-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.bento-wide-content p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.bento-wide-visual {
    flex-shrink: 0;
}

.bento-wide-visual svg {
    width: 80px;
    height: 80px;
    stroke: rgba(99, 102, 241, 0.15);
    opacity: 0.8;
}

.bento-wide-badges {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.wide-badge {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(99, 102, 241, 0.12));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--accent-cyan);
    transition: all 0.3s var(--ease-out);
}

.wide-badge:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(99, 102, 241, 0.2));
    border-color: rgba(99, 102, 241, 0.4);
}

.wide-badge.small {
    width: auto;
    height: 32px;
    padding: 0 12px;
    font-size: 0.75rem;
}

/* 벤토 그라데이션 카드 */
.bento-gradient-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-xs);
}

.bento-gradient-content p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.bento-gradient-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-purple);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-top: auto;
}

/* 벤토 그리드 반응형 */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-hero-card,
    .bento-wide-card {
        grid-column: span 2;
    }

    .bento-service-card,
    .bento-gradient-card {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 260px;
    }

    .bento-stat-card {
        grid-column: span 1;
        min-height: 180px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-hero-card,
    .bento-wide-card,
    .bento-service-card,
    .bento-gradient-card,
    .bento-stat-card {
        grid-column: span 1;
        grid-row: span 1;
        min-height: auto;
    }

    .bento-item {
        padding: 28px;
    }

    .bento-content h2 {
        font-size: 1.75rem;
    }

    .bento-wide-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .bento-wide-visual svg {
        display: none;
    }
}

/* ----------------------------------------
   미션 섹션
   ---------------------------------------- */
.mission {
    padding: var(--space-5xl) 0;
    background: var(--bg-secondary);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.mission-card {
    padding: var(--space-xl);
    text-align: center;
}

.mission-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-lg);
    transition: transform 0.4s var(--ease-out-back);
}

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

.mission-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-cyan);
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.mission-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* ----------------------------------------
   통계 섹션
   ---------------------------------------- */
.stats {
    padding: var(--space-5xl) 0;
    position: relative;
    background: var(--bg-primary);
}

.stats-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.stats-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    position: relative;
}

.stat-card {
    padding: var(--space-xl);
    text-align: center;
}

.stat-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md);
}

.stat-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 8;
}

.ring-fill {
    fill: none;
    stroke: url(#ringGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: calc(var(--progress) * 2.83) 283;
    transition: stroke-dasharray 1.5s var(--ease-out);
}

.stat-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-unit {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* 차트 섹션 */
.chart-section {
    position: relative;
}

.chart-card {
    padding: var(--space-2xl);
}

.chart-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.chart-bar {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    align-items: center;
    gap: var(--space-md);
}

.bar-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: right;
}

.bar-track {
    height: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%);
    transform: translateX(-100%);
    animation: none;
}

.bar-fill.animated {
    width: var(--width);
}

.bar-fill.animated::after {
    animation: bar-shimmer 1.5s ease-out 0.5s;
}

@keyframes bar-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 각 막대별 다른 그라데이션 색상 */
.chart-bar:nth-child(1) .bar-fill {
    background: linear-gradient(90deg, #38BDF8 0%, #0EA5E9 100%);
}

.chart-bar:nth-child(2) .bar-fill {
    background: linear-gradient(90deg, #818CF8 0%, #6366F1 100%);
}

.chart-bar:nth-child(3) .bar-fill {
    background: linear-gradient(90deg, #34D399 0%, #10B981 100%);
}

.chart-bar:nth-child(4) .bar-fill {
    background: linear-gradient(90deg, #F472B6 0%, #EC4899 100%);
}

.chart-bar:nth-child(5) .bar-fill {
    background: linear-gradient(90deg, #FBBF24 0%, #F59E0B 100%);
}

.bar-value {
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* 각 막대별 다른 값 색상 */
.chart-bar:nth-child(1) .bar-value { color: #38BDF8; }
.chart-bar:nth-child(2) .bar-value { color: #818CF8; }
.chart-bar:nth-child(3) .bar-value { color: #34D399; }
.chart-bar:nth-child(4) .bar-value { color: #F472B6; }
.chart-bar:nth-child(5) .bar-value { color: #FBBF24; }

/* ----------------------------------------
   사업 소개 섹션
   ---------------------------------------- */
.business {
    padding: var(--space-5xl) 0;
    background: var(--bg-secondary);
}

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

.business-card {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.business-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* 순차적 등장 딜레이 */
.business-card:nth-child(1) { transition-delay: 0.1s; }
.business-card:nth-child(2) { transition-delay: 0.3s; }
.business-card:nth-child(3) { transition-delay: 0.5s; }

.business-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.business-header {
    margin-bottom: var(--space-lg);
}

.business-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(56, 189, 248, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: var(--space-sm);
}

.business-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.business-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.business-features,
.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.business-features li,
.feature-list li {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.business-features li strong,
.feature-list li strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.business-features li span,
.feature-list li span {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.covid-stats-mini {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xl);
}

.covid-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.covid-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.covid-mini span:last-child {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.gate-grid {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.gate-item {
    flex: 1;
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    min-width: 0;
}

.gate-item:hover {
    background: rgba(99, 102, 241, 0.1);
}

.gate-letter {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.gate-item span:last-child {
    display: block;
    font-size: 0.625rem;
    color: var(--text-tertiary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.business-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: auto;
}

.business-actions .btn {
    flex: 1;
    text-align: center;
}

/* ----------------------------------------
   파이프라인 섹션
   ---------------------------------------- */
.pipeline {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

.pipeline-visual {
    margin-bottom: var(--space-3xl);
}

.pipeline-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    padding: var(--space-2xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.flow-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.stage-circle {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

/* 각 단계별 그라데이션 색상 */
.flow-stage:nth-child(1) .stage-circle {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(56, 189, 248, 0.05) 100%);
    border: 2px solid rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.flow-stage:nth-child(3) .stage-circle {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.15) 0%, rgba(129, 140, 248, 0.05) 100%);
    border: 2px solid rgba(129, 140, 248, 0.4);
    box-shadow: 0 0 20px rgba(129, 140, 248, 0.15);
}

.flow-stage:nth-child(5) .stage-circle {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15) 0%, rgba(52, 211, 153, 0.05) 100%);
    border: 2px solid rgba(52, 211, 153, 0.4);
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.15);
}

.flow-stage:nth-child(7) .stage-circle {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.15) 0%, rgba(251, 146, 60, 0.05) 100%);
    border: 2px solid rgba(251, 146, 60, 0.4);
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.15);
}

.flow-stage:nth-child(9) .stage-circle {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.2) 0%, rgba(244, 114, 182, 0.1) 100%);
    border: 2px solid rgba(244, 114, 182, 0.5);
    box-shadow: 0 0 25px rgba(244, 114, 182, 0.25);
}

.stage-circle:hover {
    transform: scale(1.15);
}

.flow-stage:nth-child(1) .stage-circle:hover {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.25) 0%, rgba(56, 189, 248, 0.1) 100%);
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.35);
}

.flow-stage:nth-child(3) .stage-circle:hover {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.25) 0%, rgba(129, 140, 248, 0.1) 100%);
    box-shadow: 0 0 35px rgba(129, 140, 248, 0.35);
}

.flow-stage:nth-child(5) .stage-circle:hover {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.25) 0%, rgba(52, 211, 153, 0.1) 100%);
    box-shadow: 0 0 35px rgba(52, 211, 153, 0.35);
}

.flow-stage:nth-child(7) .stage-circle:hover {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.25) 0%, rgba(251, 146, 60, 0.1) 100%);
    box-shadow: 0 0 35px rgba(251, 146, 60, 0.35);
}

.flow-stage:nth-child(9) .stage-circle:hover {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.35) 0%, rgba(244, 114, 182, 0.15) 100%);
    box-shadow: 0 0 40px rgba(244, 114, 182, 0.45);
}

.stage-circle.large {
    width: 105px;
    height: 105px;
}

.stage-circle.small {
    width: 80px;
    height: 80px;
}

.stage-circle.smallest {
    width: 70px;
    height: 70px;
}

.stage-circle.active {
    background: linear-gradient(135deg, #F472B6 0%, #EC4899 100%) !important;
    border: none !important;
    box-shadow: 0 0 30px rgba(244, 114, 182, 0.5), 0 0 60px rgba(236, 72, 153, 0.25) !important;
    animation: pulse-glow-stage 2s ease-in-out infinite;
}

@keyframes pulse-glow-stage {
    0%, 100% { box-shadow: 0 0 30px rgba(244, 114, 182, 0.5), 0 0 60px rgba(236, 72, 153, 0.25); }
    50% { box-shadow: 0 0 40px rgba(244, 114, 182, 0.7), 0 0 80px rgba(236, 72, 153, 0.35); }
}

.stage-num {
    font-size: 1.25rem;
    font-weight: 700;
}

/* 각 단계별 숫자 색상 */
.flow-stage:nth-child(1) .stage-num { color: #38BDF8; }
.flow-stage:nth-child(3) .stage-num { color: #818CF8; }
.flow-stage:nth-child(5) .stage-num { color: #34D399; }
.flow-stage:nth-child(7) .stage-num { color: #FB923C; }
.flow-stage:nth-child(9) .stage-num { color: #F472B6; }

.stage-circle.active .stage-num {
    color: white;
}

.stage-name {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.flow-connector {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.4), rgba(129, 140, 248, 0.4), rgba(52, 211, 153, 0.4));
    border-radius: 2px;
}

.pipeline-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

/* 도넛 차트 */
.disease-distribution {
    padding: var(--space-3xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: visible;
}

.disease-distribution h4 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-2xl);
}

.donut-chart-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4xl);
    flex-wrap: wrap;
    overflow: visible;
    padding: 20px;
}

.donut-chart {
    position: relative;
    width: 320px;
    height: 320px;
    padding: 20px;
    margin: -20px;
}

.donut-chart svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}

.donut-segment {
    transition: all 0.35s var(--ease-out);
    cursor: pointer;
    transform-origin: center;
}

.donut-segment:hover,
.donut-segment.active {
    stroke-width: 36;
}

/* 각 세그먼트별 호버 색상 - 더 밝은 글로우 */
.donut-segment[data-category="oncology"]:hover,
.donut-segment[data-category="oncology"].active {
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 30px rgba(0, 136, 255, 0.5));
}

.donut-segment[data-category="immune"]:hover,
.donut-segment[data-category="immune"].active {
    filter: drop-shadow(0 0 15px rgba(139, 123, 255, 0.8)) drop-shadow(0 0 30px rgba(107, 91, 255, 0.5));
}

.donut-segment[data-category="metabolic"]:hover,
.donut-segment[data-category="metabolic"].active {
    filter: drop-shadow(0 0 15px rgba(0, 229, 189, 0.8)) drop-shadow(0 0 30px rgba(0, 201, 167, 0.5));
}

.donut-segment[data-category="neuro"]:hover,
.donut-segment[data-category="neuro"].active {
    filter: drop-shadow(0 0 15px rgba(255, 139, 181, 0.8)) drop-shadow(0 0 30px rgba(255, 107, 157, 0.5));
}

.donut-segment[data-category="others"]:hover,
.donut-segment[data-category="others"].active {
    filter: drop-shadow(0 0 15px rgba(255, 204, 112, 0.8)) drop-shadow(0 0 30px rgba(255, 179, 71, 0.5));
}

.donut-center {
    position: absolute;
    inset: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.35s var(--ease-out);
    border-radius: 50%;
    pointer-events: none;
}

.donut-total {
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    transition: all 0.25s var(--ease-out);
}

.donut-chart:hover .donut-total {
    transform: scale(1.08);
}

.donut-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 6px;
    transition: all 0.25s var(--ease-out);
    font-weight: 500;
}

/* 호버 시 중앙에 정보 표시 */
.donut-info {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.donut-info-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.donut-info-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.donut-info-percent {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

.legend-item:hover,
.legend-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(10px) scale(1.02);
}

/* 각 레전드 항목별 호버 색상 */
.legend-item[data-category="oncology"]:hover,
.legend-item[data-category="oncology"].active {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.2);
}

.legend-item[data-category="immune"]:hover,
.legend-item[data-category="immune"].active {
    background: rgba(139, 123, 255, 0.12);
    border-color: rgba(139, 123, 255, 0.3);
    box-shadow: 0 4px 15px rgba(107, 91, 255, 0.2);
}

.legend-item[data-category="metabolic"]:hover,
.legend-item[data-category="metabolic"].active {
    background: rgba(0, 229, 189, 0.12);
    border-color: rgba(0, 229, 189, 0.3);
    box-shadow: 0 4px 15px rgba(0, 201, 167, 0.2);
}

.legend-item[data-category="neuro"]:hover,
.legend-item[data-category="neuro"].active {
    background: rgba(255, 139, 181, 0.12);
    border-color: rgba(255, 139, 181, 0.3);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
}

.legend-item[data-category="others"]:hover,
.legend-item[data-category="others"].active {
    background: rgba(255, 204, 112, 0.12);
    border-color: rgba(255, 204, 112, 0.3);
    box-shadow: 0 4px 15px rgba(255, 179, 71, 0.2);
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out);
}

.legend-item:hover .legend-color {
    transform: scale(1.3);
}

.legend-name {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 500;
}

.legend-value {
    font-size: 1rem;
    font-weight: 700;
    min-width: 40px;
    text-align: right;
}

.legend-percent {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    min-width: 50px;
    text-align: right;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
}

.legend-item:hover .legend-percent {
    background: rgba(255, 255, 255, 0.08);
}

.donut-btn {
    display: flex;
    margin: var(--space-2xl) auto 0;
}

/* ----------------------------------------
   서비스 섹션
   ---------------------------------------- */
.services {
    padding: var(--space-5xl) 0;
    background: var(--bg-secondary);
}

.services-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.service-accordion-item {
    overflow: hidden;
}

.service-accordion-item.active {
    border-color: rgba(255, 255, 255, 0.12);
}

.service-accordion-item[data-color="cyan"].active {
    border-color: rgba(56, 189, 248, 0.3);
}

.service-accordion-item[data-color="green"].active {
    border-color: rgba(52, 211, 153, 0.3);
}

.service-accordion-item[data-color="purple"].active {
    border-color: rgba(129, 140, 248, 0.3);
}

.service-accordion-item[data-color="pink"].active {
    border-color: rgba(244, 114, 182, 0.3);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    cursor: pointer;
    transition: background 0.25s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    background: linear-gradient(135deg, #38BDF8 0%, #818CF8 100%);
    transition: transform 0.4s var(--ease-out-back);
}

.service-accordion-item:hover .accordion-icon {
    transform: scale(1.08);
}

.accordion-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

[data-color="cyan"] .accordion-icon { background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%); }
[data-color="green"] .accordion-icon { background: linear-gradient(135deg, #10b981 0%, #34d399 100%); }
[data-color="purple"] .accordion-icon { background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%); }
[data-color="pink"] .accordion-icon { background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%); }

.accordion-title {
    flex: 1;
}

.accordion-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.accordion-count {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.accordion-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    transition: all 0.35s var(--ease-out-back);
}

.accordion-arrow svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-secondary);
    transition: stroke 0.25s ease;
}

.service-accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    background: rgba(56, 189, 248, 0.12);
}

.service-accordion-item.active .accordion-arrow svg {
    stroke: var(--accent-cyan);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo),
                padding 0.35s var(--ease-smooth);
}

.service-accordion-item.active .accordion-content {
    max-height: 600px;
    padding: 0 var(--space-xl) var(--space-xl);
}

.accordion-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.program-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-sm);
    overflow-x: auto;
    padding-bottom: var(--space-sm);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.program-tags::-webkit-scrollbar {
    height: 4px;
}

.program-tags::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
}

.program-tag {
    display: flex;
    flex-direction: column;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    text-decoration: none;
    min-width: 130px;
    flex-shrink: 0;
    transition: all 0.35s var(--ease-out);
    position: relative;
}

.program-tag:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

[data-color="cyan"] .program-tag:hover { border-color: rgba(56, 189, 248, 0.3); }
[data-color="green"] .program-tag:hover { border-color: rgba(52, 211, 153, 0.3); }
[data-color="purple"] .program-tag:hover { border-color: rgba(129, 140, 248, 0.3); }
[data-color="pink"] .program-tag:hover { border-color: rgba(244, 114, 182, 0.3); }

.tag-icon {
    font-size: 1.125rem;
    margin-bottom: 2px;
}

.tag-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.tag-sub {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 2px;
}

/* 서비스 링크 배너 */
.service-links-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    padding: var(--space-lg);
}

.service-link-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.35s var(--ease-out);
}

.service-link-item:hover {
    background: rgba(56, 189, 248, 0.08);
    border-color: rgba(56, 189, 248, 0.2);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

.service-link-item .link-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    color: var(--accent-cyan);
    transition: all 0.35s var(--ease-out);
}

.service-link-item:hover .link-icon {
    background: rgba(56, 189, 248, 0.15);
}

.service-link-item .link-icon svg {
    width: 18px;
    height: 18px;
}

.service-link-item .link-text {
    flex: 1;
}

.service-link-item .link-arrow-icon {
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.35s var(--ease-out);
}

.service-link-item:hover .link-arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* ----------------------------------------
   뉴스 섹션
   ---------------------------------------- */
.news {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

.news-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xl);
    align-items: stretch;
}

.news-main {
    display: flex;
    flex-direction: column;
}

.news-main .news-list {
    flex: 1;
}

.news-main,
.news-card {
    padding: var(--space-xl);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.news-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.link-arrow {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-tertiary);
    transition: color 0.25s ease;
}

.link-arrow:hover {
    color: var(--accent-cyan);
}

.link-arrow svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.news-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    transition: all 0.25s ease;
}

.news-list li a:hover {
    padding-left: var(--space-sm);
}

.news-list li a:hover .news-title {
    color: var(--accent-cyan);
}

.news-title {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.news-date {
    font-size: 0.8125rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.news-list.compact li a {
    padding: var(--space-sm) 0;
}

.news-list.compact .news-title {
    font-size: 0.875rem;
}

.news-side {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    height: 100%;
}

.news-side .news-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-side .news-card .news-list {
    flex: 1;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.35s var(--ease-out);
}

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

.quick-icon {
    font-size: 1.5rem;
}

.quick-link span:last-child {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ----------------------------------------
   연혁 섹션
   ---------------------------------------- */
.history {
    padding: var(--space-5xl) 0;
    background: var(--bg-secondary);
}

.history-layout {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.history-years {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.year-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}

.year-pill:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.2);
    color: var(--accent-cyan);
}

.year-pill span:last-child {
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s var(--ease-out);
}

.year-pill:hover span:last-child {
    opacity: 1;
    transform: translateX(0);
}

.history-years-hint {
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    text-align: center;
    line-height: 1.4;
}

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

.history-card {
    padding: var(--space-xl);
}

.history-card.featured {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.06) 0%, rgba(99, 102, 241, 0.04) 100%);
    border-color: rgba(56, 189, 248, 0.2);
}

.history-card-top {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.history-card-year {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.history-card-badge {
    padding: 4px 10px;
    background: rgba(99, 102, 241, 0.12);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.history-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.history-card-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.history-card-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.history-card-list li {
    position: relative;
    padding-left: var(--space-md);
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.history-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
}

.history-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

.history-cta .btn {
    gap: var(--space-sm);
}

/* ----------------------------------------
   CTA 섹션
   ---------------------------------------- */
.cta-new {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.04) 0%, rgba(99, 102, 241, 0.04) 100%);
    border-color: rgba(56, 189, 248, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-left {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.cta-left h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

.cta-left > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 420px;
}

.cta-new .cta-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-new .cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.cta-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.cta-contact-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.35s var(--ease-out);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(56, 189, 248, 0.15);
    transform: translateX(6px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(99, 102, 241, 0.08));
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: var(--accent-cyan);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info a,
.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--accent-cyan);
}

/* ----------------------------------------
   푸터
   ---------------------------------------- */
.footer {
    background: var(--bg-tertiary);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: var(--space-md);
}

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

.footer-tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-contact-info p {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.footer-contact-info a {
    color: var(--text-tertiary);
    transition: color 0.2s ease;
}

.footer-contact-info a:hover {
    color: var(--accent-cyan);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-col li a {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    transition: color 0.2s ease;
}

.footer-col li a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ----------------------------------------
   애니메이션
   ---------------------------------------- */
[data-aos] {
    opacity: 0;
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

[data-aos="fade-up"] { transform: translateY(25px); }
[data-aos="fade-down"] { transform: translateY(-25px); }
[data-aos="fade-left"] { transform: translateX(25px); }
[data-aos="fade-right"] { transform: translateX(-25px); }
[data-aos="zoom-in"] { transform: scale(0.96); }
[data-aos].aos-animate { opacity: 1; }

[data-aos="fade-up"].aos-animate,
[data-aos="fade-down"].aos-animate,
[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate {
    transform: translate3d(0, 0, 0);
}

[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ----------------------------------------
   반응형
   ---------------------------------------- */
@media (max-width: 1024px) {
    .business-cards {
        grid-template-columns: 1fr;
    }

    .news-layout {
        grid-template-columns: 1fr;
    }

    .history-layout {
        grid-template-columns: 1fr;
    }

    .history-years {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .history-years-hint {
        width: 100%;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 29, 46, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--space-xl);
        flex-direction: column;
        gap: var(--space-lg);
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        gap: var(--space-lg);
    }

    .hero-stat-divider {
        display: none;
    }

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

    .pipeline-flow {
        flex-direction: column;
    }

    .flow-connector {
        width: 2px;
        height: 30px;
        background: linear-gradient(180deg, rgba(56, 189, 248, 0.3), rgba(99, 102, 241, 0.3));
    }

    .donut-chart-container {
        flex-direction: column;
    }

    .service-links-banner {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gate-grid {
        flex-wrap: wrap;
    }

    .gate-item {
        flex: 1 1 calc(50% - var(--space-sm));
        min-width: calc(50% - var(--space-sm));
    }

    .service-links-banner {
        grid-template-columns: 1fr;
    }

    .quick-links {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .cta-new .cta-buttons {
        flex-direction: column;
    }

    .cta-new .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ----------------------------------------
   펄스 애니메이션 효과
   ---------------------------------------- */

/* 네비게이션 문의하기 버튼 펄스 */
.btn-nav {
    animation: pulse-nav 3s ease-in-out infinite;
}

@keyframes pulse-nav {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(56, 189, 248, 0);
    }
}

.btn-nav:hover {
    animation: none;
}

/* 히어로 글로우 버튼 펄스 */
.hero-buttons .btn-glow {
    animation: pulse-hero-glow 3s ease-in-out infinite;
}

@keyframes pulse-hero-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(56, 189, 248, 0.3), 0 0 0 0 rgba(56, 189, 248, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(56, 189, 248, 0.3), 0 0 0 12px rgba(56, 189, 248, 0);
    }
}

.hero-buttons .btn-glow:hover {
    animation: none;
}

/* CTA 섹션 주요 버튼 펄스 */
.cta-new .btn-glow {
    animation: pulse-cta 2.5s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 0 0 30px rgba(56, 189, 248, 0.3), 0 0 0 0 rgba(56, 189, 248, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(56, 189, 248, 0.3), 0 0 0 14px rgba(56, 189, 248, 0);
    }
}

.cta-new .btn-glow:hover {
    animation: none;
}

/* 파이프라인 Phase 3 활성 원 펄스 */
.stage-circle.active {
    animation: pulse-phase3 2s ease-in-out infinite;
}

@keyframes pulse-phase3 {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
}

/* 벤토 그라데이션 배지 펄스 */
.bento-gradient-badge {
    animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
    }
}

/* 벤토 그라데이션 카드 글로우 펄스 */
.bento-gradient-card {
    animation: pulse-gradient-card 4s ease-in-out infinite;
}

@keyframes pulse-gradient-card {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(56, 189, 248, 0.1);
    }
    50% {
        box-shadow: 0 12px 48px rgba(56, 189, 248, 0.2), 0 0 30px rgba(56, 189, 248, 0.1);
    }
}

/* 서비스 링크 배너 아이템 호버 펄스 */
.service-link-item:hover .link-icon {
    animation: pulse-icon 0.6s ease-out;
}

@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* 퀵링크 카드 호버 펄스 */
.quick-link:hover {
    animation: pulse-quick-link 0.5s ease-out;
}

@keyframes pulse-quick-link {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.02); }
    100% { transform: translateY(-2px) scale(1); }
}

/* 히스토리 카드 featured 펄스 */
.history-card.featured {
    animation: pulse-history-featured 4s ease-in-out infinite;
}

@keyframes pulse-history-featured {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(56, 189, 248, 0.15);
    }
    50% {
        box-shadow: 0 12px 48px rgba(56, 189, 248, 0.25), 0 0 25px rgba(56, 189, 248, 0.15);
    }
}

/* 연도 pill 호버 펄스 */
.year-pill:hover {
    animation: pulse-year 0.4s ease-out;
}

@keyframes pulse-year {
    0% { transform: translateX(0); }
    50% { transform: translateX(3px); }
    100% { transform: translateX(0); }
}
