/* ========================================
   KDDF 랜딩페이지 스타일시트
   ======================================== */

/* ----------------------------------------
   CSS 변수 정의
   ---------------------------------------- */
:root {
    /* 주요 색상 */
    --primary: #0066CC;
    --primary-dark: #004C99;
    --primary-light: #3399FF;
    --secondary: #00A3E0;
    --accent: #FF6B35;

    /* 그라데이션 */
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    --gradient-hero: linear-gradient(135deg, #001F4D 0%, #003D80 50%, #0066CC 100%);
    --gradient-dark: linear-gradient(180deg, #0a1628 0%, #162a4a 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);

    /* 중립 색상 */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* 상태 색상 */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;

    /* 타이포그래피 */
    --font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;

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

    /* 그림자 */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* 반경 */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* 트랜지션 */
    --transition-fast: 100ms ease;
    --transition: 210ms ease;
    --transition-slow: 350ms ease;

    /* 고급스러운 이징 커브 */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* 호버 딜레이 (70% 감소) */
    --hover-delay: 0.07s;
}

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

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

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    word-break: keep-all;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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(--spacing-lg);
}

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

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

/* 버튼 스타일 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.875rem 1.75rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(0, 102, 204, 0.35);
    transition: transform 0.28s var(--ease-out-expo), box-shadow 0.28s var(--ease-out-expo);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px 0 rgba(0, 102, 204, 0.45);
    transition-delay: 0.03s;
}

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

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: var(--font-size-lg);
}

.btn-nav {
    padding: 0.625rem 1.25rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
}

.btn-nav:hover {
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.link-more {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary);
    font-weight: 500;
    transition: gap var(--transition);
}

.link-more:hover {
    gap: var(--spacing-sm);
}

/* 섹션 헤더 */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header.light {
    color: var(--white);
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0, 102, 204, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.section-header.light .section-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

.section-desc {
    font-size: var(--font-size-lg);
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ----------------------------------------
   네비게이션
   ---------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-sm) 0;
}

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

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

.logo-img {
    height: 65px;
    width: auto;
    transition: opacity var(--transition-fast);
}

.logo-img.light {
    position: absolute;
    opacity: 0;
}

.navbar.scrolled .logo-img.dark {
    opacity: 0;
}

.navbar.scrolled .logo-img.light {
    opacity: 1;
}

.logo-text {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
}

.navbar.scrolled .logo-text {
    color: var(--primary);
}

.logo-sub {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.navbar.scrolled .logo-sub {
    color: var(--gray-600);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: nowrap;
}

.nav-menu a {
    font-size: 1.138rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
    transition: color var(--transition-fast), transform 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 1px;
}

.nav-menu a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

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

.navbar.scrolled .nav-menu a {
    color: var(--gray-700);
}

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

.navbar.scrolled .nav-menu a::after {
    background: var(--primary);
}

.navbar.scrolled .nav-menu a.btn-nav {
    background: var(--gradient-primary);
    color: var(--white);
}

.navbar.scrolled .nav-menu a.btn-nav:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.navbar.scrolled .nav-menu a.btn-nav::after {
    display: none;
}

/* ── 메가 메뉴 ── */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--gray-200);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    z-index: 999;
    pointer-events: none;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-lg);
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.5fr 1.2fr 0.9fr 0.9fr 0.9fr;
    gap: var(--spacing-lg);
}

.mega-col {
    display: flex;
    flex-direction: column;
}

/* 1뎁스 타이틀 */
.mega-col-title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
    padding: 0 10px 12px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 14px;
    letter-spacing: -0.03em;
    white-space: nowrap;
    transition: color 0.25s ease, border-color 0.25s ease;
}

/* 하이라이트 시 타이틀 강조 */
.mega-col.highlight .mega-col-title {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* 2뎁스 링크 그룹 */
.mega-col-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-col-links a {
    display: block;
    padding: 7px 10px;
    color: var(--gray-600);
    font-size: 13.5px;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.25s ease;
    line-height: 1.5;
}

.mega-col-links a:hover {
    color: var(--primary);
    background: rgba(0, 102, 204, 0.06);
    padding-left: 14px;
}

/* 메가메뉴 열릴 때 상단 네비 활성 표시 */
.navbar.mega-open .nav-menu > .nav-item > a {
    opacity: 0.5;
}

.navbar.mega-open .nav-menu > .nav-item.hovered > a {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-sm);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--gray-700);
}

/* ----------------------------------------
   우측 페이지 네비게이터
   ---------------------------------------- */
.page-nav {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-nav.visible {
    opacity: 1;
    visibility: visible;
}

.page-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-nav-dot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

.page-nav-dot::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: 2px solid var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.page-nav-dot:hover::after,
.page-nav-dot.active::after {
    background: var(--primary);
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
}

.page-nav-label {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    background: var(--gray-800);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: var(--font-size-xs);
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.page-nav-label::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--gray-800);
}

.page-nav-dot:hover .page-nav-label {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .page-nav {
        display: none;
    }
}

/* ----------------------------------------
   섹션 1: 히어로
   ---------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -20px;
    background: var(--gradient-hero);
    transition: transform 0.3s ease-out;
}

/* 마우스 글로우 효과 */
.mouse-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(0, 163, 224, 0.15) 30%, rgba(0, 102, 204, 0.05) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('img/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    filter: grayscale(20%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 31, 77, 0.7) 0%,
        rgba(0, 61, 128, 0.6) 50%,
        rgba(0, 102, 204, 0.5) 100%
    );
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 163, 224, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 102, 204, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(0, 76, 153, 0.15) 0%, transparent 50%);
}

/* 고정된 별들 (배경) */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    transition: transform 0.3s ease-out;
    background-image:
        radial-gradient(1.5px 1.5px at 20px 30px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 80px 120px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1.5px 1.5px at 150px 50px, rgba(255,255,255,0.35), transparent),
        radial-gradient(2px 2px at 200px 180px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 50px 160px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1.5px 1.5px at 120px 90px, rgba(255,255,255,0.35), transparent),
        radial-gradient(2px 2px at 180px 140px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 30px 80px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 95px 200px, rgba(200,230,255,0.45), transparent),
        radial-gradient(1.5px 1.5px at 230px 100px, rgba(200,230,255,0.4), transparent);
    background-size: 250px 250px;
}

/* 움직이는 별들 (일부만) */
.hero-particles::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2.5px 2.5px at 40px 60px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 130px, rgba(200,230,255,0.55), transparent),
        radial-gradient(2px 2px at 100px 40px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 220px 90px, rgba(200,230,255,0.45), transparent);
    background-size: 300px 300px;
    animation: floatUp 12s linear infinite;
}

/* 반짝이는 별들 */
.hero-particles::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(3px 3px at 70px 100px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2.5px 2.5px at 190px 70px, rgba(200,230,255,0.6), transparent),
        radial-gradient(2px 2px at 130px 180px, rgba(255,255,255,0.55), transparent);
    background-size: 350px 350px;
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes floatUp {
    0% { transform: translateY(0); opacity: 0.8; }
    50% { opacity: 1; }
    100% { transform: translateY(-300px); opacity: 0.8; }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.9; }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: var(--white);
    padding: var(--spacing-xl);
    transition: transform 0.3s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-xl);
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.02em;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3em;
}

.hero-desc {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: var(--spacing-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-buttons .btn {
    min-width: 180px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    opacity: 0.7;
    font-size: var(--font-size-sm);
    color: var(--white);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: var(--radius-full);
    animation: scroll 2s infinite;
}

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

/* ----------------------------------------
   섹션 1.5: 벤토 그리드 쇼케이스 (라이트 테마)
   ---------------------------------------- */
.bento-showcase {
    padding: var(--spacing-5xl) 0;
    background: var(--gray-50);
    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(0, 102, 204, 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(0, 102, 204, 0.08) 0%,
        rgba(0, 163, 224, 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(0, 102, 204, 0.1) 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(6, 46px);
    gap: 16px;
    position: relative;
}

.bento-item {
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

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

/* 벤토 아이템 크기 변형 */
.bento-hero-card {
    grid-column: 1 / 3;
    grid-row: 1 / 7;
    background: var(--gradient-primary);
    border: none;
}

.bento-stat-card {
    grid-column: 3 / 4;
    grid-row: 1 / 4;
}

.bento-mid-card {
    grid-column: 3 / 4;
    grid-row: 4 / 7;
}

.bento-small-1 {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}

.bento-small-2 {
    grid-column: 4 / 5;
    grid-row: 3 / 5;
}

.bento-small-3 {
    grid-column: 4 / 5;
    grid-row: 5 / 7;
}

.bento-small-1,
.bento-small-2,
.bento-small-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-decoration: none;
    padding: 20px;
    gap: 10px;
}

.bento-small-1 .bento-btn-label,
.bento-small-2 .bento-btn-label,
.bento-small-3 .bento-btn-label {
    font-size: 1.05rem;
}

.bento-small-1 .bento-icon,
.bento-small-2 .bento-icon,
.bento-small-3 .bento-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 0;
}

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

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

/* 게시판 카드 스타일 */
.bento-board-card {
    padding: 20px 24px 66px !important;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bento-board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bento-board-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.bento-board-more {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.bento-board-more:hover {
    color: var(--primary);
}

.bento-board-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.bento-board-list li {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

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

.bento-board-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bento-board-list a:hover .board-title {
    color: var(--primary);
}

.board-title {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 0 1 auto;
    min-width: 0;
}

/* 제목 + 배지 그룹 */
.board-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    margin-right: 12px;
}

.board-date {
    font-size: 0.7rem;
    color: var(--gray-400);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ----------------------------------------
   게시판 카드 - 향상된 디자인
   ---------------------------------------- */
.bento-board-card {
    position: relative;
    overflow: hidden;
}

.bento-board-card .bento-board-header,
.bento-board-card .bento-board-list {
    position: relative;
    z-index: 2;
}

/* 헤더 타이틀 그룹 */
.bento-board-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 헤더 아이콘 */
.bento-board-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

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

.bento-board-card:hover .bento-board-icon {
    transform: scale(1.08) rotate(-6deg);
}

/* 카드 배경 이미지 (하단 기준 정렬) */
.bento-board-blue,
.bento-board-orange {
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.bento-board-blue {
    background-color: #ecedfb;
    background-image: url('img/board_bg_blue.png');
}

.bento-board-orange {
    background-color: #fef0e6;
    background-image: url('img/board_bg_orange.png');
}

/* 공지사항 - 블루 테마 */
.bento-board-blue .bento-board-icon {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.16), rgba(0, 163, 224, 0.06));
    color: var(--primary);
}

.bento-board-blue .bento-board-list a:hover {
    background: rgba(0, 102, 204, 0.06);
}

.bento-board-blue .bento-board-list a:hover .board-title {
    color: var(--primary);
}

/* 연구·산업 동향 - 오렌지 테마 */
.bento-board-orange .bento-board-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.16), rgba(251, 146, 60, 0.06));
    color: var(--accent);
}

.bento-board-orange .bento-board-list a:hover {
    background: rgba(255, 107, 53, 0.06);
}

.bento-board-orange .bento-board-list a:hover .board-title {
    color: var(--accent);
}

/* 리스트 항목 호버 효과 */
.bento-board-list a {
    border-radius: 6px;
    padding: 8px 6px;
    transition: background 0.25s ease, padding-left 0.25s ease;
}

.bento-board-list a:hover {
    padding-left: 10px;
}

/* 배지 */
.board-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.3;
    color: var(--white);
}

.board-badge.new {
    background: var(--primary);
    box-shadow: 0 2px 6px rgba(0, 102, 204, 0.25);
}

.board-badge.hot {
    background: var(--accent);
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.25);
}



.bento-gradient-card {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(180deg, var(--gray-50), rgba(0, 102, 204, 0.08));
    border: 1px solid rgba(0, 102, 204, 0.15);
}

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

/* 벤토 태그 */
.bento-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: calc(var(--spacing-md) * 2);
}

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

.bento-content .text-highlight {
    color: #7DD3FC;
}

.bento-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 380px;
}

/* 사업공고 정보 */
.bento-notice-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: var(--spacing-sm);
}

.notice-status {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(74, 222, 128, 0.25);
    color: #4ade80;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.notice-period {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* 벤토 버튼 */
.bento-btn {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.bento-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(4px);
}

.bento-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

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

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

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

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

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

.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(0, 163, 224, 0.15), rgba(0, 163, 224, 0.05));
}
.bento-icon.cyan svg { stroke: var(--secondary); }

.bento-icon.purple {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05));
}
.bento-icon.purple svg { stroke: #6366F1; }

.bento-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
}
.bento-icon.green svg { stroke: var(--success); }

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

.bento-icon.white {
    background: rgba(0, 102, 204, 0.1);
}
.bento-icon.white svg { stroke: var(--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-plus {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary);
    -webkit-text-fill-color: var(--secondary);
}

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

/* 벤토 버튼 카드 */
.bento-btn-card {
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.bento-btn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.2);
}

.bento-btn-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.bento-btn-sub {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
    margin-top: 4px;
}

.bento-btn-arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.bento-btn-arrow svg {
    width: 14px;
    height: 14px;
}

.bento-btn-card:hover .bento-btn-arrow {
    background: var(--primary);
    color: var(--white);
    transform: translateX(3px);
}


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

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

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

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

.service-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 600;
    background: rgba(0, 102, 204, 0.08);
    color: var(--primary);
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 204, 0.15);
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: rgba(0, 102, 204, 0.15);
    transform: translateY(-1px);
}

.service-tag.light {
    background: rgba(0, 102, 204, 0.12);
    color: var(--primary);
    border-color: rgba(0, 102, 204, 0.2);
}

.service-tag.light:hover {
    background: rgba(0, 102, 204, 0.2);
}

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

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

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

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

/* 와이드 카드 배지 */
.bento-wide-badges {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.wide-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.wide-badge:hover {
    transform: translateY(-2px) scale(1.05);
}

.wide-badge.small {
    width: auto;
    padding: 0 14px;
    height: 36px;
    font-size: 0.75rem;
    border-radius: 18px;
}

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

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

.bento-gradient-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    margin-top: auto;
    letter-spacing: 0.05em;
}

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

    .bento-hero-card {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 280px;
    }

    .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,
    .bento-mid-card {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 180px;
    }

    .bento-small-1,
    .bento-small-2,
    .bento-small-3 {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 100px;
    }
}

@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,
    .bento-mid-card,
    .bento-small-1,
    .bento-small-2,
    .bento-small-3 {
        grid-column: span 1;
        grid-row: span 1;
        min-height: auto;
    }

    .bento-item {
        padding: 24px;
    }

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

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

    .bento-board-card {
        padding: 20px 24px 66px !important;
    }
}

/* ----------------------------------------
   섹션 2: 미션 & 비전
   ---------------------------------------- */
.mission {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.mission-card {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    filter: brightness(1);
    border: 1px solid transparent;
    transition: transform 0.55s var(--ease-out-expo) 0.05s,
                box-shadow 0.7s var(--ease-out-expo) 0.2s,
                background 0.6s var(--ease-smooth) 0.15s,
                border-color 0.35s var(--ease-smooth) 0.12s,
                filter 0.35s var(--ease-smooth) 0.18s;
}

.mission-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(0, 102, 204, 0.1);
    transform: translateY(-10px);
    filter: brightness(1.03);
    border-color: rgba(0, 102, 204, 0.06);
}

.mission-card .mission-icon {
    transition: transform 0.6s var(--ease-out-back) 0.1s,
                box-shadow 0.35s var(--ease-smooth) 0.15s;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.2);
}

.mission-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white);
}

.mission-icon svg {
    width: 32px;
    height: 32px;
}

.mission-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.mission-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    line-height: 1.7;
    letter-spacing: -0.06em;
}

.leader-message {
    display: flex;
    align-items: center;
    gap: var(--spacing-3xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    color: var(--white);
}

.leader-image {
    flex-shrink: 0;
}

.leader-placeholder {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.leader-placeholder span {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.leader-placeholder small {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.leader-content blockquote {
    font-size: var(--font-size-xl);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.leader-content .link-more {
    color: var(--white);
    opacity: 0.9;
}

.leader-content .link-more:hover {
    opacity: 1;
}

/* ----------------------------------------
   섹션 3: 핵심 숫자
   ---------------------------------------- */
.stats {
    position: relative;
    padding: var(--spacing-5xl) 0;
    color: var(--white);
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
    overflow: hidden;
}

.stats-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 163, 224, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 163, 224, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.stats .container {
    position: relative;
    z-index: 1;
}

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

.stat-card {
    text-align: center;
    padding: var(--spacing-md) var(--spacing-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    filter: brightness(1);
    transition: transform 0.55s var(--ease-out-expo) 0.05s,
                background 0.6s var(--ease-smooth) 0.15s,
                border-color 0.6s var(--ease-smooth) 0.12s,
                box-shadow 0.7s var(--ease-out-expo) 0.2s,
                filter 0.35s var(--ease-smooth) 0.18s;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 60px rgba(0, 163, 224, 0.1);
    filter: brightness(1.12);
}

/* 카드 글로우 */
.stat-card .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stat-card .card-glow.cyan { background: radial-gradient(circle, rgba(0, 163, 224, 0.1) 0%, transparent 50%); }
.stat-card .card-glow.blue { background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 50%); }
.stat-card .card-glow.accent { background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 50%); }

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

/* 링 차트 */
.stat-ring {
    width: 110px;
    height: 110px;
    margin: 0 auto;
    position: relative;
}

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

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

.ring-fill {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.18s;
}

.ring-fill.cyan { stroke: var(--secondary); }
.ring-fill.blue { stroke: var(--primary); }
.ring-fill.accent { stroke: var(--accent); }

.stat-card.aos-animate .ring-fill {
    stroke-dashoffset: calc(283 - (283 * var(--progress) / 100));
}

.stat-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #a5c9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.35s var(--ease-out-back) 0.03s;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

.stat-unit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.stat-plus {
    font-size: 0.7em;
    color: var(--secondary);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--white);
    margin-top: var(--spacing-md);
    line-height: 1.4;
    word-break: keep-all;
}

/* 파이프라인 현황 - 원형 차트 */
@property --pie-reveal {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

.pipeline-section {
    position: relative;
    margin-top: 8rem; /* 이전 콘텐츠와의 간격을 기존보다 2배로 확장 */
}

.pipeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.pie-chart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.pie-chart-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pie-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    padding: 6px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-align: center;
}

.pie-chart {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin-bottom: var(--spacing-lg);
    position: relative;
    --pie-reveal: 0deg;
    -webkit-mask-image: conic-gradient(#000 0deg var(--pie-reveal), transparent var(--pie-reveal) 360deg);
    mask-image: conic-gradient(#000 0deg var(--pie-reveal), transparent var(--pie-reveal) 360deg);
    transform: scale(0.5) rotate(-90deg);
    opacity: 0;
    transition: --pie-reveal 1.55s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.8s ease-out,
                box-shadow 0.3s ease;
}

.pie-chart:hover {
    transform: scale(1.05) rotate(0deg) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.pipeline-section.aos-animate .pie-chart {
    --pie-reveal: 360deg;
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.pipeline-section.aos-animate .pie-chart-card:nth-child(1) .pie-chart { transition-delay: 0.12s; }
.pipeline-section.aos-animate .pie-chart-card:nth-child(2) .pie-chart { transition-delay: 0.32s; }
.pipeline-section.aos-animate .pie-chart-card:nth-child(3) .pie-chart { transition-delay: 0.52s; }

.pie-legend {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    width: 100%;
}

.pie-legend li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    text-align: left;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.pipeline-section.aos-animate .pie-legend li {
    opacity: 1;
    transform: translateY(0);
}

.pipeline-section.aos-animate .pie-legend li:nth-child(1) { transition-delay: 0.28s; }
.pipeline-section.aos-animate .pie-legend li:nth-child(2) { transition-delay: 0.36s; }
.pipeline-section.aos-animate .pie-legend li:nth-child(3) { transition-delay: 0.44s; }
.pipeline-section.aos-animate .pie-legend li:nth-child(4) { transition-delay: 0.52s; }
.pipeline-section.aos-animate .pie-legend li:nth-child(5) { transition-delay: 0.60s; }
.pipeline-section.aos-animate .pie-legend li:nth-child(6) { transition-delay: 0.68s; }
.pipeline-section.aos-animate .pie-legend li:nth-child(7) { transition-delay: 0.76s; }
.pipeline-section.aos-animate .pie-legend li:nth-child(8) { transition-delay: 0.84s; }
.pipeline-section.aos-animate .pie-legend li:nth-child(9) { transition-delay: 0.92s; }
.pipeline-section.aos-animate .pie-legend li:nth-child(10) { transition-delay: 1.00s; }

.legend-name {
    margin-right: 4px;
}

/* 파이차트 툴팁 */
.pie-tooltip {
    position: absolute;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.85rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pie-tooltip .tt-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.pie-tooltip .tt-name {
    font-weight: 500;
}

.pie-tooltip .tt-value {
    font-weight: 800;
    font-size: 1rem;
    margin-left: 4px;
}

.pie-legend li strong {
    color: var(--white);
    font-weight: 700;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .pie-chart-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pie-chart {
        width: 180px;
        height: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ring-fill {
        stroke-dashoffset: calc(283 - (283 * var(--progress) / 100));
        transition: none;
    }

    .pie-chart {
        --pie-reveal: 360deg;
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .pie-legend li {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ----------------------------------------
   섹션 4: 3대 사업 소개
   ---------------------------------------- */
.business {
    padding: var(--spacing-5xl) 0;
    background: var(--gray-50);
}

/* 비즈니스 카드 그리드 */
.business-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-xl);
}

/* 카드 (밝은 배경) */
.business .glass-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.5s ease,
                border-color 0.4s ease,
                box-shadow 0.5s ease;
}

.business .glass-card:hover {
    border-color: rgba(0, 102, 204, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 102, 204, 0.12), 0 0 40px rgba(0, 102, 204, 0.04);
}

/* 카드 글로우 */
.business .card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.business .card-glow.cyan { background: radial-gradient(circle, rgba(0, 163, 224, 0.08) 0%, transparent 50%); }
.business .card-glow.blue { background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 50%); }
.business .card-glow.accent { background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 50%); }

/* 비즈니스 카드 */
.business-card {
    padding: var(--spacing-2xl);
    display: flex;
    flex-direction: column;
}

.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.25;
    margin-bottom: var(--spacing-md);
}

/* 카드 헤더 */
.business-header {
    margin-bottom: var(--spacing-lg);
}

.business-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.business-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 102, 204, 0.08);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

/* 카드 설명 */
.business-desc {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* 기능 리스트 */
.business-features,
.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    list-style: none;
    padding: 0;
}

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

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

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

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

/* 코로나 미니 통계 */
.covid-stats-mini {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
}

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

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

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

/* GATE 그리드 */
.gate-grid {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.gate-item {
    flex: 1;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-sm);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: background 0.3s ease;
    min-width: 0;
}

.gate-item:hover {
    background: rgba(0, 102, 204, 0.08);
}

.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(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 버튼 스타일 (비즈니스 섹션) */
.business-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: auto;
}

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

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

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

.btn-glass {
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--primary);
}

.btn-glass:hover {
    background: rgba(0, 102, 204, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}



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

.news-thumb-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    word-break: keep-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-thumb-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.news-thumb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.news-thumb-img {
    position: relative;
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.news-thumb-content {
    padding: var(--spacing-md);
}

.news-thumb-card:hover .news-thumb-title {
    color: var(--primary);
}

.news-thumb-date {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

/* 서브 게시물 리스트 (썸네일 포함) */
.news-sub-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-sub-list li {
    border-bottom: 1px solid var(--gray-100);
}

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

.news-sub-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    transition: all 0.2s ease;
}

.news-sub-item:hover {
    background: var(--gray-50);
    padding-left: var(--spacing-sm);
    border-radius: var(--radius-md);
}

.news-sub-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 48px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--gray-100);
    overflow: hidden;
}

.news-sub-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.news-sub-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: keep-all;
    transition: color 0.2s ease;
}

.news-sub-item:hover .news-sub-title {
    color: var(--primary);
}

.news-sub-date {
    font-size: 0.75rem;
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .gate-grid {
        flex-wrap: wrap;
    }
    .gate-item {
        flex: 1 1 calc(50% - var(--spacing-sm));
        min-width: calc(50% - var(--spacing-sm));
    }
}

/* 파이프라인 스테이지 */
.pipeline-stages {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xl);
}

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

.stage-dot {
    width: 16px;
    height: 16px;
    background: var(--gray-300);
    border-radius: 50%;
    transition: all var(--transition);
}

.stage.active .stage-dot {
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
}

.stage span {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

.stage-line {
    width: 32px;
    height: 2px;
    background: var(--gray-300);
    margin-bottom: var(--spacing-xl);
}

.gov-ministries {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.gov-ministries span {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-xs);
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: var(--radius-full);
}

/* ----------------------------------------
   섹션 5: 파이프라인 현황
   ---------------------------------------- */
.pipeline {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.pipeline-visualization {
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
}

.pipeline-funnel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.funnel-stage {
    width: 0;
    min-width: 160px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.funnel-stage.animated {
    width: calc(var(--target-width) * 1%);
}

.funnel-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 600;
    min-height: 48px;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
    filter: brightness(1);
    transition: transform 0.35s var(--ease-out-expo),
                box-shadow 0.42s var(--ease-out-expo) 0.1s,
                filter 0.28s var(--ease-smooth) 0.03s;
    overflow: hidden;
}

.funnel-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.49s var(--ease-smooth) 0.07s;
}

.funnel-bar:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.35);
    filter: brightness(1.1);
}

.funnel-bar:hover::before {
    transform: translateX(100%);
}

.funnel-bar.discovery { background: linear-gradient(90deg, #0066CC, #0077E6); }
.funnel-bar.preclinical { background: linear-gradient(90deg, #0077E6, #0088FF); }
.funnel-bar.phase1 { background: linear-gradient(90deg, #0088FF, #00A3E0); }
.funnel-bar.phase2 { background: linear-gradient(90deg, #00A3E0, #00B8D4); }
.funnel-bar.phase3 { background: linear-gradient(90deg, #00B8D4, #00E5CC); }

.funnel-label {
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.funnel-count {
    font-size: var(--font-size-lg);
    font-weight: 700;
    flex-shrink: 0;
    margin-left: var(--spacing-sm);
}

/* Phase 3 진행중 펄스 효과 */
.funnel-pulse {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    margin-left: var(--spacing-sm);
    flex-shrink: 0;
}

.funnel-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: rgba(0, 255, 136, 0.4);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(2); opacity: 0; }
}

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

/* 퍼널 툴팁 */
.funnel-tooltip {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translate(100%, -50%);
    background: var(--gray-800);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius);
    font-size: var(--font-size-xs);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.funnel-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--gray-800);
}

.funnel-stage:hover .funnel-tooltip {
    opacity: 1;
    visibility: visible;
    right: -15px;
}

.pipeline-legend {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.pipeline-legend p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-bottom: var(--spacing-lg);
}

/* 파이프라인 버튼 */
.btn-pipeline {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: transform 0.35s var(--ease-out-expo),
                box-shadow 0.35s var(--ease-out-expo) 0.03s;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

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

.btn-pipeline:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.45);
}

.btn-pipeline:hover svg {
    transform: translateX(5px);
}

/* 질병 분야별 분포 - 수평 막대 */
.disease-bars {
    max-width: 700px;
    margin: var(--spacing-3xl) auto 0;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
}

.disease-bars h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
    color: var(--gray-800);
    text-align: center;
}

.disease-bar-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.disease-bar-item {
    display: grid;
    grid-template-columns: 120px 1fr 60px;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius);
    cursor: pointer;
    filter: brightness(1);
    transition: background 0.35s var(--ease-smooth) 0.1s,
                filter 0.28s var(--ease-smooth) 0.08s,
                box-shadow 0.35s var(--ease-out-expo) 0.07s;
    opacity: 0;
    transform: translateX(-20px);
}

.disease-bar-item.animated {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.42s var(--ease-out-expo),
                transform 0.42s var(--ease-out-expo),
                background 0.35s var(--ease-smooth) 0.1s,
                filter 0.28s var(--ease-smooth) 0.08s,
                box-shadow 0.35s var(--ease-out-expo) 0.07s;
}

.disease-bar-item:hover {
    background: var(--gray-50);
    filter: brightness(1.02);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.08);
}

.disease-bar-item .disease-fill {
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.28s var(--ease-smooth) 0.05s,
                box-shadow 0.28s var(--ease-smooth) 0.03s;
}

.disease-bar-item:hover .disease-fill {
    filter: brightness(1.15);
    box-shadow: 0 3px 12px rgba(0, 102, 204, 0.35);
}

.disease-bar-item .disease-value {
    transition: transform 0.28s var(--ease-out-back) 0.03s;
}

.disease-bar-item:hover .disease-value {
    transform: scale(1.12);
}

.disease-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.disease-name {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.3s ease;
}

.disease-bar-item:hover .disease-name {
    color: var(--primary);
}

.disease-value {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--gray-900);
    transition: transform 0.3s ease;
}

.disease-track {
    height: 14px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.disease-fill {
    height: 100%;
    width: 0;
    background: var(--color);
    border-radius: var(--radius-full);
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.disease-fill.animated {
    width: calc(var(--target-width) * 1%);
}

.disease-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: var(--radius-full) var(--radius-full) 0 0;
}

.disease-percent {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    text-align: right;
    font-weight: 600;
    transition: all 0.3s ease;
}

.disease-bar-item:hover .disease-percent {
    color: var(--primary);
    transform: scale(1.05);
}

.disease-total {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-200);
}

.disease-total span {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
}

.disease-total strong {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 640px) {
    .disease-bar-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }

    .disease-info {
        justify-content: flex-start;
        gap: var(--spacing-sm);
    }

    .disease-percent {
        display: none;
    }

    .funnel-tooltip {
        display: none;
    }
}

/* ----------------------------------------
   섹션 6: 지원 서비스
   ---------------------------------------- */
.services {
    padding: var(--spacing-5xl) 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    filter: brightness(1);
    border: 1px solid transparent;
    transition: transform 0.55s var(--ease-out-expo) 0.05s,
                background 0.6s var(--ease-smooth) 0.15s,
                border-color 0.6s var(--ease-smooth) 0.12s,
                box-shadow 0.7s var(--ease-out-expo) 0.2s,
                filter 0.35s var(--ease-smooth) 0.18s;
}

.service-card:hover {
    box-shadow: var(--shadow-xl), 0 0 50px rgba(0, 102, 204, 0.08);
    transform: translateY(-8px);
    filter: brightness(1.03);
    border-color: rgba(0, 102, 204, 0.08);
}

.service-card .service-icon {
    transition: transform 0.38s var(--ease-out-back) 0.1s,
                box-shadow 0.35s var(--ease-smooth) 0.15s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.service-card.large {
    grid-row: span 2;
}

.service-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    color: var(--primary);
}

.service-icon.gradient-bg {
    background: var(--gradient-primary);
    color: var(--white);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-900);
}

.service-desc {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.service-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--radius);
}

.item-icon {
    font-size: var(--font-size-xl);
    flex-shrink: 0;
}

.service-item strong {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--gray-800);
    margin-bottom: var(--spacing-xs);
}

.service-item span {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.service-list li {
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    padding-left: var(--spacing-md);
    position: relative;
}

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

.service-list li strong {
    color: var(--gray-800);
}

/* 서비스 그리드 4열 레이아웃 */
.services-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.services-grid-4col .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-grid-4col .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.service-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-title-wrap h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-900);
}

.service-count {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-lighter);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.service-more {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    margin-top: var(--spacing-sm);
    font-style: italic;
}

.service-count-badge {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-lighter);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-top: auto;
}

/* 아이콘 그라데이션 변형 */
.service-icon.gradient-bg-edu {
    background: linear-gradient(135deg, #00C9A7 0%, #00E5BD 100%);
    color: var(--white);
}

.service-icon.gradient-bg-tech {
    background: linear-gradient(135deg, #6B5BFF 0%, #8B7BFF 100%);
    color: var(--white);
}

.service-icon.gradient-bg-partner {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF8BB5 100%);
    color: var(--white);
}

/* 서비스 링크 배너 */
.service-links-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.service-link-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--gray-700);
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: transform 0.45s var(--ease-out-expo) 0.05s,
                background 0.35s var(--ease-smooth) 0.1s,
                color 0.28s var(--ease-smooth) 0.08s,
                box-shadow 0.55s var(--ease-out-expo) 0.12s;
}

.service-link-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 102, 204, 0.25);
}

.service-link-item .link-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    color: var(--primary);
    transition: all 0.3s var(--ease-out-expo);
}

.service-link-item:hover .link-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.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: var(--font-size-lg);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s var(--ease-out-expo);
}

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

/* 서비스 아코디언 스타일 */
.services-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.service-accordion-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.55s var(--ease-out-expo) 0.05s,
                box-shadow 0.7s var(--ease-out-expo) 0.2s,
                border-color 0.6s var(--ease-smooth) 0.12s;
}

.service-accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.12);
    border-color: var(--gray-300);
}

.service-accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
}

/* 아코디언 색상 변형 */
.service-accordion-item[data-color="blue"].active { border-color: #0066CC; }
.service-accordion-item[data-color="green"].active { border-color: #10B981; }
.service-accordion-item[data-color="purple"].active { border-color: #8B5CF6; }
.service-accordion-item[data-color="pink"].active { border-color: #EC4899; }

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

.accordion-header:hover {
    background: var(--gray-50);
}

.accordion-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    transition: transform 0.35s var(--ease-out-back) 0.1s,
                box-shadow 0.35s var(--ease-smooth) 0.15s;
}

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

.service-accordion-item[data-color="blue"] .accordion-icon {
    background: linear-gradient(135deg, #0066CC, #00A3E0);
    color: var(--white);
}
.service-accordion-item[data-color="green"] .accordion-icon {
    background: linear-gradient(135deg, #10B981, #34D399);
    color: var(--white);
}
.service-accordion-item[data-color="purple"] .accordion-icon {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    color: var(--white);
}
.service-accordion-item[data-color="pink"] .accordion-icon {
    background: linear-gradient(135deg, #EC4899, #F472B6);
    color: var(--white);
}

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

.accordion-title {
    flex: 1;
}

.accordion-title h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.accordion-count {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    font-weight: 500;
}

.accordion-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    transition: transform 0.35s var(--ease-out-expo),
                background 0.28s var(--ease-smooth);
}

.accordion-arrow svg {
    width: 20px;
    height: 20px;
}

.service-accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
    background: var(--primary);
    color: var(--white);
}

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

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

.accordion-desc {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

/* 프로그램 태그 */
.program-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding-bottom: var(--spacing-sm);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

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

.program-tags::-webkit-scrollbar-track {
    background: transparent;
}

.program-tags::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: var(--radius-full);
}

.program-tag {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-decoration: none;
    min-width: 130px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.45s var(--ease-out-expo) 0.05s,
                background 0.35s var(--ease-smooth) 0.1s,
                border-color 0.35s var(--ease-smooth) 0.08s,
                box-shadow 0.42s var(--ease-out-expo) 0.15s;
}

.program-tag:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.program-tag.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(255, 184, 0, 0.05));
    border-color: rgba(255, 107, 53, 0.3);
}

.program-tag.featured:hover {
    border-color: #FF6B35;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.tag-new {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #FF6B35, #FF8C5A);
    border-radius: var(--radius-sm);
    animation: pulse 2s infinite;
}

.tag-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.tag-name {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gray-800);
}

.tag-sub {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

/* 반응형 */
@media (max-width: 768px) {
    .accordion-header {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }

    .accordion-icon {
        width: 48px;
        height: 48px;
    }

    .accordion-icon svg {
        width: 24px;
        height: 24px;
    }

    .accordion-desc,
    .program-tags {
        padding-left: 0;
    }

    .program-tag {
        min-width: 110px;
    }
}

/* SEED 배너 (레거시 유지) */
.seed-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-xl) var(--spacing-2xl);
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    color: var(--white);
}

.seed-badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    font-size: var(--font-size-xs);
    font-weight: 700;
    background: var(--white);
    color: var(--accent);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
}

.seed-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.seed-content p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

/* ----------------------------------------
   섹션 7: 뉴스 & 공지
   ---------------------------------------- */
.news {
    padding: var(--spacing-5xl) 0;
    background: var(--white);
}

.news .container {
    max-width: 1600px;
}

/* 갤러리 컬럼만 제목 1줄 ellipsis */
.news-grid .news-column:nth-child(3) .news-thumb-title,
.news-grid .news-column:nth-child(3) .news-sub-title {
    -webkit-line-clamp: 1;
}

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

.news-column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--gray-900);
}

.news-column-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

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

.news-list li {
    border-bottom: 1px solid var(--gray-200);
}

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

.news-list a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    transition: all var(--transition);
}

.news-list a:hover {
    color: var(--primary);
}

.news-title {
    font-size: var(--font-size-sm);
    color: var(--gray-700);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list a:hover .news-title {
    color: var(--primary);
}

.news-date {
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    flex-shrink: 0;
}

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

.news-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    filter: brightness(1);
    transition: transform 0.3s var(--ease-out-expo),
                background 0.12s ease,
                color 0.08s ease,
                box-shadow 0.35s var(--ease-out-expo) 0.03s,
                filter 0.15s ease;
}

.news-card:hover {
    background: linear-gradient(135deg, #0066CC 0%, #00A3E0 100%);
    color: var(--white);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.35);
    filter: brightness(1.05);
}

.news-card .news-card-icon {
    transition: transform 0.35s var(--ease-out-back) 0.03s;
}

.news-card:hover .news-card-icon {
    transform: scale(1.15);
}

.news-card-icon {
    font-size: var(--font-size-xl);
}

.news-card span {
    font-size: var(--font-size-sm);
    font-weight: 500;
}

/* SNS 링크 */
.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    transition: transform 0.55s var(--ease-out-expo) 0.05s,
                background 0.35s var(--ease-smooth) 0.12s,
                color 0.35s var(--ease-smooth) 0.1s,
                box-shadow 0.42s var(--ease-out-expo) 0.18s;
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.28s var(--ease-out-back) 0.04s;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link.facebook:hover {
    background: #1877F2;
    color: var(--white);
}

.social-link.youtube:hover {
    background: #FF0000;
    color: var(--white);
}

.social-link.youtube:hover .yt-play {
    fill: #FF0000;
}

.social-link.newsletter {
    width: auto;
    padding: 0 var(--spacing-lg);
    border-radius: var(--radius-full);
    gap: var(--spacing-sm);
}

.social-link.newsletter span {
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.social-link.newsletter svg {
    width: 20px;
    height: 20px;
}

.social-link.newsletter:hover {
    background: var(--primary);
    color: var(--white);
}

/* ----------------------------------------
   섹션 8: 연혁 타임라인
   ---------------------------------------- */
.history {
    padding: var(--spacing-5xl) 0;
    background: var(--gray-50);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

/* 중앙 세로 라인 */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, var(--gray-300) 5%, var(--gray-300) 95%, transparent 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: var(--spacing-md) 0;
}

.timeline-item.left {
    padding-right: 40px;
    text-align: right;
}

.timeline-item.right {
    margin-left: 50%;
    padding-left: 40px;
}

/* 점 - 라인 중앙에 정확히 배치 */
.timeline-dot {
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.25s ease;
}

.timeline-item.left .timeline-dot {
    right: -6px;
}

.timeline-item.right .timeline-dot {
    left: -6px;
}

.timeline-item:hover .timeline-dot {
    background: var(--primary);
    transform: translateY(-50%) scale(1.3);
}

.timeline-dot.highlight {
    width: 14px;
    height: 14px;
    background: var(--primary);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-item.left .timeline-dot.highlight {
    right: -8px;
}

.timeline-item.right .timeline-dot.highlight {
    left: -8px;
}

.timeline-item:hover .timeline-dot.highlight {
    transform: translateY(-50%) scale(1.2);
}

.timeline-content {
    background: var(--white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    border-left: 3px solid var(--primary);
    transition: all 0.25s ease;
}

.timeline-item.left .timeline-content {
    border-left: none;
    border-right: 3px solid var(--primary);
}

.timeline-content:hover {
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
    transform: translateY(-2px);
}

.timeline-content.highlight {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
}

.timeline-year {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.timeline-content.highlight .timeline-year {
    color: rgba(255, 255, 255, 0.8);
}

.timeline-content h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.timeline-content p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    line-height: 1.6;
}

.timeline-content.highlight p {
    color: rgba(255, 255, 255, 0.8);
}

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

/* ----------------------------------------
   섹션 9: CTA
   ---------------------------------------- */
.cta {
    position: relative;
    padding: 8.4rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

/* CTA 파티클 모션 */
.cta-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.cta-particles::before,
.cta-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 200%;
    top: 0;
    left: 0;
    background:
        radial-gradient(6px 6px at 8% 15%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(3px 3px at 20% 55%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(5px 5px at 35% 25%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 50% 70%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(7px 7px at 65% 10%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(3px 3px at 75% 45%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(4px 4px at 88% 60%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 15% 85%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(5px 5px at 42% 40%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(3px 3px at 92% 80%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(8px 8px at 28% 90%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 58% 35%, rgba(255, 255, 255, 0.9), transparent);
    background-size: 100% 50%;
    animation: ctaFloat 14s linear infinite, ctaTwinkle 3s ease-in-out infinite alternate;
}

.cta-particles::after {
    background:
        radial-gradient(4px 4px at 12% 35%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(7px 7px at 30% 10%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 45% 75%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(5px 5px at 60% 20%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(3px 3px at 72% 55%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(6px 6px at 85% 30%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 5% 65%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(4px 4px at 38% 48%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(8px 8px at 95% 85%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(3px 3px at 52% 5%, rgba(255, 255, 255, 0.9), transparent);
    background-size: 100% 50%;
    animation: ctaFloat 18s linear infinite reverse, ctaTwinkle 4s ease-in-out infinite alternate-reverse;
}

@keyframes ctaFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes ctaTwinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* CTA 글로우 오브 */
.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.cta-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 163, 224, 0.2);
    top: -100px;
    right: -100px;
    animation: ctaGlow1 8s ease-in-out infinite alternate;
}

.cta-glow-2 {
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.08);
    bottom: -80px;
    left: -80px;
    animation: ctaGlow2 10s ease-in-out infinite alternate;
}

@keyframes ctaGlow1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.2; }
    50% { transform: translate(-40px, 30px) scale(1.2); opacity: 0.35; }
    100% { transform: translate(-20px, 60px) scale(1); opacity: 0.2; }
}

@keyframes ctaGlow2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.08; }
    50% { transform: translate(50px, -30px) scale(1.3); opacity: 0.15; }
    100% { transform: translate(30px, -50px) scale(1.1); opacity: 0.08; }
}

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

.cta-content {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
}

.cta-content > p {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.8;
}

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

.cta-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-contact-label {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.cta-contact-info {
    display: flex;
    align-items: center;
    gap: 26px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 55px;
    padding: 20px 44px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.cta-contact-item:hover {
    color: #fff;
    text-decoration: none;
}

.cta-contact-item:link,
.cta-contact-item:visited,
.cta-contact-item:active {
    text-decoration: none;
}

.cta-contact-item svg {
    opacity: 0.7;
    flex-shrink: 0;
}

.cta-contact-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.95rem;
}

.cta-contact {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.cta-contact a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cta-contact a:hover {
    opacity: 0.9;
}

/* ----------------------------------------
   섹션 10: 푸터
   ---------------------------------------- */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--spacing-2xl) 0;
    margin-bottom: 0;
}

html {
    background-color: var(--gray-900);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-800);
}

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

.footer-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.footer-contact {
    margin: 0;
}

.footer-contact p {
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.footer-contact strong {
    color: var(--gray-300);
    margin-right: var(--spacing-sm);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

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

.footer-policies a {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.footer-policies a:hover {
    color: var(--white);
}

.copyright {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

/* ----------------------------------------
   반응형 디자인
   ---------------------------------------- */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .business-content {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .footer-main {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
        gap: var(--spacing-md);
    }

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

    .nav-menu a {
        color: var(--gray-700);
        padding: var(--spacing-sm) 0;
    }

    .hamburger {
        display: flex;
    }

    .mega-menu {
        display: none !important;
    }

    .nav-menu a::after {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-4xl: 1.875rem;
        --font-size-5xl: 2.25rem;
        --font-size-6xl: 2.75rem;
    }

    .hero-desc br {
        display: none;
    }

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

    .leader-message {
        flex-direction: column;
        text-align: center;
    }

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

    .tab-buttons {
        flex-direction: column;
    }

    .tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .tab-btn.active {
        border-left-color: var(--primary);
        border-bottom-color: transparent;
    }

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

    .gate-philosophy {
        grid-template-columns: 1fr;
    }

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

    .services-grid-4col {
        grid-template-columns: 1fr;
    }

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

    .service-card.large {
        grid-column: span 1;
    }

    .seed-banner {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }

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

    .news-sub-thumb {
        width: 72px;
        height: 54px;
    }

    .timeline-line {
        left: 16px;
    }

    .timeline-item {
        width: 100%;
        padding-left: var(--spacing-3xl);
        padding-right: 0;
        text-align: left;
    }

    .timeline-item.left {
        padding-right: 0;
    }

    .timeline-item.right {
        margin-left: 0;
    }

    .timeline-item .timeline-dot {
        left: 8px;
        right: auto;
    }

    .timeline-item .timeline-dot.highlight {
        left: 4px;
    }

    .cta-content h2 br {
        display: none;
    }

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

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

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 12px;
        border-radius: 16px;
        padding: 16px 24px;
    }

    .cta-contact-divider {
        display: none;
    }

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

/* ----------------------------------------
   애니메이션 (스크롤 기반)
   ---------------------------------------- */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

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

[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);
}

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

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

@keyframes pulse-nav {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 102, 204, 0);
    }
}

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

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

@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
}

.cta .btn-white.btn-large:hover {
    animation: none;
}

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

@keyframes pulse-hero {
    0%, 100% {
        box-shadow: 0 4px 14px 0 rgba(0, 102, 204, 0.35);
    }
    50% {
        box-shadow: 0 4px 14px 0 rgba(0, 102, 204, 0.35), 0 0 0 10px rgba(0, 102, 204, 0);
    }
}

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

/* 파이프라인 Phase 3 펄스 */
.funnel-bar.phase3 .funnel-pulse,
.funnel-pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    animation: pulse-phase3 2s ease-in-out infinite;
}

@keyframes pulse-phase3 {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px 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 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }
}

/* 서비스 링크 배너 아이템 호버 펄스 */
.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);
    }
}

/* 뉴스레터 구독 버튼 펄스 */
.social-link.newsletter {
    animation: pulse-newsletter 2.5s ease-in-out infinite;
}

@keyframes pulse-newsletter {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 102, 204, 0);
    }
}

.social-link.newsletter:hover {
    animation: none;
}

/* ----------------------------------------
   v3 preview adjustments
   ---------------------------------------- */
.hero-title .gradient-text {
    background: linear-gradient(135deg, #6bb8ff 0%, #3f86ff 38%, #f05f82 76%, #ff4f73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(230, 246, 255, 0.96), rgba(198, 231, 255, 0.92));
    color: #0066cc;
    border-color: rgba(221, 243, 255, 0.95);
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.16);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.92), rgba(0, 102, 204, 0.92));
    color: var(--white);
}

.bento-grid {
    grid-template-rows: repeat(6, 36px);
    gap: 18px;
}

/* 5개 버튼 카드 - 아이콘 좌측 / 텍스트 우측 compact 레이아웃 */
.bento-btn-card {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 14px;
    padding: 14px 18px !important;
}

.bento-btn-card .bento-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.bento-btn-card .bento-stat-content {
    margin-top: 0;
    flex: 1;
    min-width: 0;
}

.bento-btn-card .bento-btn-label {
    font-size: 0.98rem;
    line-height: 1.3;
}

.bento-btn-card .bento-btn-arrow {
    position: static;
    margin-left: auto;
    flex-shrink: 0;
}

.bento-hero-card {
    background:
        url('img/hero-molecules.svg') no-repeat right top / auto 100%,
        radial-gradient(ellipse 60% 55% at 96% 6%, rgba(255, 255, 255, 0.22), transparent 70%),
        radial-gradient(ellipse 55% 60% at 0% 100%, rgba(8, 52, 140, 0.38), transparent 65%),
        radial-gradient(ellipse 45% 40% at 78% 92%, rgba(140, 225, 255, 0.22), transparent 70%),
        linear-gradient(135deg, #0860c4 0%, #0a86df 50%, #0eb3ef 100%);
}

.bento-hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1.5px);
    background-size: 26px 26px;
    background-position: 0 0;
    opacity: 0.55;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(135deg, transparent 0%, black 35%, black 70%, transparent 100%);
            mask-image: linear-gradient(135deg, transparent 0%, black 35%, black 70%, transparent 100%);
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-content h2 {
    max-width: 560px;
    font-size: clamp(1.85rem, 3.3vw, 2.45rem);
    line-height: 1.18;
}

.bento-tag {
    margin-bottom: 30px;
}

.notice-status {
    background: rgba(74, 222, 128, 0.92);
    color: #07582f;
}

.notice-period {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
}

.bento-board-card {
    padding: 22px 24px 22px !important;
}

.bento-board-blue,
.bento-board-orange {
    background-position: center bottom;
    background-size: cover, 100% auto;
}

.bento-board-blue {
    background-image: linear-gradient(135deg, rgba(0, 92, 196, 0.80), rgba(88, 167, 255, 0.50)), url('img/board_bg_blue.png');
}

.bento-board-orange {
    background-image: linear-gradient(135deg, rgba(225, 92, 30, 0.80), rgba(255, 180, 99, 0.50)), url('img/board_bg_orange.png');
}

.bento-board-blue .bento-board-header h3,
.bento-board-orange .bento-board-header h3,
.bento-board-blue .board-title,
.bento-board-orange .board-title {
    color: var(--white);
}

.bento-board-blue .board-date,
.bento-board-orange .board-date,
.bento-board-blue .bento-board-more,
.bento-board-orange .bento-board-more {
    color: rgba(255, 255, 255, 0.75);
}

.bento-board-blue .bento-board-icon,
.bento-board-orange .bento-board-icon {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.bento-board-blue .bento-board-list li,
.bento-board-orange .bento-board-list li {
    border-bottom-color: rgba(255, 255, 255, 0.18);
}

.news {
    position: relative;
    background:
        radial-gradient(circle at 12% 18%, rgba(0, 102, 204, 0.14), transparent 40%),
        radial-gradient(circle at 88% 28%, rgba(0, 163, 224, 0.13), transparent 36%),
        radial-gradient(circle at 50% 92%, rgba(0, 102, 204, 0.06), transparent 55%),
        linear-gradient(180deg, #e9f1fa 0%, #f1f6fc 50%, #eaf2fb 100%);
}

.news::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(0, 102, 204, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    background-position: 0 0;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.news .container {
    position: relative;
    z-index: 1;
}

.youtube-thumb {
    position: relative;
    overflow: hidden;
}

.youtube-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.18));
}

.youtube-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    color: #ff0000;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.25));
}

.youtube-mini-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 3px 8px rgba(15, 23, 42, 0.25));
}

.mission {
    border-top: 1px solid rgba(0, 102, 204, 0.08);
}

.cta {
    padding: 7rem 0;
}

.footer {
    padding: 1.75rem 0 1.5rem;
}

.footer-main {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .bento-grid {
        grid-template-rows: none;
    }

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

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